diff --git a/grammar.js b/grammar.js index d244d83..31664f1 100644 --- a/grammar.js +++ b/grammar.js @@ -21,7 +21,7 @@ function kw(keyword) { module.exports = grammar({ name: "abl", - externals: ($) => [$._namedot, $._namecolon], + externals: ($) => [$._namedot, $._namecolon, $._or_operator, $._and_operator], extras: ($) => [$.comment, $.include, /[\s\f\uFEFF\u2060\u200B]|\\\r?\n/], word: ($) => $.identifier, supertypes: ($) => [$._expression, $._statement, $._terminated_statement], @@ -92,10 +92,7 @@ module.exports = grammar({ _logical_operator: ($) => prec.left( - choice( - choice(kw(" AND "), kw(" AND\n"), kw(" AND\r\n")), - choice(kw(" OR "), kw(" OR\n"), kw(" OR\r\n")) - ) + choice(alias($._and_operator, "AND"), alias($._or_operator, "OR")) ), logical_expression: ($) => prec.right( diff --git a/src/grammar.json b/src/grammar.json index 04ebe6a..aaeb76a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -377,110 +377,22 @@ "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[ ][aA][nN][dD][ ]" - } - } - }, - "named": false, - "value": " AND " - }, - { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[ ][aA][nN][dD][\\n\\n]" - } - } - }, - "named": false, - "value": " AND\n" - }, - { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[ ][aA][nN][dD][\\r\\r][\\n\\n]" - } - } - }, - "named": false, - "value": " AND\r\n" - } - ] + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_and_operator" + }, + "named": false, + "value": "AND" }, { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[ ][oO][rR][ ]" - } - } - }, - "named": false, - "value": " OR " - }, - { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[ ][oO][rR][\\n\\n]" - } - } - }, - "named": false, - "value": " OR\n" - }, - { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[ ][oO][rR][\\r\\r][\\n\\n]" - } - } - }, - "named": false, - "value": " OR\r\n" - } - ] + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_or_operator" + }, + "named": false, + "value": "OR" } ] } @@ -11607,6 +11519,14 @@ { "type": "SYMBOL", "name": "_namecolon" + }, + { + "type": "SYMBOL", + "name": "_or_operator" + }, + { + "type": "SYMBOL", + "name": "_and_operator" } ], "inline": [], diff --git a/src/node-types.json b/src/node-types.json index 231e91f..f97ef8a 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -3119,30 +3119,6 @@ "type": " ", "named": false }, - { - "type": " AND\n", - "named": false - }, - { - "type": " AND\r\n", - "named": false - }, - { - "type": " AND ", - "named": false - }, - { - "type": " OR\n", - "named": false - }, - { - "type": " OR\r\n", - "named": false - }, - { - "type": " OR ", - "named": false - }, { "type": "\"", "named": false @@ -3731,6 +3707,10 @@ "type": "ON", "named": false }, + { + "type": "OR", + "named": false + }, { "type": "OTHERWISE", "named": false diff --git a/src/parser.c b/src/parser.c index 2a956f8..dd8b041 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,12 +14,12 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 4653 +#define STATE_COUNT 4650 #define LARGE_STATE_COUNT 290 -#define SYMBOL_COUNT 428 +#define SYMBOL_COUNT 424 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 242 -#define EXTERNAL_TOKEN_COUNT 2 +#define TOKEN_COUNT 238 +#define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 24 #define MAX_ALIAS_SEQUENCE_LENGTH 16 #define PRODUCTION_ID_COUNT 58 @@ -52,406 +52,402 @@ enum { aux_sym_single_quoted_string_token1 = 25, anon_sym_LPAREN = 26, anon_sym_RPAREN = 27, - aux_sym__logical_operator_token1 = 28, - aux_sym__logical_operator_token2 = 29, - aux_sym__logical_operator_token3 = 30, - aux_sym__logical_operator_token4 = 31, - aux_sym__logical_operator_token5 = 32, - aux_sym__logical_operator_token6 = 33, - aux_sym_unary_expression_token1 = 34, - aux_sym_unary_expression_token2 = 35, - aux_sym_ambiguous_expression_token1 = 36, - aux_sym_current_changed_expression_token1 = 37, - aux_sym_locked_expression_token1 = 38, - aux_sym_input_expression_token1 = 39, - aux_sym_input_expression_token2 = 40, - anon_sym_PLUS = 41, - anon_sym_DASH = 42, - anon_sym_LT = 43, - anon_sym_LT_EQ = 44, - anon_sym_LT_GT = 45, - anon_sym_EQ = 46, - anon_sym_GT = 47, - anon_sym_GT_EQ = 48, - aux_sym__comparison_operator_token1 = 49, - aux_sym__comparison_operator_token2 = 50, - aux_sym__comparison_operator_token3 = 51, - aux_sym__comparison_operator_token4 = 52, - aux_sym__comparison_operator_token5 = 53, - aux_sym__comparison_operator_token6 = 54, - aux_sym__comparison_operator_token7 = 55, - aux_sym__comparison_operator_token8 = 56, - aux_sym__comparison_operator_token9 = 57, - aux_sym_include_argument_token1 = 58, - aux_sym_primitive_type_token1 = 59, - aux_sym_primitive_type_token2 = 60, - aux_sym_primitive_type_token3 = 61, - aux_sym_primitive_type_token4 = 62, - aux_sym_primitive_type_token5 = 63, - aux_sym_primitive_type_token6 = 64, - aux_sym_primitive_type_token7 = 65, - aux_sym_primitive_type_token8 = 66, - aux_sym_primitive_type_token9 = 67, - aux_sym_primitive_type_token10 = 68, - aux_sym_primitive_type_token11 = 69, - aux_sym_primitive_type_token12 = 70, - aux_sym_primitive_type_token13 = 71, - aux_sym_primitive_type_token14 = 72, - aux_sym_primitive_type_token15 = 73, - aux_sym_primitive_type_token16 = 74, - aux_sym_primitive_type_token17 = 75, - aux_sym_primitive_type_token18 = 76, - aux_sym_primitive_type_token19 = 77, - aux_sym_variable_tuning_token1 = 78, - aux_sym_variable_tuning_token2 = 79, - aux_sym_variable_tuning_token3 = 80, - aux_sym_variable_tuning_token4 = 81, - aux_sym_variable_tuning_token5 = 82, - aux_sym_variable_tuning_token6 = 83, - aux_sym_scope_tuning_token1 = 84, - aux_sym_scope_tuning_token2 = 85, - aux_sym_scope_tuning_token3 = 86, - aux_sym_scope_tuning_token4 = 87, - aux_sym_access_tuning_token1 = 88, - aux_sym_access_tuning_token2 = 89, - aux_sym_access_tuning_token3 = 90, - aux_sym_serialization_tuning_token1 = 91, - aux_sym_serialization_tuning_token2 = 92, - aux_sym_variable_definition_token1 = 93, - aux_sym_variable_definition_token2 = 94, - aux_sym_variable_definition_token3 = 95, - aux_sym_variable_definition_token4 = 96, - aux_sym_variable_definition_token5 = 97, - aux_sym_variable_definition_token6 = 98, - aux_sym_buffer_definition_token1 = 99, - aux_sym_buffer_definition_token2 = 100, - aux_sym_buffer_definition_token3 = 101, - aux_sym_query_definition_tuning_token1 = 102, - anon_sym_SCROLLING = 103, - aux_sym_query_definition_tuning_token2 = 104, - aux_sym_query_definition_token1 = 105, - aux_sym_query_definition_token2 = 106, - aux_sym_query_definition_token3 = 107, - anon_sym_COMMA = 108, - aux_sym_argument_mode_token1 = 109, - aux_sym_argument_mode_token2 = 110, - aux_sym_if_statement_token1 = 111, - aux_sym_if_statement_token2 = 112, - aux_sym_else_if_statement_token1 = 113, - anon_sym_COLON = 114, - aux_sym_while_phrase_token1 = 115, - aux_sym_repeat_statement_token1 = 116, - aux_sym__procedure_terminator_token1 = 117, - aux_sym_procedure_parameter_definition_token1 = 118, - aux_sym_procedure_parameter_definition_token2 = 119, - aux_sym__function_terminator_token1 = 120, - aux_sym_function_parameter_token1 = 121, - aux_sym_function_parameter_token2 = 122, - aux_sym_function_statement_token1 = 123, - aux_sym_interface_statement_token1 = 124, - aux_sym_property_type_token1 = 125, - aux_sym_property_type_token2 = 126, - aux_sym_property_tuning_token1 = 127, - aux_sym_getter_token1 = 128, - aux_sym_setter_token1 = 129, - aux_sym_property_definition_token1 = 130, - aux_sym_event_definition_token1 = 131, - aux_sym_event_definition_token2 = 132, - aux_sym_method_definition_token1 = 133, - anon_sym_METHOD = 134, - aux_sym_data_relation_token1 = 135, - aux_sym_data_relation_token2 = 136, - aux_sym_using_statement_token1 = 137, - aux_sym_using_statement_token2 = 138, - aux_sym_using_statement_token3 = 139, - aux_sym_using_statement_token4 = 140, - aux_sym_constructor_definition_token1 = 141, - aux_sym_inherits_token1 = 142, - aux_sym_implements_token1 = 143, - aux_sym_use_widget_pool_token1 = 144, - aux_sym_final_token1 = 145, - anon_sym_NO_DASHERROR = 146, - aux_sym_stream_definition_token1 = 147, - aux_sym_input_close_statement_token1 = 148, - aux_sym_input_close_statement_token2 = 149, - aux_sym_input_stream_tuning_token1 = 150, - aux_sym_input_stream_tuning_token2 = 151, - aux_sym_input_stream_tuning_token3 = 152, - aux_sym_input_stream_tuning_token4 = 153, - aux_sym_input_stream_tuning_token5 = 154, - aux_sym_input_stream_tuning_token6 = 155, - aux_sym_input_stream_tuning_token7 = 156, - aux_sym_input_stream_tuning_token8 = 157, - aux_sym_input_stream_tuning_token9 = 158, - aux_sym_input_stream_tuning_token10 = 159, - aux_sym_input_stream_tuning_token11 = 160, - aux_sym_output_stream_tuning_token1 = 161, - aux_sym_output_stream_tuning_token2 = 162, - aux_sym_output_stream_tuning_token3 = 163, - aux_sym_output_stream_tuning_token4 = 164, - aux_sym_output_stream_tuning_token5 = 165, - aux_sym_output_stream_tuning_token6 = 166, - aux_sym_output_stream_tuning_token7 = 167, - aux_sym_output_stream_tuning_token8 = 168, - aux_sym_output_stream_statement_token1 = 169, - aux_sym_on_error_phrase_token1 = 170, - aux_sym_on_error_phrase_token2 = 171, - aux_sym_on_error_phrase_token3 = 172, - aux_sym_on_error_phrase_token4 = 173, - aux_sym_on_error_phrase_token5 = 174, - aux_sym_on_error_phrase_token6 = 175, - aux_sym_on_error_phrase_token7 = 176, - aux_sym_on_error_phrase_token8 = 177, - aux_sym_on_stop_phrase_token1 = 178, - aux_sym_on_quit_phrase_token1 = 179, - aux_sym_stop_after_phrase_token1 = 180, - aux_sym_do_tuning_token1 = 181, - anon_sym_BY = 182, - aux_sym_do_block_token1 = 183, - aux_sym__case_terminator_token1 = 184, - aux_sym_case_when_branch_token1 = 185, - aux_sym_case_otherwise_branch_token1 = 186, - aux_sym_where_clause_token1 = 187, - aux_sym_query_tuning_token1 = 188, - aux_sym_query_tuning_token2 = 189, - aux_sym_query_tuning_token3 = 190, - aux_sym_query_tuning_token4 = 191, - aux_sym_query_tuning_token5 = 192, - aux_sym_query_tuning_token6 = 193, - aux_sym_sort_order_token1 = 194, - aux_sym_sort_order_token2 = 195, - aux_sym_sort_order_token3 = 196, - aux_sym_sort_order_token4 = 197, - aux_sym_sort_clause_token1 = 198, - aux_sym_sort_clause_token2 = 199, - aux_sym_for_phrase_token1 = 200, - aux_sym_for_phrase_token2 = 201, - aux_sym_for_phrase_token3 = 202, - aux_sym__find_type_token1 = 203, - aux_sym__find_type_token2 = 204, - aux_sym_find_statement_token1 = 205, - aux_sym_can_find_expression_token1 = 206, - aux_sym_of_token1 = 207, - aux_sym__using_and_token1 = 208, - aux_sym_assign_statement_token1 = 209, - aux_sym_catch_statement_token1 = 210, - aux_sym_finally_statement_token1 = 211, - aux_sym_accumulate_aggregate_token1 = 212, - aux_sym_accumulate_aggregate_token2 = 213, - aux_sym_accumulate_aggregate_token3 = 214, - aux_sym_accumulate_aggregate_token4 = 215, - aux_sym_accumulate_aggregate_token5 = 216, - aux_sym_accumulate_aggregate_token6 = 217, - aux_sym_accumulate_aggregate_token7 = 218, - aux_sym_accumulate_aggregate_token8 = 219, - aux_sym_accumulate_aggregate_token9 = 220, - aux_sym_accumulate_aggregate_token10 = 221, - aux_sym_accumulate_statement_token1 = 222, - anon_sym_ = 223, - aux_sym_accumulate_expression_token1 = 224, - aux_sym_available_expression_token1 = 225, - aux_sym_available_expression_token2 = 226, - anon_sym_ROUTINE_DASHLEVEL = 227, - anon_sym_BLOCK_DASHLEVEL = 228, - aux_sym_temp_table_tuning_token1 = 229, - anon_sym_LIKE = 230, - aux_sym_field_definition_token1 = 231, - aux_sym_index_tuning_token1 = 232, - aux_sym_index_tuning_token2 = 233, - aux_sym_index_tuning_token3 = 234, - aux_sym_index_tuning_token4 = 235, - aux_sym_index_definition_token1 = 236, - aux_sym_widget_field_token1 = 237, - aux_sym_on_statement_token1 = 238, - aux_sym_data_source_definition_token1 = 239, - sym__namedot = 240, - sym__namecolon = 241, - sym_source_code = 242, - sym_body = 243, - sym_comment = 244, - sym_constant = 245, - sym_qualified_name = 246, - sym__block_terminator = 247, - sym_boolean_literal = 248, - sym__decimal_literal = 249, - sym_number_literal = 250, - sym__string_literal = 251, - sym_double_quoted_string = 252, - sym_single_quoted_string = 253, - sym_parenthesized_expression = 254, - sym__logical_operator = 255, - sym_logical_expression = 256, - sym__unary_minus_expressions = 257, - sym_unary_expression = 258, - sym_ambiguous_expression = 259, - sym_current_changed_expression = 260, - sym_locked_expression = 261, - sym_input_expression = 262, - sym__additive_operator = 263, - sym_additive_expression = 264, - sym__multiplicative_operator = 265, - sym_multiplicative_expression = 266, - sym__comparison_operator = 267, - sym_comparison_expression = 268, - sym__binary_expression = 269, - sym_include_argument = 270, - sym_include = 271, - sym_primitive_type = 272, - sym_assignment = 273, - sym_variable_tuning = 274, - sym_scope_tuning = 275, - sym_access_tuning = 276, - sym_serialization_tuning = 277, - sym_variable_definition = 278, - sym_variable_assignment = 279, - sym_buffer_definition = 280, - sym_query_definition_tuning = 281, - sym_query_fields = 282, - sym_query_definition = 283, - sym_function_call_statement = 284, - sym__function_call_arguments = 285, - sym_argument_mode = 286, - sym__function_argument_with_mode = 287, - sym_function_call_argument = 288, - sym_function_call = 289, - sym_if_statement = 290, - sym_else_if_statement = 291, - sym_else_statement = 292, - sym_ternary_expression = 293, - sym_label = 294, - sym_while_phrase = 295, - sym_repeat_statement = 296, - sym__procedure_terminator = 297, - sym_procedure_statement = 298, - sym_procedure_parameter_definition = 299, - sym__function_terminator = 300, - sym_function_parameter_mode = 301, - sym_function_parameter = 302, - sym_function_statement = 303, - sym_return_statement = 304, - sym_interface_body = 305, - sym_interface_statement = 306, - sym_property_type = 307, - sym_property_tuning = 308, - sym_getter = 309, - sym_setter = 310, - sym_property_definition = 311, - sym_event_definition = 312, - sym_method_definition = 313, - sym_data_relation = 314, - sym_dataset_definition = 315, - sym_using_statement = 316, - sym_class_body = 317, - sym_constructor_definition = 318, - sym_class_statement = 319, - sym_inherits = 320, - sym_implements = 321, - sym_use_widget_pool = 322, - sym_abstract = 323, - sym_final = 324, - sym_serializable = 325, - sym_new_expression = 326, - sym_object_access = 327, - sym_stream_definition = 328, - sym_input_close_statement = 329, - sym_output_close_statement = 330, - sym__stream_statement = 331, - sym_input_stream_tuning = 332, - sym_input_stream_statement = 333, - sym_output_stream_tuning = 334, - sym_output_stream_statement = 335, - sym_on_error_phrase = 336, - sym_on_stop_phrase = 337, - sym_on_quit_phrase = 338, - sym_stop_after_phrase = 339, - sym_do_tuning = 340, - sym_to_phrase = 341, - sym_do_block = 342, - sym__case_terminator = 343, - sym__case_branch_body = 344, - sym_case_when_branch = 345, - sym_case_otherwise_branch = 346, - sym_case_body = 347, - sym_case_statement = 348, - sym_where_clause = 349, - sym__pre_tuning = 350, - sym_query_tuning = 351, - sym_sort_order = 352, - sym_sort_column = 353, - sym_sort_clause = 354, - sym_for_phrase = 355, - sym_for_statement = 356, - sym__find_type = 357, - sym_find_statement = 358, - sym_can_find_expression = 359, - sym_of = 360, - sym__using_first = 361, - sym__using_and = 362, - sym_abl_statement = 363, - sym_assign_statement = 364, - sym_catch_statement = 365, - sym_finally_statement = 366, - sym_accumulate_aggregate = 367, - sym_accumulate_statement = 368, - sym_accumulate_expression = 369, - sym_available_expression = 370, - sym_undo_statement = 371, - sym_error_scope_statement = 372, - sym_temp_table_tuning = 373, - sym_field_option = 374, - sym_field_definition = 375, - sym_index_tuning = 376, - sym_index_definition = 377, - sym_temp_table_definition = 378, - sym_widget_field = 379, - sym_widget_phrase = 380, - sym_on_statement = 381, - sym_data_source_definition = 382, - sym__expression = 383, - sym__statement = 384, - sym__terminated_statement = 385, - aux_sym_source_code_repeat1 = 386, - aux_sym_qualified_name_repeat1 = 387, - aux_sym_double_quoted_string_repeat1 = 388, - aux_sym_single_quoted_string_repeat1 = 389, - aux_sym_include_repeat1 = 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_function_statement_repeat1 = 398, - aux_sym_interface_body_repeat1 = 399, - aux_sym_property_definition_repeat1 = 400, - aux_sym_property_definition_repeat2 = 401, - aux_sym_property_definition_repeat3 = 402, - aux_sym_data_relation_repeat1 = 403, - aux_sym_class_body_repeat1 = 404, - aux_sym_class_statement_repeat1 = 405, - aux_sym_inherits_repeat1 = 406, - aux_sym_object_access_repeat1 = 407, - aux_sym_input_stream_statement_repeat1 = 408, - aux_sym_output_stream_statement_repeat1 = 409, - aux_sym_do_block_repeat1 = 410, - aux_sym_case_body_repeat1 = 411, - aux_sym_sort_clause_repeat1 = 412, - aux_sym_for_phrase_repeat1 = 413, - aux_sym_for_phrase_repeat2 = 414, - aux_sym_for_statement_repeat1 = 415, - aux_sym_can_find_expression_repeat1 = 416, - aux_sym_can_find_expression_repeat2 = 417, - aux_sym_abl_statement_repeat1 = 418, - aux_sym_assign_statement_repeat1 = 419, - aux_sym_accumulate_statement_repeat1 = 420, - aux_sym_field_definition_repeat1 = 421, - aux_sym_index_definition_repeat1 = 422, - aux_sym_temp_table_definition_repeat1 = 423, - aux_sym_temp_table_definition_repeat2 = 424, - aux_sym_widget_phrase_repeat1 = 425, - aux_sym_on_statement_repeat1 = 426, - aux_sym_on_statement_repeat2 = 427, + aux_sym_unary_expression_token1 = 28, + aux_sym_unary_expression_token2 = 29, + aux_sym_ambiguous_expression_token1 = 30, + aux_sym_current_changed_expression_token1 = 31, + aux_sym_locked_expression_token1 = 32, + aux_sym_input_expression_token1 = 33, + aux_sym_input_expression_token2 = 34, + anon_sym_PLUS = 35, + anon_sym_DASH = 36, + anon_sym_LT = 37, + anon_sym_LT_EQ = 38, + anon_sym_LT_GT = 39, + anon_sym_EQ = 40, + anon_sym_GT = 41, + anon_sym_GT_EQ = 42, + aux_sym__comparison_operator_token1 = 43, + aux_sym__comparison_operator_token2 = 44, + aux_sym__comparison_operator_token3 = 45, + aux_sym__comparison_operator_token4 = 46, + aux_sym__comparison_operator_token5 = 47, + aux_sym__comparison_operator_token6 = 48, + aux_sym__comparison_operator_token7 = 49, + aux_sym__comparison_operator_token8 = 50, + aux_sym__comparison_operator_token9 = 51, + aux_sym_include_argument_token1 = 52, + aux_sym_primitive_type_token1 = 53, + aux_sym_primitive_type_token2 = 54, + aux_sym_primitive_type_token3 = 55, + aux_sym_primitive_type_token4 = 56, + aux_sym_primitive_type_token5 = 57, + aux_sym_primitive_type_token6 = 58, + aux_sym_primitive_type_token7 = 59, + aux_sym_primitive_type_token8 = 60, + aux_sym_primitive_type_token9 = 61, + aux_sym_primitive_type_token10 = 62, + aux_sym_primitive_type_token11 = 63, + aux_sym_primitive_type_token12 = 64, + aux_sym_primitive_type_token13 = 65, + aux_sym_primitive_type_token14 = 66, + aux_sym_primitive_type_token15 = 67, + aux_sym_primitive_type_token16 = 68, + aux_sym_primitive_type_token17 = 69, + aux_sym_primitive_type_token18 = 70, + aux_sym_primitive_type_token19 = 71, + aux_sym_variable_tuning_token1 = 72, + aux_sym_variable_tuning_token2 = 73, + aux_sym_variable_tuning_token3 = 74, + aux_sym_variable_tuning_token4 = 75, + aux_sym_variable_tuning_token5 = 76, + aux_sym_variable_tuning_token6 = 77, + aux_sym_scope_tuning_token1 = 78, + aux_sym_scope_tuning_token2 = 79, + aux_sym_scope_tuning_token3 = 80, + aux_sym_scope_tuning_token4 = 81, + aux_sym_access_tuning_token1 = 82, + aux_sym_access_tuning_token2 = 83, + aux_sym_access_tuning_token3 = 84, + aux_sym_serialization_tuning_token1 = 85, + aux_sym_serialization_tuning_token2 = 86, + aux_sym_variable_definition_token1 = 87, + aux_sym_variable_definition_token2 = 88, + aux_sym_variable_definition_token3 = 89, + aux_sym_variable_definition_token4 = 90, + aux_sym_variable_definition_token5 = 91, + aux_sym_variable_definition_token6 = 92, + aux_sym_buffer_definition_token1 = 93, + aux_sym_buffer_definition_token2 = 94, + aux_sym_buffer_definition_token3 = 95, + aux_sym_query_definition_tuning_token1 = 96, + anon_sym_SCROLLING = 97, + aux_sym_query_definition_tuning_token2 = 98, + aux_sym_query_definition_token1 = 99, + aux_sym_query_definition_token2 = 100, + aux_sym_query_definition_token3 = 101, + anon_sym_COMMA = 102, + aux_sym_argument_mode_token1 = 103, + aux_sym_argument_mode_token2 = 104, + aux_sym_if_statement_token1 = 105, + aux_sym_if_statement_token2 = 106, + aux_sym_else_if_statement_token1 = 107, + anon_sym_COLON = 108, + aux_sym_while_phrase_token1 = 109, + aux_sym_repeat_statement_token1 = 110, + aux_sym__procedure_terminator_token1 = 111, + aux_sym_procedure_parameter_definition_token1 = 112, + aux_sym_procedure_parameter_definition_token2 = 113, + aux_sym__function_terminator_token1 = 114, + aux_sym_function_parameter_token1 = 115, + aux_sym_function_parameter_token2 = 116, + aux_sym_function_statement_token1 = 117, + aux_sym_interface_statement_token1 = 118, + aux_sym_property_type_token1 = 119, + aux_sym_property_type_token2 = 120, + aux_sym_property_tuning_token1 = 121, + aux_sym_getter_token1 = 122, + aux_sym_setter_token1 = 123, + aux_sym_property_definition_token1 = 124, + aux_sym_event_definition_token1 = 125, + aux_sym_event_definition_token2 = 126, + aux_sym_method_definition_token1 = 127, + anon_sym_METHOD = 128, + aux_sym_data_relation_token1 = 129, + aux_sym_data_relation_token2 = 130, + aux_sym_using_statement_token1 = 131, + aux_sym_using_statement_token2 = 132, + aux_sym_using_statement_token3 = 133, + aux_sym_using_statement_token4 = 134, + aux_sym_constructor_definition_token1 = 135, + aux_sym_inherits_token1 = 136, + aux_sym_implements_token1 = 137, + aux_sym_use_widget_pool_token1 = 138, + aux_sym_final_token1 = 139, + anon_sym_NO_DASHERROR = 140, + aux_sym_stream_definition_token1 = 141, + aux_sym_input_close_statement_token1 = 142, + aux_sym_input_close_statement_token2 = 143, + aux_sym_input_stream_tuning_token1 = 144, + aux_sym_input_stream_tuning_token2 = 145, + aux_sym_input_stream_tuning_token3 = 146, + aux_sym_input_stream_tuning_token4 = 147, + aux_sym_input_stream_tuning_token5 = 148, + aux_sym_input_stream_tuning_token6 = 149, + aux_sym_input_stream_tuning_token7 = 150, + aux_sym_input_stream_tuning_token8 = 151, + aux_sym_input_stream_tuning_token9 = 152, + aux_sym_input_stream_tuning_token10 = 153, + aux_sym_input_stream_tuning_token11 = 154, + aux_sym_output_stream_tuning_token1 = 155, + aux_sym_output_stream_tuning_token2 = 156, + aux_sym_output_stream_tuning_token3 = 157, + aux_sym_output_stream_tuning_token4 = 158, + aux_sym_output_stream_tuning_token5 = 159, + aux_sym_output_stream_tuning_token6 = 160, + aux_sym_output_stream_tuning_token7 = 161, + aux_sym_output_stream_tuning_token8 = 162, + aux_sym_output_stream_statement_token1 = 163, + aux_sym_on_error_phrase_token1 = 164, + aux_sym_on_error_phrase_token2 = 165, + aux_sym_on_error_phrase_token3 = 166, + aux_sym_on_error_phrase_token4 = 167, + aux_sym_on_error_phrase_token5 = 168, + aux_sym_on_error_phrase_token6 = 169, + aux_sym_on_error_phrase_token7 = 170, + aux_sym_on_error_phrase_token8 = 171, + aux_sym_on_stop_phrase_token1 = 172, + aux_sym_on_quit_phrase_token1 = 173, + aux_sym_stop_after_phrase_token1 = 174, + aux_sym_do_tuning_token1 = 175, + anon_sym_BY = 176, + aux_sym_do_block_token1 = 177, + aux_sym__case_terminator_token1 = 178, + aux_sym_case_when_branch_token1 = 179, + aux_sym_case_otherwise_branch_token1 = 180, + aux_sym_where_clause_token1 = 181, + aux_sym_query_tuning_token1 = 182, + aux_sym_query_tuning_token2 = 183, + aux_sym_query_tuning_token3 = 184, + aux_sym_query_tuning_token4 = 185, + aux_sym_query_tuning_token5 = 186, + aux_sym_query_tuning_token6 = 187, + aux_sym_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_definition = 309, + sym_data_relation = 310, + sym_dataset_definition = 311, + sym_using_statement = 312, + sym_class_body = 313, + sym_constructor_definition = 314, + sym_class_statement = 315, + sym_inherits = 316, + sym_implements = 317, + sym_use_widget_pool = 318, + sym_abstract = 319, + sym_final = 320, + sym_serializable = 321, + sym_new_expression = 322, + sym_object_access = 323, + sym_stream_definition = 324, + sym_input_close_statement = 325, + sym_output_close_statement = 326, + sym__stream_statement = 327, + sym_input_stream_tuning = 328, + sym_input_stream_statement = 329, + sym_output_stream_tuning = 330, + sym_output_stream_statement = 331, + sym_on_error_phrase = 332, + sym_on_stop_phrase = 333, + sym_on_quit_phrase = 334, + sym_stop_after_phrase = 335, + sym_do_tuning = 336, + sym_to_phrase = 337, + sym_do_block = 338, + sym__case_terminator = 339, + sym__case_branch_body = 340, + sym_case_when_branch = 341, + sym_case_otherwise_branch = 342, + sym_case_body = 343, + sym_case_statement = 344, + sym_where_clause = 345, + sym__pre_tuning = 346, + sym_query_tuning = 347, + sym_sort_order = 348, + sym_sort_column = 349, + sym_sort_clause = 350, + sym_for_phrase = 351, + sym_for_statement = 352, + sym__find_type = 353, + sym_find_statement = 354, + sym_can_find_expression = 355, + sym_of = 356, + sym__using_first = 357, + sym__using_and = 358, + sym_abl_statement = 359, + sym_assign_statement = 360, + sym_catch_statement = 361, + sym_finally_statement = 362, + sym_accumulate_aggregate = 363, + sym_accumulate_statement = 364, + sym_accumulate_expression = 365, + sym_available_expression = 366, + sym_undo_statement = 367, + sym_error_scope_statement = 368, + sym_temp_table_tuning = 369, + sym_field_option = 370, + sym_field_definition = 371, + sym_index_tuning = 372, + sym_index_definition = 373, + sym_temp_table_definition = 374, + sym_widget_field = 375, + sym_widget_phrase = 376, + sym_on_statement = 377, + sym_data_source_definition = 378, + sym__expression = 379, + sym__statement = 380, + sym__terminated_statement = 381, + aux_sym_source_code_repeat1 = 382, + aux_sym_qualified_name_repeat1 = 383, + aux_sym_double_quoted_string_repeat1 = 384, + aux_sym_single_quoted_string_repeat1 = 385, + aux_sym_include_repeat1 = 386, + aux_sym_variable_definition_repeat1 = 387, + aux_sym_variable_definition_repeat2 = 388, + aux_sym_buffer_definition_repeat1 = 389, + aux_sym_query_fields_repeat1 = 390, + aux_sym_query_definition_repeat1 = 391, + aux_sym__function_call_arguments_repeat1 = 392, + aux_sym_if_statement_repeat1 = 393, + aux_sym_function_statement_repeat1 = 394, + aux_sym_interface_body_repeat1 = 395, + aux_sym_property_definition_repeat1 = 396, + aux_sym_property_definition_repeat2 = 397, + aux_sym_property_definition_repeat3 = 398, + aux_sym_data_relation_repeat1 = 399, + aux_sym_class_body_repeat1 = 400, + aux_sym_class_statement_repeat1 = 401, + aux_sym_inherits_repeat1 = 402, + aux_sym_object_access_repeat1 = 403, + aux_sym_input_stream_statement_repeat1 = 404, + aux_sym_output_stream_statement_repeat1 = 405, + aux_sym_do_block_repeat1 = 406, + aux_sym_case_body_repeat1 = 407, + aux_sym_sort_clause_repeat1 = 408, + aux_sym_for_phrase_repeat1 = 409, + aux_sym_for_phrase_repeat2 = 410, + aux_sym_for_statement_repeat1 = 411, + aux_sym_can_find_expression_repeat1 = 412, + aux_sym_can_find_expression_repeat2 = 413, + aux_sym_abl_statement_repeat1 = 414, + aux_sym_assign_statement_repeat1 = 415, + aux_sym_accumulate_statement_repeat1 = 416, + aux_sym_field_definition_repeat1 = 417, + aux_sym_index_definition_repeat1 = 418, + aux_sym_temp_table_definition_repeat1 = 419, + aux_sym_temp_table_definition_repeat2 = 420, + aux_sym_widget_phrase_repeat1 = 421, + aux_sym_on_statement_repeat1 = 422, + aux_sym_on_statement_repeat2 = 423, }; static const char * const ts_symbol_names[] = { @@ -483,12 +479,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_single_quoted_string_token1] = "single_quoted_string_token1", [anon_sym_LPAREN] = "(", [anon_sym_RPAREN] = ")", - [aux_sym__logical_operator_token1] = " AND ", - [aux_sym__logical_operator_token2] = " AND\n", - [aux_sym__logical_operator_token3] = " AND\r\n", - [aux_sym__logical_operator_token4] = " OR ", - [aux_sym__logical_operator_token5] = " OR\n", - [aux_sym__logical_operator_token6] = " OR\r\n", [aux_sym_unary_expression_token1] = "-", [aux_sym_unary_expression_token2] = "NOT", [aux_sym_ambiguous_expression_token1] = "AMBIGUOUS", @@ -697,6 +687,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_data_source_definition_token1] = "DATA-SOURCE", [sym__namedot] = ".", [sym__namecolon] = ":", + [sym__or_operator] = "OR", + [sym__and_operator] = "AND", [sym_source_code] = "source_code", [sym_body] = "body", [sym_comment] = "comment", @@ -914,12 +906,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_single_quoted_string_token1] = aux_sym_single_quoted_string_token1, [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_RPAREN] = anon_sym_RPAREN, - [aux_sym__logical_operator_token1] = aux_sym__logical_operator_token1, - [aux_sym__logical_operator_token2] = aux_sym__logical_operator_token2, - [aux_sym__logical_operator_token3] = aux_sym__logical_operator_token3, - [aux_sym__logical_operator_token4] = aux_sym__logical_operator_token4, - [aux_sym__logical_operator_token5] = aux_sym__logical_operator_token5, - [aux_sym__logical_operator_token6] = aux_sym__logical_operator_token6, [aux_sym_unary_expression_token1] = anon_sym_DASH, [aux_sym_unary_expression_token2] = aux_sym_unary_expression_token2, [aux_sym_ambiguous_expression_token1] = aux_sym_ambiguous_expression_token1, @@ -1094,7 +1080,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_find_statement_token1] = aux_sym_find_statement_token1, [aux_sym_can_find_expression_token1] = aux_sym_can_find_expression_token1, [aux_sym_of_token1] = aux_sym_of_token1, - [aux_sym__using_and_token1] = aux_sym__using_and_token1, + [aux_sym__using_and_token1] = sym__and_operator, [aux_sym_assign_statement_token1] = aux_sym_assign_statement_token1, [aux_sym_catch_statement_token1] = aux_sym_catch_statement_token1, [aux_sym_finally_statement_token1] = aux_sym_finally_statement_token1, @@ -1128,6 +1114,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_data_source_definition_token1] = aux_sym_data_source_definition_token1, [sym__namedot] = anon_sym_DOT, [sym__namecolon] = anon_sym_COLON, + [sym__or_operator] = sym__or_operator, + [sym__and_operator] = sym__and_operator, [sym_source_code] = sym_source_code, [sym_body] = sym_body, [sym_comment] = sym_comment, @@ -1429,30 +1417,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym__logical_operator_token1] = { - .visible = true, - .named = false, - }, - [aux_sym__logical_operator_token2] = { - .visible = true, - .named = false, - }, - [aux_sym__logical_operator_token3] = { - .visible = true, - .named = false, - }, - [aux_sym__logical_operator_token4] = { - .visible = true, - .named = false, - }, - [aux_sym__logical_operator_token5] = { - .visible = true, - .named = false, - }, - [aux_sym__logical_operator_token6] = { - .visible = true, - .named = false, - }, [aux_sym_unary_expression_token1] = { .visible = true, .named = false, @@ -2285,6 +2249,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [sym__or_operator] = { + .visible = true, + .named = false, + }, + [sym__and_operator] = { + .visible = true, + .named = false, + }, [sym_source_code] = { .visible = true, .named = true, @@ -3355,21 +3327,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [49] = 49, [50] = 50, [51] = 51, - [52] = 52, + [52] = 51, [53] = 53, [54] = 54, [55] = 55, [56] = 56, [57] = 57, [58] = 58, - [59] = 59, - [60] = 59, - [61] = 58, - [62] = 57, - [63] = 63, - [64] = 64, - [65] = 64, - [66] = 63, + [59] = 56, + [60] = 60, + [61] = 53, + [62] = 62, + [63] = 50, + [64] = 60, + [65] = 65, + [66] = 66, [67] = 67, [68] = 68, [69] = 69, @@ -3381,2966 +3353,2966 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [75] = 75, [76] = 76, [77] = 77, - [78] = 77, + [78] = 78, [79] = 79, - [80] = 68, + [80] = 80, [81] = 81, - [82] = 79, - [83] = 83, - [84] = 79, + [82] = 82, + [83] = 65, + [84] = 84, [85] = 85, [86] = 86, - [87] = 79, + [87] = 87, [88] = 88, [89] = 89, - [90] = 90, + [90] = 88, [91] = 91, [92] = 92, [93] = 93, - [94] = 94, - [95] = 95, - [96] = 96, - [97] = 97, - [98] = 85, - [99] = 99, - [100] = 67, - [101] = 68, - [102] = 102, - [103] = 103, - [104] = 96, - [105] = 105, - [106] = 99, - [107] = 68, - [108] = 69, - [109] = 109, - [110] = 97, - [111] = 73, - [112] = 99, + [94] = 85, + [95] = 93, + [96] = 70, + [97] = 67, + [98] = 86, + [99] = 68, + [100] = 69, + [101] = 71, + [102] = 72, + [103] = 73, + [104] = 74, + [105] = 75, + [106] = 76, + [107] = 79, + [108] = 80, + [109] = 84, + [110] = 65, + [111] = 78, + [112] = 77, [113] = 92, - [114] = 114, - [115] = 115, + [114] = 81, + [115] = 82, [116] = 116, - [117] = 91, - [118] = 88, + [117] = 117, + [118] = 87, [119] = 119, - [120] = 89, - [121] = 86, - [122] = 83, - [123] = 85, - [124] = 76, - [125] = 88, - [126] = 72, - [127] = 70, - [128] = 94, - [129] = 95, - [130] = 119, - [131] = 71, - [132] = 115, - [133] = 102, - [134] = 103, - [135] = 116, - [136] = 81, - [137] = 79, - [138] = 114, - [139] = 74, - [140] = 109, - [141] = 90, - [142] = 93, - [143] = 90, - [144] = 93, - [145] = 119, - [146] = 81, - [147] = 71, - [148] = 67, - [149] = 115, - [150] = 70, - [151] = 114, - [152] = 109, - [153] = 93, - [154] = 90, - [155] = 72, + [120] = 120, + [121] = 121, + [122] = 122, + [123] = 123, + [124] = 124, + [125] = 86, + [126] = 87, + [127] = 89, + [128] = 91, + [129] = 88, + [130] = 92, + [131] = 93, + [132] = 85, + [133] = 86, + [134] = 117, + [135] = 70, + [136] = 67, + [137] = 68, + [138] = 69, + [139] = 71, + [140] = 72, + [141] = 73, + [142] = 74, + [143] = 75, + [144] = 124, + [145] = 123, + [146] = 122, + [147] = 76, + [148] = 79, + [149] = 66, + [150] = 121, + [151] = 120, + [152] = 119, + [153] = 117, + [154] = 116, + [155] = 82, [156] = 81, - [157] = 71, - [158] = 76, - [159] = 83, - [160] = 70, - [161] = 86, - [162] = 89, - [163] = 72, - [164] = 91, + [157] = 77, + [158] = 78, + [159] = 65, + [160] = 84, + [161] = 88, + [162] = 80, + [163] = 80, + [164] = 79, [165] = 76, - [166] = 92, - [167] = 83, - [168] = 109, - [169] = 86, - [170] = 97, - [171] = 99, - [172] = 105, - [173] = 67, - [174] = 96, - [175] = 105, - [176] = 89, - [177] = 69, - [178] = 91, - [179] = 92, - [180] = 97, - [181] = 95, - [182] = 114, - [183] = 73, - [184] = 74, - [185] = 75, - [186] = 77, - [187] = 75, - [188] = 85, - [189] = 96, - [190] = 102, - [191] = 105, - [192] = 115, - [193] = 119, - [194] = 69, - [195] = 73, - [196] = 88, - [197] = 74, - [198] = 116, - [199] = 77, - [200] = 75, - [201] = 77, - [202] = 116, - [203] = 94, - [204] = 103, - [205] = 75, - [206] = 95, - [207] = 102, - [208] = 74, - [209] = 73, + [166] = 75, + [167] = 84, + [168] = 74, + [169] = 73, + [170] = 78, + [171] = 72, + [172] = 71, + [173] = 77, + [174] = 69, + [175] = 68, + [176] = 119, + [177] = 81, + [178] = 82, + [179] = 116, + [180] = 117, + [181] = 119, + [182] = 120, + [183] = 121, + [184] = 66, + [185] = 122, + [186] = 120, + [187] = 123, + [188] = 124, + [189] = 67, + [190] = 86, + [191] = 70, + [192] = 121, + [193] = 87, + [194] = 91, + [195] = 116, + [196] = 89, + [197] = 91, + [198] = 85, + [199] = 66, + [200] = 92, + [201] = 93, + [202] = 88, + [203] = 85, + [204] = 93, + [205] = 92, + [206] = 70, + [207] = 122, + [208] = 67, + [209] = 68, [210] = 69, - [211] = 105, - [212] = 96, - [213] = 67, - [214] = 68, - [215] = 99, - [216] = 97, - [217] = 92, - [218] = 91, - [219] = 89, - [220] = 86, - [221] = 83, - [222] = 76, - [223] = 72, - [224] = 70, - [225] = 71, - [226] = 81, - [227] = 103, - [228] = 90, - [229] = 93, - [230] = 94, - [231] = 109, - [232] = 114, - [233] = 85, - [234] = 115, - [235] = 88, - [236] = 119, - [237] = 103, - [238] = 94, - [239] = 95, - [240] = 102, - [241] = 116, + [211] = 91, + [212] = 89, + [213] = 89, + [214] = 123, + [215] = 71, + [216] = 87, + [217] = 72, + [218] = 124, + [219] = 73, + [220] = 74, + [221] = 124, + [222] = 123, + [223] = 122, + [224] = 66, + [225] = 121, + [226] = 120, + [227] = 119, + [228] = 117, + [229] = 116, + [230] = 82, + [231] = 81, + [232] = 77, + [233] = 78, + [234] = 65, + [235] = 84, + [236] = 80, + [237] = 79, + [238] = 75, + [239] = 76, + [240] = 240, + [241] = 241, [242] = 242, [243] = 243, - [244] = 244, - [245] = 244, - [246] = 246, + [244] = 243, + [245] = 242, + [246] = 242, [247] = 247, - [248] = 248, + [248] = 243, [249] = 249, - [250] = 244, + [250] = 250, [251] = 251, - [252] = 243, - [253] = 253, - [254] = 244, - [255] = 255, + [252] = 252, + [253] = 242, + [254] = 254, + [255] = 247, [256] = 256, - [257] = 257, - [258] = 244, + [257] = 243, + [258] = 258, [259] = 259, - [260] = 260, - [261] = 261, - [262] = 244, - [263] = 249, - [264] = 244, + [260] = 242, + [261] = 243, + [262] = 242, + [263] = 256, + [264] = 243, [265] = 243, - [266] = 243, - [267] = 243, - [268] = 259, - [269] = 256, - [270] = 243, - [271] = 243, + [266] = 241, + [267] = 267, + [268] = 268, + [269] = 242, + [270] = 270, + [271] = 271, [272] = 272, - [273] = 272, + [273] = 273, [274] = 274, - [275] = 275, + [275] = 273, [276] = 276, - [277] = 276, - [278] = 278, - [279] = 278, - [280] = 278, - [281] = 276, - [282] = 276, + [277] = 277, + [278] = 276, + [279] = 277, + [280] = 276, + [281] = 277, + [282] = 277, [283] = 276, - [284] = 278, - [285] = 278, - [286] = 278, - [287] = 276, + [284] = 276, + [285] = 277, + [286] = 276, + [287] = 277, [288] = 276, - [289] = 278, + [289] = 277, [290] = 290, - [291] = 290, + [291] = 291, [292] = 290, - [293] = 290, - [294] = 294, - [295] = 294, - [296] = 294, + [293] = 291, + [294] = 290, + [295] = 290, + [296] = 291, [297] = 297, - [298] = 290, - [299] = 294, - [300] = 290, - [301] = 294, - [302] = 290, - [303] = 290, - [304] = 294, - [305] = 294, + [298] = 291, + [299] = 290, + [300] = 291, + [301] = 290, + [302] = 291, + [303] = 291, + [304] = 291, + [305] = 290, [306] = 290, - [307] = 294, - [308] = 308, - [309] = 308, - [310] = 308, - [311] = 308, - [312] = 308, - [313] = 313, - [314] = 54, - [315] = 16, - [316] = 52, - [317] = 13, - [318] = 48, - [319] = 47, - [320] = 51, - [321] = 53, - [322] = 50, - [323] = 323, - [324] = 49, - [325] = 46, - [326] = 45, + [307] = 291, + [308] = 290, + [309] = 291, + [310] = 310, + [311] = 310, + [312] = 310, + [313] = 310, + [314] = 310, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 318, + [320] = 318, + [321] = 318, + [322] = 322, + [323] = 318, + [324] = 322, + [325] = 325, + [326] = 326, [327] = 327, - [328] = 328, - [329] = 328, + [328] = 7, + [329] = 326, [330] = 330, - [331] = 328, - [332] = 332, - [333] = 333, - [334] = 328, - [335] = 327, - [336] = 328, + [331] = 330, + [332] = 326, + [333] = 4, + [334] = 326, + [335] = 326, + [336] = 327, [337] = 337, [338] = 338, - [339] = 337, - [340] = 338, - [341] = 15, + [339] = 339, + [340] = 340, + [341] = 337, [342] = 342, - [343] = 338, - [344] = 3, - [345] = 338, - [346] = 40, - [347] = 342, - [348] = 26, - [349] = 338, - [350] = 2, - [351] = 14, + [343] = 343, + [344] = 344, + [345] = 343, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 338, + [351] = 351, [352] = 352, [353] = 353, [354] = 354, [355] = 355, [356] = 356, [357] = 357, - [358] = 353, - [359] = 359, - [360] = 360, - [361] = 361, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 366, - [367] = 4, - [368] = 368, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 372, - [373] = 55, - [374] = 371, + [358] = 358, + [359] = 340, + [360] = 346, + [361] = 348, + [362] = 349, + [363] = 338, + [364] = 356, + [365] = 343, + [366] = 344, + [367] = 342, + [368] = 337, + [369] = 343, + [370] = 344, + [371] = 342, + [372] = 337, + [373] = 373, + [374] = 374, [375] = 375, - [376] = 369, - [377] = 353, - [378] = 378, + [376] = 376, + [377] = 340, + [378] = 344, [379] = 379, - [380] = 380, - [381] = 381, - [382] = 372, + [380] = 347, + [381] = 355, + [382] = 382, [383] = 383, - [384] = 360, - [385] = 366, - [386] = 357, - [387] = 387, - [388] = 354, - [389] = 389, - [390] = 390, - [391] = 368, - [392] = 392, - [393] = 362, - [394] = 394, - [395] = 369, - [396] = 379, + [384] = 342, + [385] = 385, + [386] = 356, + [387] = 338, + [388] = 388, + [389] = 373, + [390] = 374, + [391] = 376, + [392] = 379, + [393] = 349, + [394] = 382, + [395] = 347, + [396] = 355, [397] = 397, - [398] = 394, - [399] = 370, - [400] = 387, - [401] = 354, - [402] = 10, - [403] = 355, - [404] = 371, - [405] = 354, - [406] = 365, - [407] = 380, - [408] = 372, - [409] = 361, - [410] = 371, - [411] = 364, - [412] = 362, - [413] = 365, - [414] = 371, - [415] = 362, - [416] = 389, - [417] = 389, - [418] = 387, - [419] = 357, - [420] = 360, - [421] = 370, - [422] = 369, - [423] = 368, - [424] = 366, - [425] = 389, - [426] = 370, - [427] = 371, - [428] = 387, - [429] = 357, - [430] = 360, - [431] = 365, - [432] = 364, - [433] = 370, - [434] = 369, - [435] = 352, - [436] = 368, - [437] = 362, - [438] = 389, - [439] = 387, - [440] = 357, - [441] = 360, - [442] = 366, - [443] = 443, - [444] = 370, - [445] = 369, - [446] = 362, - [447] = 368, - [448] = 366, - [449] = 449, - [450] = 389, + [398] = 348, + [399] = 382, + [400] = 400, + [401] = 346, + [402] = 385, + [403] = 383, + [404] = 404, + [405] = 373, + [406] = 340, + [407] = 385, + [408] = 408, + [409] = 409, + [410] = 339, + [411] = 343, + [412] = 347, + [413] = 376, + [414] = 376, + [415] = 344, + [416] = 374, + [417] = 417, + [418] = 340, + [419] = 346, + [420] = 373, + [421] = 374, + [422] = 348, + [423] = 349, + [424] = 338, + [425] = 425, + [426] = 356, + [427] = 376, + [428] = 428, + [429] = 379, + [430] = 347, + [431] = 347, + [432] = 343, + [433] = 344, + [434] = 342, + [435] = 383, + [436] = 355, + [437] = 337, + [438] = 382, + [439] = 383, + [440] = 425, + [441] = 388, + [442] = 442, + [443] = 337, + [444] = 340, + [445] = 376, + [446] = 385, + [447] = 373, + [448] = 448, + [449] = 417, + [450] = 356, [451] = 451, - [452] = 387, - [453] = 357, - [454] = 366, - [455] = 353, - [456] = 360, - [457] = 355, - [458] = 17, - [459] = 361, - [460] = 364, - [461] = 365, - [462] = 394, - [463] = 371, - [464] = 464, - [465] = 352, - [466] = 353, - [467] = 364, - [468] = 369, - [469] = 380, - [470] = 363, - [471] = 381, - [472] = 362, + [452] = 385, + [453] = 338, + [454] = 349, + [455] = 348, + [456] = 346, + [457] = 409, + [458] = 354, + [459] = 11, + [460] = 356, + [461] = 337, + [462] = 409, + [463] = 342, + [464] = 344, + [465] = 343, + [466] = 383, + [467] = 356, + [468] = 382, + [469] = 349, + [470] = 348, + [471] = 346, + [472] = 409, [473] = 473, - [474] = 364, - [475] = 371, - [476] = 368, + [474] = 346, + [475] = 338, + [476] = 349, [477] = 379, - [478] = 364, - [479] = 375, - [480] = 363, - [481] = 361, - [482] = 366, - [483] = 381, + [478] = 340, + [479] = 374, + [480] = 376, + [481] = 409, + [482] = 340, + [483] = 379, [484] = 484, - [485] = 364, - [486] = 372, - [487] = 353, - [488] = 355, - [489] = 489, - [490] = 56, - [491] = 491, - [492] = 492, - [493] = 493, - [494] = 372, - [495] = 394, - [496] = 352, - [497] = 364, - [498] = 361, - [499] = 380, - [500] = 500, - [501] = 493, + [485] = 355, + [486] = 347, + [487] = 417, + [488] = 348, + [489] = 349, + [490] = 338, + [491] = 354, + [492] = 342, + [493] = 356, + [494] = 417, + [495] = 354, + [496] = 337, + [497] = 354, + [498] = 342, + [499] = 428, + [500] = 348, + [501] = 344, [502] = 502, [503] = 503, - [504] = 504, - [505] = 363, - [506] = 366, - [507] = 370, - [508] = 353, - [509] = 389, - [510] = 381, - [511] = 491, - [512] = 363, - [513] = 366, - [514] = 368, - [515] = 379, - [516] = 378, - [517] = 375, - [518] = 383, - [519] = 368, - [520] = 369, - [521] = 363, - [522] = 381, - [523] = 360, - [524] = 354, - [525] = 369, - [526] = 353, - [527] = 355, - [528] = 394, - [529] = 352, - [530] = 380, - [531] = 500, - [532] = 379, - [533] = 375, - [534] = 370, - [535] = 443, - [536] = 387, - [537] = 370, - [538] = 371, - [539] = 353, - [540] = 368, - [541] = 362, - [542] = 362, - [543] = 389, - [544] = 389, - [545] = 387, - [546] = 357, - [547] = 375, - [548] = 357, - [549] = 363, - [550] = 360, - [551] = 360, - [552] = 357, - [553] = 387, - [554] = 42, - [555] = 33, - [556] = 556, - [557] = 6, - [558] = 5, - [559] = 11, - [560] = 9, - [561] = 31, - [562] = 41, - [563] = 19, - [564] = 18, - [565] = 12, - [566] = 35, - [567] = 38, - [568] = 30, - [569] = 22, - [570] = 34, - [571] = 37, - [572] = 28, - [573] = 32, - [574] = 29, - [575] = 21, - [576] = 20, - [577] = 7, - [578] = 8, - [579] = 39, - [580] = 36, - [581] = 23, - [582] = 44, - [583] = 24, - [584] = 25, - [585] = 27, - [586] = 43, - [587] = 587, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 590, - [592] = 13, - [593] = 593, - [594] = 593, - [595] = 593, - [596] = 590, - [597] = 593, - [598] = 593, - [599] = 593, - [600] = 16, - [601] = 593, - [602] = 590, - [603] = 590, - [604] = 590, - [605] = 590, - [606] = 49, - [607] = 47, - [608] = 50, - [609] = 48, - [610] = 52, - [611] = 53, - [612] = 54, - [613] = 51, - [614] = 45, - [615] = 46, - [616] = 616, - [617] = 15, - [618] = 14, - [619] = 619, - [620] = 13, - [621] = 2, - [622] = 26, - [623] = 623, - [624] = 3, - [625] = 619, - [626] = 619, - [627] = 623, - [628] = 623, - [629] = 623, - [630] = 619, - [631] = 623, - [632] = 16, - [633] = 40, - [634] = 619, - [635] = 17, - [636] = 51, - [637] = 47, - [638] = 638, - [639] = 42, - [640] = 53, - [641] = 52, - [642] = 50, - [643] = 49, - [644] = 55, - [645] = 29, - [646] = 48, - [647] = 49, - [648] = 46, - [649] = 638, - [650] = 47, - [651] = 45, - [652] = 45, - [653] = 53, - [654] = 10, - [655] = 52, - [656] = 51, - [657] = 48, + [504] = 343, + [505] = 347, + [506] = 417, + [507] = 354, + [508] = 346, + [509] = 354, + [510] = 354, + [511] = 408, + [512] = 358, + [513] = 62, + [514] = 514, + [515] = 48, + [516] = 54, + [517] = 47, + [518] = 45, + [519] = 46, + [520] = 57, + [521] = 58, + [522] = 49, + [523] = 3, + [524] = 2, + [525] = 55, + [526] = 7, + [527] = 6, + [528] = 9, + [529] = 5, + [530] = 8, + [531] = 4, + [532] = 532, + [533] = 274, + [534] = 532, + [535] = 10, + [536] = 536, + [537] = 12, + [538] = 536, + [539] = 270, + [540] = 532, + [541] = 532, + [542] = 536, + [543] = 536, + [544] = 11, + [545] = 532, + [546] = 536, + [547] = 41, + [548] = 30, + [549] = 28, + [550] = 38, + [551] = 17, + [552] = 31, + [553] = 36, + [554] = 40, + [555] = 555, + [556] = 34, + [557] = 13, + [558] = 44, + [559] = 37, + [560] = 35, + [561] = 43, + [562] = 33, + [563] = 15, + [564] = 16, + [565] = 26, + [566] = 25, + [567] = 14, + [568] = 23, + [569] = 29, + [570] = 39, + [571] = 22, + [572] = 42, + [573] = 21, + [574] = 32, + [575] = 20, + [576] = 19, + [577] = 27, + [578] = 18, + [579] = 24, + [580] = 580, + [581] = 581, + [582] = 582, + [583] = 583, + [584] = 584, + [585] = 584, + [586] = 2, + [587] = 584, + [588] = 583, + [589] = 584, + [590] = 583, + [591] = 584, + [592] = 583, + [593] = 583, + [594] = 583, + [595] = 584, + [596] = 583, + [597] = 3, + [598] = 584, + [599] = 45, + [600] = 62, + [601] = 54, + [602] = 55, + [603] = 48, + [604] = 47, + [605] = 46, + [606] = 57, + [607] = 49, + [608] = 608, + [609] = 58, + [610] = 8, + [611] = 9, + [612] = 612, + [613] = 613, + [614] = 613, + [615] = 4, + [616] = 7, + [617] = 613, + [618] = 6, + [619] = 612, + [620] = 612, + [621] = 3, + [622] = 613, + [623] = 612, + [624] = 612, + [625] = 12, + [626] = 613, + [627] = 2, + [628] = 5, + [629] = 629, + [630] = 11, + [631] = 47, + [632] = 46, + [633] = 49, + [634] = 57, + [635] = 55, + [636] = 636, + [637] = 45, + [638] = 58, + [639] = 48, + [640] = 54, + [641] = 45, + [642] = 55, + [643] = 10, + [644] = 46, + [645] = 49, + [646] = 274, + [647] = 270, + [648] = 57, + [649] = 636, + [650] = 58, + [651] = 62, + [652] = 34, + [653] = 48, + [654] = 47, + [655] = 54, + [656] = 28, + [657] = 62, [658] = 658, - [659] = 46, - [660] = 56, - [661] = 54, - [662] = 4, - [663] = 50, - [664] = 54, - [665] = 7, - [666] = 27, - [667] = 25, - [668] = 28, - [669] = 6, - [670] = 670, + [659] = 20, + [660] = 18, + [661] = 25, + [662] = 36, + [663] = 38, + [664] = 19, + [665] = 658, + [666] = 30, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 33, [671] = 671, - [672] = 34, - [673] = 37, - [674] = 11, - [675] = 24, - [676] = 36, - [677] = 38, - [678] = 41, - [679] = 39, - [680] = 19, - [681] = 18, - [682] = 21, - [683] = 30, - [684] = 684, - [685] = 20, - [686] = 33, - [687] = 687, - [688] = 5, - [689] = 43, - [690] = 32, - [691] = 671, - [692] = 44, - [693] = 684, - [694] = 22, - [695] = 8, - [696] = 12, - [697] = 671, - [698] = 23, - [699] = 699, - [700] = 31, - [701] = 9, - [702] = 670, - [703] = 670, - [704] = 670, - [705] = 671, - [706] = 671, - [707] = 14, - [708] = 35, - [709] = 684, - [710] = 684, - [711] = 711, - [712] = 15, - [713] = 684, - [714] = 670, - [715] = 40, - [716] = 17, + [672] = 669, + [673] = 16, + [674] = 8, + [675] = 44, + [676] = 37, + [677] = 32, + [678] = 24, + [679] = 13, + [680] = 31, + [681] = 29, + [682] = 35, + [683] = 667, + [684] = 669, + [685] = 43, + [686] = 42, + [687] = 41, + [688] = 667, + [689] = 689, + [690] = 14, + [691] = 40, + [692] = 26, + [693] = 658, + [694] = 658, + [695] = 39, + [696] = 667, + [697] = 23, + [698] = 22, + [699] = 15, + [700] = 667, + [701] = 658, + [702] = 21, + [703] = 17, + [704] = 27, + [705] = 669, + [706] = 669, + [707] = 9, + [708] = 4, + [709] = 5, + [710] = 7, + [711] = 4, + [712] = 12, + [713] = 6, + [714] = 7, + [715] = 715, + [716] = 34, [717] = 717, - [718] = 26, - [719] = 42, - [720] = 29, - [721] = 10, - [722] = 56, - [723] = 55, - [724] = 55, - [725] = 56, - [726] = 7, - [727] = 27, - [728] = 728, - [729] = 20, - [730] = 25, - [731] = 23, - [732] = 22, - [733] = 18, - [734] = 19, - [735] = 21, - [736] = 11, - [737] = 6, - [738] = 28, - [739] = 41, - [740] = 8, - [741] = 44, - [742] = 43, - [743] = 39, - [744] = 36, - [745] = 16, - [746] = 13, - [747] = 12, - [748] = 5, - [749] = 33, - [750] = 38, - [751] = 9, - [752] = 35, - [753] = 32, - [754] = 31, - [755] = 37, - [756] = 34, - [757] = 30, - [758] = 24, - [759] = 50, - [760] = 46, - [761] = 13, - [762] = 51, - [763] = 49, - [764] = 47, - [765] = 45, - [766] = 16, + [718] = 28, + [719] = 274, + [720] = 270, + [721] = 11, + [722] = 11, + [723] = 270, + [724] = 274, + [725] = 10, + [726] = 42, + [727] = 23, + [728] = 18, + [729] = 729, + [730] = 36, + [731] = 19, + [732] = 38, + [733] = 43, + [734] = 40, + [735] = 39, + [736] = 15, + [737] = 13, + [738] = 35, + [739] = 31, + [740] = 29, + [741] = 14, + [742] = 26, + [743] = 41, + [744] = 22, + [745] = 21, + [746] = 17, + [747] = 24, + [748] = 37, + [749] = 32, + [750] = 20, + [751] = 44, + [752] = 27, + [753] = 16, + [754] = 25, + [755] = 30, + [756] = 33, + [757] = 3, + [758] = 758, + [759] = 2, + [760] = 54, + [761] = 761, + [762] = 762, + [763] = 62, + [764] = 58, + [765] = 57, + [766] = 761, [767] = 767, - [768] = 54, - [769] = 48, - [770] = 52, - [771] = 53, - [772] = 2, - [773] = 16, - [774] = 774, - [775] = 616, - [776] = 51, - [777] = 3, - [778] = 46, - [779] = 13, + [768] = 55, + [769] = 45, + [770] = 2, + [771] = 608, + [772] = 762, + [773] = 773, + [774] = 10, + [775] = 49, + [776] = 776, + [777] = 46, + [778] = 776, + [779] = 3, [780] = 47, - [781] = 45, - [782] = 53, - [783] = 52, - [784] = 48, - [785] = 50, - [786] = 49, - [787] = 54, - [788] = 45, - [789] = 16, - [790] = 4, - [791] = 791, - [792] = 14, - [793] = 793, - [794] = 3, - [795] = 47, - [796] = 49, - [797] = 50, - [798] = 26, - [799] = 799, - [800] = 54, - [801] = 791, - [802] = 51, - [803] = 803, - [804] = 46, - [805] = 13, - [806] = 40, - [807] = 15, - [808] = 53, - [809] = 52, - [810] = 791, - [811] = 48, - [812] = 791, - [813] = 2, - [814] = 791, - [815] = 50, - [816] = 4, - [817] = 14, - [818] = 2, - [819] = 51, - [820] = 49, - [821] = 47, - [822] = 15, - [823] = 40, - [824] = 54, - [825] = 774, - [826] = 17, - [827] = 48, - [828] = 52, - [829] = 829, - [830] = 53, - [831] = 45, - [832] = 3, - [833] = 26, - [834] = 46, - [835] = 4, - [836] = 56, - [837] = 42, - [838] = 15, - [839] = 55, - [840] = 26, - [841] = 40, - [842] = 829, + [781] = 48, + [782] = 55, + [783] = 8, + [784] = 57, + [785] = 3, + [786] = 786, + [787] = 58, + [788] = 27, + [789] = 45, + [790] = 9, + [791] = 54, + [792] = 792, + [793] = 792, + [794] = 62, + [795] = 40, + [796] = 792, + [797] = 797, + [798] = 792, + [799] = 792, + [800] = 2, + [801] = 48, + [802] = 47, + [803] = 46, + [804] = 49, + [805] = 7, + [806] = 45, + [807] = 54, + [808] = 58, + [809] = 8, + [810] = 6, + [811] = 57, + [812] = 55, + [813] = 4, + [814] = 12, + [815] = 5, + [816] = 767, + [817] = 49, + [818] = 62, + [819] = 46, + [820] = 47, + [821] = 48, + [822] = 9, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 825, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, [843] = 843, [844] = 844, - [845] = 29, - [846] = 2, - [847] = 3, - [848] = 17, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 848, [849] = 849, - [850] = 14, - [851] = 10, + [850] = 850, + [851] = 851, [852] = 852, - [853] = 19, + [853] = 853, [854] = 854, [855] = 855, - [856] = 854, - [857] = 855, - [858] = 854, + [856] = 856, + [857] = 857, + [858] = 858, [859] = 859, [860] = 860, - [861] = 855, - [862] = 854, - [863] = 859, - [864] = 859, - [865] = 859, - [866] = 859, - [867] = 859, - [868] = 859, - [869] = 859, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, [870] = 870, [871] = 871, [872] = 872, - [873] = 24, - [874] = 30, - [875] = 34, - [876] = 37, - [877] = 854, - [878] = 855, - [879] = 855, - [880] = 860, - [881] = 860, - [882] = 882, - [883] = 860, - [884] = 859, - [885] = 882, - [886] = 882, - [887] = 860, - [888] = 882, - [889] = 871, - [890] = 870, - [891] = 882, - [892] = 871, - [893] = 860, - [894] = 882, - [895] = 860, + [873] = 873, + [874] = 874, + [875] = 875, + [876] = 849, + [877] = 847, + [878] = 846, + [879] = 845, + [880] = 841, + [881] = 839, + [882] = 838, + [883] = 827, + [884] = 884, + [885] = 885, + [886] = 886, + [887] = 887, + [888] = 888, + [889] = 889, + [890] = 890, + [891] = 833, + [892] = 892, + [893] = 893, + [894] = 894, + [895] = 895, [896] = 896, - [897] = 38, - [898] = 41, - [899] = 44, - [900] = 18, - [901] = 871, - [902] = 860, - [903] = 860, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 900, + [901] = 901, + [902] = 902, + [903] = 903, [904] = 904, - [905] = 882, - [906] = 871, - [907] = 55, - [908] = 56, + [905] = 905, + [906] = 906, + [907] = 907, + [908] = 908, [909] = 909, - [910] = 22, - [911] = 23, - [912] = 25, - [913] = 17, - [914] = 4, - [915] = 7, - [916] = 896, - [917] = 909, - [918] = 29, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 875, + [914] = 274, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, [919] = 919, - [920] = 33, - [921] = 31, - [922] = 5, - [923] = 26, - [924] = 27, - [925] = 12, - [926] = 40, - [927] = 2, - [928] = 20, - [929] = 21, - [930] = 919, - [931] = 10, - [932] = 42, - [933] = 36, - [934] = 39, - [935] = 872, - [936] = 3, - [937] = 11, - [938] = 6, - [939] = 28, - [940] = 35, - [941] = 43, - [942] = 8, - [943] = 32, - [944] = 9, - [945] = 19, - [946] = 42, - [947] = 10, - [948] = 27, - [949] = 25, - [950] = 31, - [951] = 9, - [952] = 29, - [953] = 33, - [954] = 5, - [955] = 35, - [956] = 20, - [957] = 32, - [958] = 23, - [959] = 4, - [960] = 21, - [961] = 36, - [962] = 22, - [963] = 39, - [964] = 12, - [965] = 11, - [966] = 43, - [967] = 44, - [968] = 8, - [969] = 7, - [970] = 6, - [971] = 18, - [972] = 41, - [973] = 24, - [974] = 38, - [975] = 37, - [976] = 34, - [977] = 28, - [978] = 30, - [979] = 33, - [980] = 43, - [981] = 44, - [982] = 23, - [983] = 32, - [984] = 8, - [985] = 25, - [986] = 39, - [987] = 36, - [988] = 7, - [989] = 55, - [990] = 24, - [991] = 35, - [992] = 9, - [993] = 56, - [994] = 30, - [995] = 28, - [996] = 6, - [997] = 27, - [998] = 12, - [999] = 11, - [1000] = 5, - [1001] = 22, - [1002] = 18, - [1003] = 19, - [1004] = 31, - [1005] = 21, - [1006] = 20, - [1007] = 41, - [1008] = 38, - [1009] = 37, - [1010] = 34, - [1011] = 1011, - [1012] = 1012, - [1013] = 1013, - [1014] = 1014, - [1015] = 1015, - [1016] = 1016, + [920] = 920, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 924, + [925] = 925, + [926] = 874, + [927] = 927, + [928] = 928, + [929] = 929, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 873, + [935] = 270, + [936] = 885, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 940, + [941] = 941, + [942] = 857, + [943] = 943, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 947, + [948] = 948, + [949] = 949, + [950] = 886, + [951] = 872, + [952] = 948, + [953] = 953, + [954] = 947, + [955] = 946, + [956] = 945, + [957] = 871, + [958] = 958, + [959] = 959, + [960] = 870, + [961] = 949, + [962] = 897, + [963] = 884, + [964] = 964, + [965] = 826, + [966] = 828, + [967] = 964, + [968] = 831, + [969] = 832, + [970] = 869, + [971] = 944, + [972] = 943, + [973] = 892, + [974] = 868, + [975] = 867, + [976] = 866, + [977] = 941, + [978] = 940, + [979] = 887, + [980] = 939, + [981] = 938, + [982] = 28, + [983] = 937, + [984] = 984, + [985] = 985, + [986] = 933, + [987] = 865, + [988] = 864, + [989] = 984, + [990] = 840, + [991] = 842, + [992] = 843, + [993] = 844, + [994] = 863, + [995] = 34, + [996] = 862, + [997] = 861, + [998] = 932, + [999] = 860, + [1000] = 859, + [1001] = 856, + [1002] = 931, + [1003] = 10, + [1004] = 848, + [1005] = 930, + [1006] = 850, + [1007] = 853, + [1008] = 1008, + [1009] = 1009, + [1010] = 852, + [1011] = 851, + [1012] = 929, + [1013] = 928, + [1014] = 927, + [1015] = 925, + [1016] = 924, [1017] = 1017, - [1018] = 1018, - [1019] = 1019, - [1020] = 1020, - [1021] = 1021, - [1022] = 1022, - [1023] = 1020, - [1024] = 1024, - [1025] = 1025, - [1026] = 1026, + [1018] = 12, + [1019] = 923, + [1020] = 922, + [1021] = 1017, + [1022] = 888, + [1023] = 889, + [1024] = 9, + [1025] = 890, + [1026] = 921, [1027] = 1027, - [1028] = 1028, - [1029] = 1028, - [1030] = 1030, - [1031] = 1031, - [1032] = 1032, - [1033] = 1033, + [1028] = 920, + [1029] = 919, + [1030] = 918, + [1031] = 917, + [1032] = 916, + [1033] = 915, [1034] = 1034, - [1035] = 1035, - [1036] = 1012, - [1037] = 1037, + [1035] = 912, + [1036] = 1036, + [1037] = 911, [1038] = 1038, [1039] = 1039, [1040] = 1040, [1041] = 1041, [1042] = 1042, - [1043] = 1043, - [1044] = 1044, - [1045] = 1045, - [1046] = 1046, - [1047] = 1047, - [1048] = 1048, - [1049] = 1049, - [1050] = 1050, - [1051] = 1051, - [1052] = 1052, - [1053] = 1053, - [1054] = 1054, - [1055] = 1055, - [1056] = 1056, - [1057] = 1057, - [1058] = 1018, - [1059] = 1059, - [1060] = 1060, - [1061] = 1061, - [1062] = 1062, - [1063] = 1063, - [1064] = 1017, - [1065] = 1016, + [1043] = 910, + [1044] = 4, + [1045] = 909, + [1046] = 908, + [1047] = 7, + [1048] = 907, + [1049] = 5, + [1050] = 906, + [1051] = 1027, + [1052] = 905, + [1053] = 904, + [1054] = 903, + [1055] = 902, + [1056] = 901, + [1057] = 8, + [1058] = 11, + [1059] = 900, + [1060] = 899, + [1061] = 898, + [1062] = 896, + [1063] = 895, + [1064] = 1064, + [1065] = 1065, [1066] = 1066, - [1067] = 1067, + [1067] = 953, [1068] = 1068, - [1069] = 1069, + [1069] = 6, [1070] = 1070, - [1071] = 1071, - [1072] = 1072, - [1073] = 1073, - [1074] = 1074, - [1075] = 1075, - [1076] = 1076, - [1077] = 1077, - [1078] = 1021, - [1079] = 1022, - [1080] = 1015, - [1081] = 1014, - [1082] = 1013, - [1083] = 1024, - [1084] = 1084, - [1085] = 1085, + [1071] = 1036, + [1072] = 1009, + [1073] = 1038, + [1074] = 1039, + [1075] = 1040, + [1076] = 1041, + [1077] = 1042, + [1078] = 1078, + [1079] = 1064, + [1080] = 1080, + [1081] = 1066, + [1082] = 1082, + [1083] = 1068, + [1084] = 1070, + [1085] = 1078, [1086] = 1086, - [1087] = 1087, + [1087] = 1086, [1088] = 1088, [1089] = 1089, [1090] = 1090, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, + [1091] = 830, + [1092] = 823, + [1093] = 824, [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 1097, - [1098] = 1098, - [1099] = 1099, - [1100] = 1100, - [1101] = 1101, - [1102] = 1102, - [1103] = 1025, - [1104] = 1041, - [1105] = 1026, - [1106] = 1054, - [1107] = 1107, - [1108] = 1108, - [1109] = 1109, - [1110] = 1110, - [1111] = 1111, - [1112] = 1112, - [1113] = 1113, - [1114] = 1114, + [1095] = 834, + [1096] = 1088, + [1097] = 1089, + [1098] = 1090, + [1099] = 894, + [1100] = 893, + [1101] = 835, + [1102] = 836, + [1103] = 837, + [1104] = 854, + [1105] = 1008, + [1106] = 855, + [1107] = 1034, + [1108] = 958, + [1109] = 959, + [1110] = 858, + [1111] = 985, + [1112] = 855, + [1113] = 26, + [1114] = 918, [1115] = 1115, - [1116] = 1116, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 1120, + [1116] = 917, + [1117] = 920, + [1118] = 44, + [1119] = 916, + [1120] = 899, [1121] = 1121, - [1122] = 1122, - [1123] = 1123, - [1124] = 1124, - [1125] = 1027, - [1126] = 1126, - [1127] = 1030, - [1128] = 1031, - [1129] = 1032, - [1130] = 1130, - [1131] = 1131, - [1132] = 1132, - [1133] = 1133, - [1134] = 1126, + [1122] = 900, + [1123] = 901, + [1124] = 902, + [1125] = 903, + [1126] = 904, + [1127] = 1127, + [1128] = 1128, + [1129] = 1127, + [1130] = 1128, + [1131] = 919, + [1132] = 1127, + [1133] = 1128, + [1134] = 1134, [1135] = 1135, - [1136] = 1011, + [1136] = 905, [1137] = 1137, - [1138] = 1138, - [1139] = 1139, - [1140] = 1140, + [1138] = 906, + [1139] = 921, + [1140] = 907, [1141] = 1141, - [1142] = 1142, - [1143] = 1033, - [1144] = 1034, - [1145] = 1035, - [1146] = 1102, - [1147] = 1037, - [1148] = 1140, - [1149] = 1139, - [1150] = 1138, - [1151] = 1137, - [1152] = 1043, - [1153] = 1135, - [1154] = 1044, - [1155] = 1133, - [1156] = 1132, - [1157] = 1038, - [1158] = 1039, - [1159] = 1159, - [1160] = 1160, + [1142] = 850, + [1143] = 1143, + [1144] = 1144, + [1145] = 1127, + [1146] = 1128, + [1147] = 848, + [1148] = 1134, + [1149] = 1134, + [1150] = 1150, + [1151] = 908, + [1152] = 1134, + [1153] = 922, + [1154] = 915, + [1155] = 909, + [1156] = 1156, + [1157] = 910, + [1158] = 1042, + [1159] = 1041, + [1160] = 1134, [1161] = 1161, - [1162] = 1162, + [1162] = 854, [1163] = 1163, - [1164] = 1164, - [1165] = 1165, - [1166] = 1123, - [1167] = 1122, - [1168] = 1121, - [1169] = 1110, - [1170] = 1040, - [1171] = 1171, - [1172] = 1120, - [1173] = 1160, - [1174] = 1119, - [1175] = 1118, - [1176] = 1117, - [1177] = 1116, - [1178] = 1115, - [1179] = 1114, - [1180] = 1180, - [1181] = 1181, - [1182] = 1113, - [1183] = 1112, - [1184] = 1059, - [1185] = 1185, - [1186] = 1055, - [1187] = 1187, - [1188] = 1188, - [1189] = 1180, - [1190] = 1190, - [1191] = 1111, - [1192] = 1108, - [1193] = 1042, - [1194] = 1107, - [1195] = 1195, - [1196] = 1196, - [1197] = 1019, + [1164] = 1034, + [1165] = 28, + [1166] = 1040, + [1167] = 1039, + [1168] = 1038, + [1169] = 1169, + [1170] = 840, + [1171] = 16, + [1172] = 911, + [1173] = 875, + [1174] = 12, + [1175] = 912, + [1176] = 1134, + [1177] = 923, + [1178] = 842, + [1179] = 1135, + [1180] = 34, + [1181] = 874, + [1182] = 1127, + [1183] = 1183, + [1184] = 1128, + [1185] = 1163, + [1186] = 1186, + [1187] = 1134, + [1188] = 924, + [1189] = 10, + [1190] = 873, + [1191] = 915, + [1192] = 872, + [1193] = 1193, + [1194] = 1194, + [1195] = 916, + [1196] = 871, + [1197] = 917, [1198] = 1198, - [1199] = 1141, - [1200] = 1200, - [1201] = 1201, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1205, - [1206] = 1101, - [1207] = 1100, - [1208] = 1208, - [1209] = 1165, - [1210] = 1164, - [1211] = 1163, - [1212] = 1162, - [1213] = 1161, - [1214] = 1159, - [1215] = 1099, - [1216] = 1216, - [1217] = 1142, - [1218] = 1131, - [1219] = 1130, - [1220] = 1124, - [1221] = 1109, - [1222] = 1077, - [1223] = 1056, - [1224] = 1057, - [1225] = 1098, - [1226] = 1171, - [1227] = 1097, - [1228] = 1096, - [1229] = 1095, - [1230] = 1094, - [1231] = 1093, - [1232] = 1208, - [1233] = 1092, - [1234] = 1091, - [1235] = 1216, - [1236] = 1090, - [1237] = 1089, - [1238] = 1088, - [1239] = 1087, - [1240] = 1086, - [1241] = 1241, - [1242] = 1085, - [1243] = 1084, - [1244] = 1076, - [1245] = 1075, - [1246] = 1181, - [1247] = 1185, - [1248] = 1187, - [1249] = 1188, - [1250] = 1190, - [1251] = 1074, - [1252] = 1073, - [1253] = 1072, - [1254] = 1071, - [1255] = 1070, - [1256] = 1069, - [1257] = 1068, - [1258] = 1067, - [1259] = 1066, - [1260] = 1063, - [1261] = 1062, - [1262] = 1061, - [1263] = 1060, - [1264] = 1053, - [1265] = 1052, - [1266] = 1195, - [1267] = 1196, - [1268] = 1198, - [1269] = 1200, - [1270] = 1201, - [1271] = 1202, - [1272] = 1203, - [1273] = 1204, - [1274] = 1205, - [1275] = 1051, - [1276] = 1050, - [1277] = 1049, - [1278] = 1048, - [1279] = 1047, - [1280] = 1046, - [1281] = 1045, - [1282] = 1131, - [1283] = 1112, - [1284] = 1284, - [1285] = 1091, - [1286] = 1286, - [1287] = 1022, - [1288] = 1021, - [1289] = 1120, - [1290] = 1034, - [1291] = 1291, - [1292] = 1292, - [1293] = 1012, - [1294] = 1190, - [1295] = 1118, - [1296] = 1037, - [1297] = 1033, - [1298] = 1090, - [1299] = 1299, - [1300] = 1089, - [1301] = 1088, - [1302] = 1087, - [1303] = 1284, - [1304] = 1110, - [1305] = 1305, - [1306] = 1086, - [1307] = 1038, - [1308] = 1085, - [1309] = 1039, - [1310] = 1084, - [1311] = 1092, - [1312] = 1312, - [1313] = 1313, - [1314] = 1314, - [1315] = 1159, - [1316] = 1316, - [1317] = 1126, - [1318] = 1161, - [1319] = 1074, - [1320] = 1142, - [1321] = 1130, - [1322] = 1093, - [1323] = 1188, - [1324] = 1162, - [1325] = 1163, - [1326] = 1117, - [1327] = 1032, - [1328] = 1024, - [1329] = 1077, - [1330] = 1056, - [1331] = 1123, - [1332] = 1332, - [1333] = 1107, - [1334] = 1164, - [1335] = 1187, - [1336] = 1020, - [1337] = 1185, - [1338] = 1338, - [1339] = 1031, - [1340] = 1340, + [1199] = 918, + [1200] = 925, + [1201] = 927, + [1202] = 928, + [1203] = 912, + [1204] = 911, + [1205] = 4, + [1206] = 919, + [1207] = 920, + [1208] = 929, + [1209] = 921, + [1210] = 922, + [1211] = 7, + [1212] = 1161, + [1213] = 923, + [1214] = 1186, + [1215] = 924, + [1216] = 1156, + [1217] = 827, + [1218] = 1009, + [1219] = 1038, + [1220] = 1220, + [1221] = 925, + [1222] = 1039, + [1223] = 927, + [1224] = 1040, + [1225] = 928, + [1226] = 1041, + [1227] = 843, + [1228] = 929, + [1229] = 1042, + [1230] = 930, + [1231] = 1009, + [1232] = 930, + [1233] = 931, + [1234] = 931, + [1235] = 932, + [1236] = 933, + [1237] = 1135, + [1238] = 932, + [1239] = 1239, + [1240] = 1240, + [1241] = 933, + [1242] = 1135, + [1243] = 1240, + [1244] = 1239, + [1245] = 910, + [1246] = 937, + [1247] = 937, + [1248] = 1248, + [1249] = 938, + [1250] = 939, + [1251] = 938, + [1252] = 270, + [1253] = 274, + [1254] = 939, + [1255] = 849, + [1256] = 11, + [1257] = 958, + [1258] = 940, + [1259] = 941, + [1260] = 959, + [1261] = 857, + [1262] = 943, + [1263] = 940, + [1264] = 941, + [1265] = 6, + [1266] = 870, + [1267] = 857, + [1268] = 1268, + [1269] = 33, + [1270] = 908, + [1271] = 1271, + [1272] = 1272, + [1273] = 1150, + [1274] = 1274, + [1275] = 1143, + [1276] = 1156, + [1277] = 907, + [1278] = 869, + [1279] = 1279, + [1280] = 868, + [1281] = 906, + [1282] = 943, + [1283] = 24, + [1284] = 35, + [1285] = 896, + [1286] = 830, + [1287] = 867, + [1288] = 866, + [1289] = 41, + [1290] = 905, + [1291] = 904, + [1292] = 903, + [1293] = 1293, + [1294] = 902, + [1295] = 901, + [1296] = 1135, + [1297] = 900, + [1298] = 895, + [1299] = 909, + [1300] = 1293, + [1301] = 5, + [1302] = 1121, + [1303] = 899, + [1304] = 944, + [1305] = 945, + [1306] = 1306, + [1307] = 1064, + [1308] = 944, + [1309] = 37, + [1310] = 15, + [1311] = 898, + [1312] = 945, + [1313] = 1066, + [1314] = 17, + [1315] = 1068, + [1316] = 946, + [1317] = 947, + [1318] = 953, + [1319] = 896, + [1320] = 946, + [1321] = 948, + [1322] = 947, + [1323] = 1323, + [1324] = 1239, + [1325] = 953, + [1326] = 1271, + [1327] = 1156, + [1328] = 1328, + [1329] = 858, + [1330] = 985, + [1331] = 895, + [1332] = 1306, + [1333] = 1333, + [1334] = 1064, + [1335] = 20, + [1336] = 865, + [1337] = 1066, + [1338] = 847, + [1339] = 1068, + [1340] = 1070, [1341] = 1341, - [1342] = 1342, - [1343] = 1019, - [1344] = 1116, - [1345] = 1025, - [1346] = 1055, - [1347] = 1347, - [1348] = 1165, - [1349] = 1313, - [1350] = 1059, - [1351] = 1072, - [1352] = 1352, - [1353] = 1353, - [1354] = 1354, - [1355] = 1122, - [1356] = 1101, - [1357] = 1357, - [1358] = 1358, - [1359] = 1071, - [1360] = 1108, - [1361] = 1070, - [1362] = 1054, - [1363] = 1041, - [1364] = 1181, - [1365] = 1069, - [1366] = 1102, - [1367] = 1068, - [1368] = 1067, - [1369] = 1121, - [1370] = 1013, - [1371] = 1066, - [1372] = 1313, - [1373] = 1014, - [1374] = 1063, - [1375] = 1284, - [1376] = 1376, - [1377] = 1062, - [1378] = 1015, - [1379] = 1057, - [1380] = 1073, - [1381] = 1061, - [1382] = 1060, - [1383] = 1018, - [1384] = 1016, - [1385] = 1017, - [1386] = 1018, - [1387] = 1017, - [1388] = 1057, - [1389] = 1138, - [1390] = 1053, - [1391] = 1019, - [1392] = 1341, - [1393] = 1020, - [1394] = 1160, - [1395] = 1313, - [1396] = 1056, - [1397] = 1077, - [1398] = 1021, - [1399] = 1022, - [1400] = 1024, - [1401] = 1111, - [1402] = 1052, - [1403] = 1338, - [1404] = 1404, - [1405] = 1025, - [1406] = 1195, - [1407] = 1040, - [1408] = 1196, - [1409] = 1198, - [1410] = 1200, - [1411] = 1137, - [1412] = 1412, - [1413] = 1413, - [1414] = 1016, - [1415] = 1026, - [1416] = 1412, - [1417] = 1015, - [1418] = 1418, - [1419] = 1109, - [1420] = 1201, - [1421] = 1124, - [1422] = 1027, - [1423] = 1202, - [1424] = 1203, - [1425] = 1425, - [1426] = 1204, - [1427] = 1427, - [1428] = 1205, - [1429] = 1028, - [1430] = 1030, - [1431] = 1284, - [1432] = 1352, - [1433] = 1031, - [1434] = 1030, - [1435] = 1032, - [1436] = 1014, - [1437] = 1130, - [1438] = 1013, - [1439] = 1131, - [1440] = 1413, - [1441] = 1140, - [1442] = 1051, - [1443] = 1142, - [1444] = 1098, - [1445] = 1033, - [1446] = 1132, - [1447] = 1112, - [1448] = 1139, - [1449] = 1292, - [1450] = 1102, - [1451] = 1041, - [1452] = 1291, - [1453] = 1113, + [1342] = 1135, + [1343] = 864, + [1344] = 948, + [1345] = 21, + [1346] = 22, + [1347] = 23, + [1348] = 25, + [1349] = 824, + [1350] = 1268, + [1351] = 1078, + [1352] = 1086, + [1353] = 1088, + [1354] = 1089, + [1355] = 949, + [1356] = 897, + [1357] = 826, + [1358] = 1090, + [1359] = 898, + [1360] = 14, + [1361] = 29, + [1362] = 884, + [1363] = 30, + [1364] = 1271, + [1365] = 894, + [1366] = 1156, + [1367] = 964, + [1368] = 893, + [1369] = 1369, + [1370] = 31, + [1371] = 13, + [1372] = 1135, + [1373] = 1373, + [1374] = 846, + [1375] = 892, + [1376] = 39, + [1377] = 828, + [1378] = 40, + [1379] = 984, + [1380] = 833, + [1381] = 1156, + [1382] = 825, + [1383] = 863, + [1384] = 1070, + [1385] = 1268, + [1386] = 890, + [1387] = 862, + [1388] = 889, + [1389] = 888, + [1390] = 887, + [1391] = 42, + [1392] = 1392, + [1393] = 43, + [1394] = 1271, + [1395] = 886, + [1396] = 1078, + [1397] = 1239, + [1398] = 885, + [1399] = 38, + [1400] = 36, + [1401] = 1156, + [1402] = 831, + [1403] = 32, + [1404] = 27, + [1405] = 832, + [1406] = 19, + [1407] = 18, + [1408] = 851, + [1409] = 852, + [1410] = 853, + [1411] = 856, + [1412] = 859, + [1413] = 834, + [1414] = 861, + [1415] = 1268, + [1416] = 845, + [1417] = 860, + [1418] = 860, + [1419] = 861, + [1420] = 862, + [1421] = 863, + [1422] = 984, + [1423] = 864, + [1424] = 1323, + [1425] = 1341, + [1426] = 865, + [1427] = 985, + [1428] = 858, + [1429] = 866, + [1430] = 867, + [1431] = 868, + [1432] = 1279, + [1433] = 869, + [1434] = 1369, + [1435] = 1135, + [1436] = 859, + [1437] = 1274, + [1438] = 856, + [1439] = 1272, + [1440] = 870, + [1441] = 959, + [1442] = 958, + [1443] = 844, + [1444] = 871, + [1445] = 1194, + [1446] = 1193, + [1447] = 872, + [1448] = 873, + [1449] = 1183, + [1450] = 853, + [1451] = 852, + [1452] = 874, + [1453] = 875, [1454] = 1034, - [1455] = 1035, - [1456] = 1054, - [1457] = 1050, - [1458] = 1332, - [1459] = 1340, - [1460] = 1055, - [1461] = 1347, - [1462] = 1075, - [1463] = 1059, - [1464] = 1012, - [1465] = 1037, - [1466] = 1076, - [1467] = 1114, - [1468] = 1026, - [1469] = 1299, - [1470] = 1316, - [1471] = 1038, - [1472] = 1357, - [1473] = 1171, - [1474] = 1039, - [1475] = 1109, - [1476] = 1115, - [1477] = 1049, - [1478] = 1159, - [1479] = 1110, - [1480] = 1121, - [1481] = 1122, - [1482] = 1123, - [1483] = 1124, - [1484] = 1119, - [1485] = 1161, - [1486] = 1284, - [1487] = 1099, - [1488] = 1162, - [1489] = 1163, - [1490] = 1164, - [1491] = 1048, - [1492] = 1165, - [1493] = 1358, - [1494] = 1047, - [1495] = 1100, - [1496] = 1040, - [1497] = 1028, - [1498] = 1042, - [1499] = 1043, - [1500] = 1046, - [1501] = 1501, - [1502] = 1044, - [1503] = 1045, - [1504] = 1045, - [1505] = 1044, - [1506] = 1046, - [1507] = 1047, - [1508] = 1140, - [1509] = 1139, - [1510] = 1138, - [1511] = 1137, - [1512] = 1011, - [1513] = 1513, - [1514] = 1135, - [1515] = 1126, - [1516] = 1133, - [1517] = 1132, - [1518] = 1048, - [1519] = 1313, - [1520] = 1049, - [1521] = 1097, - [1522] = 1501, - [1523] = 1050, - [1524] = 1051, - [1525] = 1205, - [1526] = 1204, - [1527] = 1203, - [1528] = 1202, - [1529] = 1043, - [1530] = 1042, - [1531] = 1120, - [1532] = 1160, - [1533] = 1119, - [1534] = 1118, - [1535] = 1201, - [1536] = 1200, - [1537] = 1117, - [1538] = 1116, - [1539] = 1198, - [1540] = 1196, - [1541] = 1541, - [1542] = 1195, - [1543] = 1404, - [1544] = 1052, - [1545] = 1115, - [1546] = 1114, - [1547] = 1053, - [1548] = 1113, - [1549] = 1035, - [1550] = 1427, - [1551] = 1111, - [1552] = 1108, - [1553] = 1107, - [1554] = 1286, - [1555] = 1425, - [1556] = 1027, - [1557] = 1541, - [1558] = 1060, - [1559] = 1061, - [1560] = 1101, - [1561] = 1100, - [1562] = 1099, - [1563] = 1098, - [1564] = 1171, - [1565] = 1097, - [1566] = 1418, - [1567] = 1062, - [1568] = 1063, - [1569] = 1096, - [1570] = 1095, - [1571] = 1094, - [1572] = 1066, - [1573] = 1513, - [1574] = 1011, - [1575] = 1093, - [1576] = 1067, - [1577] = 1314, - [1578] = 1068, - [1579] = 1069, - [1580] = 1092, - [1581] = 1305, - [1582] = 1091, - [1583] = 1090, - [1584] = 1089, - [1585] = 1088, - [1586] = 1087, - [1587] = 1086, - [1588] = 1085, - [1589] = 1084, - [1590] = 1312, - [1591] = 1070, - [1592] = 1071, - [1593] = 1354, - [1594] = 1096, - [1595] = 1353, - [1596] = 1072, - [1597] = 1076, - [1598] = 1075, - [1599] = 1133, - [1600] = 1181, - [1601] = 1185, - [1602] = 1187, - [1603] = 1188, - [1604] = 1190, - [1605] = 1074, - [1606] = 1095, - [1607] = 1135, - [1608] = 1094, - [1609] = 1073, + [1455] = 1271, + [1456] = 851, + [1457] = 855, + [1458] = 1137, + [1459] = 1141, + [1460] = 850, + [1461] = 1144, + [1462] = 854, + [1463] = 848, + [1464] = 841, + [1465] = 849, + [1466] = 1198, + [1467] = 1328, + [1468] = 847, + [1469] = 846, + [1470] = 845, + [1471] = 1471, + [1472] = 1169, + [1473] = 1473, + [1474] = 841, + [1475] = 1471, + [1476] = 835, + [1477] = 1239, + [1478] = 1473, + [1479] = 844, + [1480] = 843, + [1481] = 842, + [1482] = 840, + [1483] = 839, + [1484] = 839, + [1485] = 838, + [1486] = 837, + [1487] = 836, + [1488] = 835, + [1489] = 834, + [1490] = 824, + [1491] = 830, + [1492] = 1220, + [1493] = 827, + [1494] = 1134, + [1495] = 885, + [1496] = 886, + [1497] = 1392, + [1498] = 887, + [1499] = 838, + [1500] = 888, + [1501] = 889, + [1502] = 890, + [1503] = 833, + [1504] = 892, + [1505] = 1086, + [1506] = 1268, + [1507] = 893, + [1508] = 832, + [1509] = 831, + [1510] = 825, + [1511] = 828, + [1512] = 826, + [1513] = 1373, + [1514] = 964, + [1515] = 884, + [1516] = 897, + [1517] = 949, + [1518] = 837, + [1519] = 894, + [1520] = 1090, + [1521] = 836, + [1522] = 1089, + [1523] = 1088, + [1524] = 44, + [1525] = 39, + [1526] = 40, + [1527] = 13, + [1528] = 29, + [1529] = 14, + [1530] = 26, + [1531] = 31, + [1532] = 23, + [1533] = 22, + [1534] = 10, + [1535] = 42, + [1536] = 43, + [1537] = 34, + [1538] = 21, + [1539] = 38, + [1540] = 28, + [1541] = 36, + [1542] = 20, + [1543] = 1543, + [1544] = 32, + [1545] = 27, + [1546] = 19, + [1547] = 18, + [1548] = 17, + [1549] = 15, + [1550] = 41, + [1551] = 11, + [1552] = 35, + [1553] = 33, + [1554] = 1554, + [1555] = 30, + [1556] = 37, + [1557] = 16, + [1558] = 25, + [1559] = 24, + [1560] = 274, + [1561] = 19, + [1562] = 22, + [1563] = 21, + [1564] = 20, + [1565] = 1565, + [1566] = 1566, + [1567] = 270, + [1568] = 1566, + [1569] = 1565, + [1570] = 44, + [1571] = 1566, + [1572] = 26, + [1573] = 14, + [1574] = 16, + [1575] = 29, + [1576] = 1576, + [1577] = 31, + [1578] = 13, + [1579] = 1565, + [1580] = 17, + [1581] = 39, + [1582] = 1566, + [1583] = 1565, + [1584] = 1584, + [1585] = 40, + [1586] = 15, + [1587] = 37, + [1588] = 42, + [1589] = 43, + [1590] = 38, + [1591] = 36, + [1592] = 32, + [1593] = 27, + [1594] = 23, + [1595] = 25, + [1596] = 18, + [1597] = 1566, + [1598] = 1565, + [1599] = 30, + [1600] = 33, + [1601] = 41, + [1602] = 35, + [1603] = 24, + [1604] = 1576, + [1605] = 1605, + [1606] = 1606, + [1607] = 1607, + [1608] = 1608, + [1609] = 1609, [1610] = 1610, [1611] = 1611, [1612] = 1612, - [1613] = 1611, - [1614] = 1612, - [1615] = 1612, - [1616] = 1611, + [1613] = 1613, + [1614] = 1609, + [1615] = 1615, + [1616] = 1616, [1617] = 1611, [1618] = 1618, - [1619] = 1612, - [1620] = 1620, - [1621] = 1618, - [1622] = 1611, - [1623] = 1612, + [1619] = 1619, + [1620] = 1611, + [1621] = 1609, + [1622] = 1619, + [1623] = 1623, [1624] = 1624, - [1625] = 1625, + [1625] = 1609, [1626] = 1626, [1627] = 1627, - [1628] = 1628, + [1628] = 1612, [1629] = 1629, - [1630] = 1630, - [1631] = 1631, + [1630] = 1609, + [1631] = 1611, [1632] = 1632, [1633] = 1633, - [1634] = 1634, + [1634] = 1619, [1635] = 1635, - [1636] = 1636, - [1637] = 1637, - [1638] = 1637, - [1639] = 1630, - [1640] = 1640, - [1641] = 1640, + [1636] = 1610, + [1637] = 1610, + [1638] = 1610, + [1639] = 1639, + [1640] = 1619, + [1641] = 1641, [1642] = 1642, - [1643] = 1636, - [1644] = 1636, - [1645] = 1630, - [1646] = 1636, + [1643] = 1619, + [1644] = 1610, + [1645] = 1611, + [1646] = 1646, [1647] = 1647, - [1648] = 1648, - [1649] = 1637, - [1650] = 1636, - [1651] = 1632, - [1652] = 1648, + [1648] = 1641, + [1649] = 1649, + [1650] = 1650, + [1651] = 1651, + [1652] = 1650, [1653] = 1653, - [1654] = 1654, + [1654] = 1653, [1655] = 1655, - [1656] = 1637, - [1657] = 1657, - [1658] = 1630, - [1659] = 1659, - [1660] = 1660, - [1661] = 1637, - [1662] = 1632, - [1663] = 1632, - [1664] = 1632, - [1665] = 1665, - [1666] = 1666, - [1667] = 1667, - [1668] = 1630, - [1669] = 1669, - [1670] = 1669, + [1656] = 1656, + [1657] = 1651, + [1658] = 1650, + [1659] = 1651, + [1660] = 1655, + [1661] = 1653, + [1662] = 1651, + [1663] = 1650, + [1664] = 1653, + [1665] = 1653, + [1666] = 1655, + [1667] = 1655, + [1668] = 1655, + [1669] = 1650, + [1670] = 1651, [1671] = 1671, - [1672] = 1671, - [1673] = 1673, - [1674] = 1669, + [1672] = 1672, + [1673] = 1672, + [1674] = 1674, [1675] = 1675, - [1676] = 1673, - [1677] = 1669, - [1678] = 1669, - [1679] = 1675, - [1680] = 1673, + [1676] = 1676, + [1677] = 1677, + [1678] = 1678, + [1679] = 1679, + [1680] = 1671, [1681] = 1681, - [1682] = 1673, - [1683] = 1675, - [1684] = 1675, - [1685] = 1675, - [1686] = 1671, - [1687] = 1673, - [1688] = 1671, + [1682] = 1682, + [1683] = 1672, + [1684] = 1684, + [1685] = 1671, + [1686] = 1686, + [1687] = 1687, + [1688] = 1674, [1689] = 1671, - [1690] = 1690, + [1690] = 1672, [1691] = 1691, [1692] = 1692, [1693] = 1693, - [1694] = 1692, + [1694] = 1248, [1695] = 1695, - [1696] = 1696, - [1697] = 1697, - [1698] = 1697, - [1699] = 1695, - [1700] = 1692, - [1701] = 1697, + [1696] = 1671, + [1697] = 1674, + [1698] = 1674, + [1699] = 1674, + [1700] = 1700, + [1701] = 1701, [1702] = 1702, - [1703] = 1376, + [1703] = 1672, [1704] = 1704, - [1705] = 1695, - [1706] = 1697, + [1705] = 1705, + [1706] = 1706, [1707] = 1707, [1708] = 1708, - [1709] = 1709, + [1709] = 1708, [1710] = 1710, [1711] = 1711, - [1712] = 1695, + [1712] = 1712, [1713] = 1713, [1714] = 1714, [1715] = 1715, - [1716] = 1716, - [1717] = 1695, - [1718] = 1692, + [1716] = 1712, + [1717] = 1717, + [1718] = 1718, [1719] = 1719, - [1720] = 1720, + [1720] = 1718, [1721] = 1721, - [1722] = 1692, - [1723] = 1697, - [1724] = 1724, - [1725] = 1725, - [1726] = 1726, - [1727] = 1727, - [1728] = 1728, - [1729] = 1728, - [1730] = 1730, - [1731] = 1731, - [1732] = 1732, - [1733] = 1733, - [1734] = 1734, - [1735] = 1726, - [1736] = 1736, - [1737] = 1737, - [1738] = 1727, - [1739] = 1739, - [1740] = 1737, - [1741] = 1731, - [1742] = 1742, - [1743] = 1733, - [1744] = 1744, - [1745] = 1737, - [1746] = 1731, - [1747] = 1744, - [1748] = 1748, - [1749] = 1732, - [1750] = 1734, - [1751] = 1726, - [1752] = 1728, - [1753] = 1753, - [1754] = 1742, - [1755] = 1733, - [1756] = 1739, - [1757] = 1753, - [1758] = 1753, - [1759] = 1736, - [1760] = 1727, - [1761] = 1744, - [1762] = 1731, - [1763] = 1737, - [1764] = 1742, - [1765] = 1727, - [1766] = 1736, - [1767] = 1736, - [1768] = 1739, - [1769] = 1734, - [1770] = 1733, - [1771] = 1748, - [1772] = 1726, - [1773] = 1748, - [1774] = 1728, - [1775] = 1727, - [1776] = 1748, - [1777] = 1733, - [1778] = 1744, - [1779] = 1742, - [1780] = 1732, - [1781] = 1732, - [1782] = 1734, - [1783] = 1739, - [1784] = 1726, - [1785] = 1734, - [1786] = 1742, - [1787] = 1753, - [1788] = 1728, - [1789] = 1736, - [1790] = 1732, - [1791] = 1753, - [1792] = 1737, - [1793] = 1748, - [1794] = 1744, - [1795] = 1739, - [1796] = 1731, - [1797] = 1797, - [1798] = 1798, + [1722] = 1707, + [1723] = 1723, + [1724] = 1717, + [1725] = 1717, + [1726] = 1718, + [1727] = 1714, + [1728] = 1713, + [1729] = 1710, + [1730] = 1715, + [1731] = 1723, + [1732] = 1707, + [1733] = 1714, + [1734] = 1721, + [1735] = 1717, + [1736] = 1711, + [1737] = 1718, + [1738] = 1719, + [1739] = 1723, + [1740] = 1713, + [1741] = 1711, + [1742] = 1723, + [1743] = 1743, + [1744] = 1715, + [1745] = 1743, + [1746] = 1715, + [1747] = 1719, + [1748] = 1708, + [1749] = 1749, + [1750] = 1707, + [1751] = 1712, + [1752] = 1708, + [1753] = 1712, + [1754] = 1710, + [1755] = 1713, + [1756] = 1721, + [1757] = 1714, + [1758] = 1707, + [1759] = 1743, + [1760] = 1743, + [1761] = 1723, + [1762] = 1712, + [1763] = 1715, + [1764] = 1711, + [1765] = 1708, + [1766] = 1717, + [1767] = 1711, + [1768] = 1721, + [1769] = 1718, + [1770] = 1743, + [1771] = 1721, + [1772] = 1710, + [1773] = 1714, + [1774] = 1713, + [1775] = 1719, + [1776] = 1710, + [1777] = 1719, + [1778] = 16, + [1779] = 1779, + [1780] = 15, + [1781] = 35, + [1782] = 44, + [1783] = 1783, + [1784] = 1784, + [1785] = 17, + [1786] = 1786, + [1787] = 1787, + [1788] = 1788, + [1789] = 1789, + [1790] = 1790, + [1791] = 1791, + [1792] = 1792, + [1793] = 1793, + [1794] = 1794, + [1795] = 1793, + [1796] = 1793, + [1797] = 1794, + [1798] = 1794, [1799] = 1799, - [1800] = 1800, - [1801] = 1801, - [1802] = 1802, - [1803] = 1803, + [1800] = 1794, + [1801] = 1793, + [1802] = 1793, + [1803] = 1794, [1804] = 1804, - [1805] = 1805, + [1805] = 1804, [1806] = 1806, [1807] = 1807, [1808] = 1808, - [1809] = 1807, + [1809] = 1806, [1810] = 1810, - [1811] = 1810, - [1812] = 1807, - [1813] = 1810, - [1814] = 1810, - [1815] = 1807, - [1816] = 1807, - [1817] = 1810, - [1818] = 1818, + [1811] = 1804, + [1812] = 1812, + [1813] = 1813, + [1814] = 1814, + [1815] = 1815, + [1816] = 1806, + [1817] = 1817, + [1818] = 1808, [1819] = 1819, - [1820] = 1820, - [1821] = 1821, - [1822] = 1821, - [1823] = 1823, - [1824] = 1820, - [1825] = 1825, - [1826] = 1821, - [1827] = 1827, - [1828] = 1828, - [1829] = 1825, - [1830] = 1819, - [1831] = 1831, - [1832] = 1832, - [1833] = 1825, - [1834] = 1825, + [1820] = 1814, + [1821] = 1814, + [1822] = 1814, + [1823] = 1808, + [1824] = 1806, + [1825] = 1814, + [1826] = 1826, + [1827] = 1808, + [1828] = 1804, + [1829] = 1829, + [1830] = 1806, + [1831] = 1804, + [1832] = 1808, + [1833] = 1833, + [1834] = 1834, [1835] = 1835, - [1836] = 1821, - [1837] = 1837, - [1838] = 1820, - [1839] = 1821, - [1840] = 1840, - [1841] = 1825, - [1842] = 1819, - [1843] = 1820, - [1844] = 1820, - [1845] = 1819, - [1846] = 1819, - [1847] = 1847, - [1848] = 1848, - [1849] = 1849, - [1850] = 1850, + [1836] = 1836, + [1837] = 1834, + [1838] = 1833, + [1839] = 1839, + [1840] = 1836, + [1841] = 1836, + [1842] = 1834, + [1843] = 1836, + [1844] = 1839, + [1845] = 1834, + [1846] = 1846, + [1847] = 1834, + [1848] = 1836, + [1849] = 1835, + [1850] = 1846, [1851] = 1851, - [1852] = 1849, - [1853] = 1850, - [1854] = 1854, + [1852] = 1839, + [1853] = 1839, + [1854] = 1839, [1855] = 1855, - [1856] = 1848, + [1856] = 1836, [1857] = 1857, - [1858] = 1855, - [1859] = 1850, - [1860] = 1848, - [1861] = 1855, - [1862] = 1851, - [1863] = 1848, - [1864] = 1854, - [1865] = 1865, - [1866] = 1818, - [1867] = 1851, - [1868] = 1868, - [1869] = 1854, - [1870] = 1851, - [1871] = 1849, - [1872] = 1854, - [1873] = 1851, - [1874] = 1848, - [1875] = 1849, - [1876] = 1850, - [1877] = 1850, - [1878] = 1849, - [1879] = 1855, - [1880] = 1849, + [1858] = 1833, + [1859] = 1835, + [1860] = 1833, + [1861] = 1846, + [1862] = 1839, + [1863] = 1834, + [1864] = 1835, + [1865] = 1846, + [1866] = 1846, + [1867] = 1834, + [1868] = 1833, + [1869] = 1839, + [1870] = 1835, + [1871] = 1836, + [1872] = 1835, + [1873] = 1835, + [1874] = 1874, + [1875] = 1875, + [1876] = 1876, + [1877] = 1877, + [1878] = 1878, + [1879] = 1879, + [1880] = 1807, [1881] = 1881, - [1882] = 1854, - [1883] = 1850, - [1884] = 1850, - [1885] = 1848, - [1886] = 1854, - [1887] = 1848, - [1888] = 1854, - [1889] = 1855, - [1890] = 1849, - [1891] = 1891, + [1882] = 1875, + [1883] = 1883, + [1884] = 1884, + [1885] = 1885, + [1886] = 1875, + [1887] = 1884, + [1888] = 1888, + [1889] = 1883, + [1890] = 1890, + [1891] = 1885, [1892] = 1892, [1893] = 1893, [1894] = 1894, [1895] = 1895, - [1896] = 1896, - [1897] = 1895, - [1898] = 1891, - [1899] = 1899, - [1900] = 1900, - [1901] = 1895, - [1902] = 1900, - [1903] = 1895, - [1904] = 1904, + [1896] = 1875, + [1897] = 1883, + [1898] = 1883, + [1899] = 1884, + [1900] = 1875, + [1901] = 1885, + [1902] = 1902, + [1903] = 1883, + [1904] = 1885, [1905] = 1905, - [1906] = 1900, + [1906] = 1884, [1907] = 1907, [1908] = 1908, - [1909] = 1909, - [1910] = 1891, + [1909] = 1884, + [1910] = 1910, [1911] = 1911, [1912] = 1912, - [1913] = 1900, + [1913] = 1885, [1914] = 1914, - [1915] = 1895, + [1915] = 1915, [1916] = 1916, - [1917] = 1909, - [1918] = 1909, - [1919] = 1891, + [1917] = 1917, + [1918] = 1918, + [1919] = 1919, [1920] = 1920, [1921] = 1921, - [1922] = 1891, + [1922] = 1922, [1923] = 1923, [1924] = 1924, [1925] = 1925, - [1926] = 1909, - [1927] = 1900, - [1928] = 1909, - [1929] = 1847, - [1930] = 1930, + [1926] = 1924, + [1927] = 1927, + [1928] = 1928, + [1929] = 1929, + [1930] = 1927, [1931] = 1931, - [1932] = 1932, - [1933] = 1933, - [1934] = 1934, + [1932] = 1925, + [1933] = 1925, + [1934] = 1924, [1935] = 1935, - [1936] = 1936, - [1937] = 1937, - [1938] = 1938, + [1936] = 1927, + [1937] = 1928, + [1938] = 1928, [1939] = 1939, [1940] = 1940, - [1941] = 1941, + [1941] = 1928, [1942] = 1942, [1943] = 1943, [1944] = 1944, - [1945] = 1945, - [1946] = 1943, - [1947] = 1942, - [1948] = 1948, - [1949] = 1949, - [1950] = 1944, - [1951] = 3, - [1952] = 1940, - [1953] = 1953, - [1954] = 1945, - [1955] = 1955, - [1956] = 1945, - [1957] = 1941, - [1958] = 1942, - [1959] = 1959, - [1960] = 1941, - [1961] = 1959, - [1962] = 1949, - [1963] = 1953, + [1945] = 1943, + [1946] = 4, + [1947] = 1935, + [1948] = 1925, + [1949] = 1944, + [1950] = 1940, + [1951] = 1929, + [1952] = 1952, + [1953] = 1935, + [1954] = 1927, + [1955] = 1924, + [1956] = 7, + [1957] = 1957, + [1958] = 1952, + [1959] = 1952, + [1960] = 1928, + [1961] = 1929, + [1962] = 1929, + [1963] = 1963, [1964] = 1940, - [1965] = 1955, - [1966] = 1966, - [1967] = 1943, - [1968] = 1953, - [1969] = 1969, - [1970] = 1940, - [1971] = 1955, - [1972] = 1959, - [1973] = 1942, - [1974] = 1974, - [1975] = 1940, - [1976] = 1943, - [1977] = 1959, - [1978] = 1945, - [1979] = 1966, - [1980] = 1980, - [1981] = 1941, - [1982] = 1941, - [1983] = 1966, - [1984] = 1984, - [1985] = 1944, - [1986] = 1959, - [1987] = 1966, - [1988] = 1949, - [1989] = 1943, - [1990] = 1955, - [1991] = 1966, - [1992] = 1953, - [1993] = 1945, - [1994] = 1955, - [1995] = 1949, - [1996] = 2, - [1997] = 1944, - [1998] = 1942, - [1999] = 1949, - [2000] = 1953, + [1965] = 1943, + [1966] = 1942, + [1967] = 1967, + [1968] = 1944, + [1969] = 1925, + [1970] = 1944, + [1971] = 1971, + [1972] = 1942, + [1973] = 1935, + [1974] = 1924, + [1975] = 1935, + [1976] = 1927, + [1977] = 1942, + [1978] = 1943, + [1979] = 1952, + [1980] = 1944, + [1981] = 1940, + [1982] = 1943, + [1983] = 1940, + [1984] = 1929, + [1985] = 1942, + [1986] = 1952, + [1987] = 1987, + [1988] = 1988, + [1989] = 1989, + [1990] = 1990, + [1991] = 1991, + [1992] = 1992, + [1993] = 1993, + [1994] = 1994, + [1995] = 1995, + [1996] = 1990, + [1997] = 1997, + [1998] = 1987, + [1999] = 1999, + [2000] = 2000, [2001] = 2001, - [2002] = 1944, + [2002] = 2002, [2003] = 2003, - [2004] = 2004, - [2005] = 2005, - [2006] = 2006, + [2004] = 2001, + [2005] = 2001, + [2006] = 1988, [2007] = 2007, - [2008] = 2008, - [2009] = 2009, - [2010] = 2009, + [2008] = 2000, + [2009] = 2003, + [2010] = 2010, [2011] = 2011, - [2012] = 2012, - [2013] = 2003, + [2012] = 2001, + [2013] = 2002, [2014] = 2014, - [2015] = 2003, - [2016] = 2014, - [2017] = 2008, - [2018] = 2018, + [2015] = 2007, + [2016] = 2001, + [2017] = 2017, + [2018] = 1995, [2019] = 2019, - [2020] = 2008, + [2020] = 1988, [2021] = 2021, [2022] = 2022, - [2023] = 2018, - [2024] = 2024, - [2025] = 2025, - [2026] = 2006, - [2027] = 2005, - [2028] = 2014, - [2029] = 2029, - [2030] = 2030, - [2031] = 2014, - [2032] = 2019, - [2033] = 2033, - [2034] = 2019, + [2023] = 2023, + [2024] = 1999, + [2025] = 2001, + [2026] = 2017, + [2027] = 2002, + [2028] = 1989, + [2029] = 1990, + [2030] = 2001, + [2031] = 2000, + [2032] = 1994, + [2033] = 2023, + [2034] = 1987, [2035] = 2035, - [2036] = 2033, - [2037] = 2037, - [2038] = 2006, - [2039] = 2008, - [2040] = 2040, - [2041] = 2021, - [2042] = 2004, - [2043] = 2008, - [2044] = 2021, - [2045] = 2007, - [2046] = 2033, - [2047] = 2047, - [2048] = 2007, - [2049] = 2049, - [2050] = 2050, - [2051] = 2029, + [2036] = 11, + [2037] = 2007, + [2038] = 1992, + [2039] = 1989, + [2040] = 2002, + [2041] = 2007, + [2042] = 2003, + [2043] = 1990, + [2044] = 1995, + [2045] = 1994, + [2046] = 2046, + [2047] = 1990, + [2048] = 1997, + [2049] = 1995, + [2050] = 1997, + [2051] = 1994, [2052] = 2052, - [2053] = 2021, - [2054] = 2004, - [2055] = 2011, - [2056] = 2005, - [2057] = 2029, - [2058] = 2040, - [2059] = 2018, - [2060] = 2030, - [2061] = 2019, - [2062] = 2009, - [2063] = 2050, - [2064] = 2004, - [2065] = 2050, - [2066] = 2012, - [2067] = 2007, - [2068] = 2012, - [2069] = 2003, - [2070] = 2030, - [2071] = 2071, + [2053] = 2001, + [2054] = 1992, + [2055] = 2002, + [2056] = 2056, + [2057] = 2021, + [2058] = 1994, + [2059] = 1993, + [2060] = 1995, + [2061] = 1999, + [2062] = 2021, + [2063] = 1987, + [2064] = 2003, + [2065] = 1993, + [2066] = 2066, + [2067] = 2023, + [2068] = 2007, + [2069] = 2021, + [2070] = 1999, + [2071] = 2000, [2072] = 2072, - [2073] = 2040, - [2074] = 2011, - [2075] = 2005, - [2076] = 2029, - [2077] = 2018, - [2078] = 2050, - [2079] = 2009, - [2080] = 2050, - [2081] = 2030, - [2082] = 2003, + [2073] = 2023, + [2074] = 2074, + [2075] = 2017, + [2076] = 2003, + [2077] = 1987, + [2078] = 2017, + [2079] = 1988, + [2080] = 1989, + [2081] = 1992, + [2082] = 2082, [2083] = 2083, - [2084] = 2040, - [2085] = 2040, - [2086] = 2033, - [2087] = 2087, - [2088] = 2012, - [2089] = 2011, - [2090] = 2006, - [2091] = 2004, - [2092] = 2006, - [2093] = 4, - [2094] = 2006, - [2095] = 2007, - [2096] = 2009, - [2097] = 2006, - [2098] = 2014, - [2099] = 2018, - [2100] = 2029, - [2101] = 2011, - [2102] = 2033, + [2084] = 1997, + [2085] = 2023, + [2086] = 1993, + [2087] = 1989, + [2088] = 1992, + [2089] = 2000, + [2090] = 1999, + [2091] = 1997, + [2092] = 2092, + [2093] = 1993, + [2094] = 2021, + [2095] = 2095, + [2096] = 1988, + [2097] = 2017, + [2098] = 2098, + [2099] = 2099, + [2100] = 24, + [2101] = 2101, + [2102] = 2102, [2103] = 2103, [2104] = 2104, [2105] = 2105, [2106] = 2106, - [2107] = 2006, - [2108] = 2030, - [2109] = 2021, + [2107] = 2107, + [2108] = 37, + [2109] = 2109, [2110] = 2110, - [2111] = 2012, - [2112] = 2019, - [2113] = 2005, - [2114] = 2006, + [2111] = 2111, + [2112] = 2101, + [2113] = 2113, + [2114] = 2114, [2115] = 2115, [2116] = 2116, - [2117] = 2117, - [2118] = 2118, - [2119] = 2118, - [2120] = 2120, - [2121] = 2115, - [2122] = 2122, - [2123] = 2116, + [2117] = 2115, + [2118] = 2114, + [2119] = 2113, + [2120] = 2101, + [2121] = 2101, + [2122] = 2098, + [2123] = 2107, [2124] = 2124, [2125] = 2125, - [2126] = 2120, - [2127] = 2127, - [2128] = 2118, - [2129] = 2118, - [2130] = 2130, - [2131] = 2131, - [2132] = 2132, - [2133] = 2125, - [2134] = 2115, - [2135] = 2118, - [2136] = 2127, - [2137] = 2137, - [2138] = 2132, - [2139] = 2137, + [2126] = 2114, + [2127] = 2114, + [2128] = 2128, + [2129] = 2114, + [2130] = 2124, + [2131] = 2116, + [2132] = 2111, + [2133] = 2098, + [2134] = 2124, + [2135] = 2110, + [2136] = 2136, + [2137] = 2115, + [2138] = 2107, + [2139] = 2106, [2140] = 2140, - [2141] = 2118, + [2141] = 2141, [2142] = 2142, - [2143] = 2116, - [2144] = 2120, - [2145] = 2131, - [2146] = 32, - [2147] = 2137, - [2148] = 2148, - [2149] = 2149, - [2150] = 2116, - [2151] = 2127, - [2152] = 2117, - [2153] = 2153, - [2154] = 2140, + [2143] = 2107, + [2144] = 2144, + [2145] = 2116, + [2146] = 2107, + [2147] = 2104, + [2148] = 2111, + [2149] = 2136, + [2150] = 2115, + [2151] = 2110, + [2152] = 2101, + [2153] = 2106, + [2154] = 2106, [2155] = 2155, - [2156] = 2117, - [2157] = 2157, - [2158] = 2140, - [2159] = 2159, - [2160] = 2117, - [2161] = 3, - [2162] = 2162, - [2163] = 2131, - [2164] = 2120, - [2165] = 2, - [2166] = 2166, - [2167] = 2132, - [2168] = 2140, - [2169] = 2118, - [2170] = 2170, - [2171] = 2137, - [2172] = 2116, - [2173] = 2122, - [2174] = 2174, - [2175] = 2137, - [2176] = 2170, - [2177] = 2170, - [2178] = 2115, - [2179] = 31, - [2180] = 2125, - [2181] = 2127, - [2182] = 2122, - [2183] = 2131, - [2184] = 2120, - [2185] = 2140, - [2186] = 2118, - [2187] = 2132, - [2188] = 2117, - [2189] = 2122, + [2156] = 2104, + [2157] = 2136, + [2158] = 2110, + [2159] = 4, + [2160] = 2113, + [2161] = 7, + [2162] = 2104, + [2163] = 2124, + [2164] = 2114, + [2165] = 2115, + [2166] = 2111, + [2167] = 2098, + [2168] = 2168, + [2169] = 2113, + [2170] = 2114, + [2171] = 2116, + [2172] = 2098, + [2173] = 2173, + [2174] = 2116, + [2175] = 2111, + [2176] = 2136, + [2177] = 2110, + [2178] = 2104, + [2179] = 2106, + [2180] = 2124, + [2181] = 2181, + [2182] = 2136, + [2183] = 2183, + [2184] = 2113, + [2185] = 2185, + [2186] = 2186, + [2187] = 2187, + [2188] = 2186, + [2189] = 2189, [2190] = 2190, - [2191] = 2125, + [2191] = 2191, [2192] = 2192, [2193] = 2193, - [2194] = 2170, - [2195] = 2170, + [2194] = 2194, + [2195] = 2195, [2196] = 2196, - [2197] = 2115, - [2198] = 2122, - [2199] = 2125, - [2200] = 2131, - [2201] = 2127, - [2202] = 2132, + [2197] = 2197, + [2198] = 2198, + [2199] = 2199, + [2200] = 2185, + [2201] = 2201, + [2202] = 2202, [2203] = 2203, [2204] = 2204, [2205] = 2205, - [2206] = 2205, - [2207] = 2205, - [2208] = 2208, + [2206] = 2192, + [2207] = 2207, + [2208] = 2190, [2209] = 2209, [2210] = 2210, - [2211] = 2211, + [2211] = 2187, [2212] = 2212, [2213] = 2213, [2214] = 2214, [2215] = 2215, [2216] = 2216, - [2217] = 2211, - [2218] = 2216, - [2219] = 2215, - [2220] = 2220, - [2221] = 2221, - [2222] = 2222, - [2223] = 2223, - [2224] = 2224, - [2225] = 2225, - [2226] = 2226, - [2227] = 2212, - [2228] = 2208, - [2229] = 2229, - [2230] = 2213, - [2231] = 2231, - [2232] = 2209, - [2233] = 2225, - [2234] = 2229, - [2235] = 2210, - [2236] = 2231, - [2237] = 2224, - [2238] = 2238, - [2239] = 2214, - [2240] = 2240, - [2241] = 2241, - [2242] = 2225, - [2243] = 2243, - [2244] = 2205, - [2245] = 2245, - [2246] = 2214, - [2247] = 2215, - [2248] = 2248, - [2249] = 2216, - [2250] = 2226, - [2251] = 2238, - [2252] = 2252, - [2253] = 2253, - [2254] = 2223, - [2255] = 2255, - [2256] = 2223, - [2257] = 2229, - [2258] = 2204, - [2259] = 2248, - [2260] = 2204, - [2261] = 2226, - [2262] = 2245, - [2263] = 2208, - [2264] = 2204, - [2265] = 2265, - [2266] = 2266, - [2267] = 2231, - [2268] = 2253, - [2269] = 2224, - [2270] = 2211, - [2271] = 2212, - [2272] = 2243, - [2273] = 2213, - [2274] = 2238, - [2275] = 2213, - [2276] = 2224, - [2277] = 2226, - [2278] = 2210, - [2279] = 2212, + [2217] = 2217, + [2218] = 2215, + [2219] = 2216, + [2220] = 2213, + [2221] = 2212, + [2222] = 2210, + [2223] = 2209, + [2224] = 2202, + [2225] = 2199, + [2226] = 2198, + [2227] = 2196, + [2228] = 2195, + [2229] = 2194, + [2230] = 2193, + [2231] = 2207, + [2232] = 2205, + [2233] = 2187, + [2234] = 2234, + [2235] = 2192, + [2236] = 2189, + [2237] = 2186, + [2238] = 2189, + [2239] = 2186, + [2240] = 2191, + [2241] = 2207, + [2242] = 2205, + [2243] = 2205, + [2244] = 2207, + [2245] = 2234, + [2246] = 2212, + [2247] = 2213, + [2248] = 2215, + [2249] = 11, + [2250] = 2216, + [2251] = 2210, + [2252] = 2202, + [2253] = 2185, + [2254] = 2199, + [2255] = 2198, + [2256] = 2209, + [2257] = 2212, + [2258] = 2213, + [2259] = 2202, + [2260] = 2185, + [2261] = 2199, + [2262] = 2215, + [2263] = 2198, + [2264] = 2191, + [2265] = 2216, + [2266] = 2196, + [2267] = 2195, + [2268] = 2194, + [2269] = 2193, + [2270] = 2187, + [2271] = 2234, + [2272] = 2192, + [2273] = 2193, + [2274] = 2194, + [2275] = 2189, + [2276] = 2186, + [2277] = 2234, + [2278] = 2278, + [2279] = 2191, [2280] = 2280, - [2281] = 2238, - [2282] = 2209, - [2283] = 2223, - [2284] = 2248, - [2285] = 2243, - [2286] = 2245, - [2287] = 2211, - [2288] = 2248, - [2289] = 2241, - [2290] = 2052, - [2291] = 2238, - [2292] = 4, - [2293] = 2226, - [2294] = 2204, - [2295] = 2220, + [2281] = 2195, + [2282] = 2196, + [2283] = 2283, + [2284] = 2284, + [2285] = 2210, + [2286] = 2209, + [2287] = 2287, + [2288] = 2197, + [2289] = 2289, + [2290] = 2290, + [2291] = 2205, + [2292] = 2207, + [2293] = 2212, + [2294] = 2213, + [2295] = 2215, [2296] = 2296, - [2297] = 2297, - [2298] = 2241, - [2299] = 2245, - [2300] = 2248, - [2301] = 2243, - [2302] = 2225, - [2303] = 2223, - [2304] = 2224, - [2305] = 2305, - [2306] = 2245, - [2307] = 2213, - [2308] = 2214, - [2309] = 2210, - [2310] = 2212, - [2311] = 2209, - [2312] = 2211, - [2313] = 2208, - [2314] = 2314, - [2315] = 2243, - [2316] = 2241, - [2317] = 2205, - [2318] = 2231, - [2319] = 2229, - [2320] = 2225, - [2321] = 2022, - [2322] = 2215, - [2323] = 2209, - [2324] = 2210, - [2325] = 2216, - [2326] = 2241, - [2327] = 2208, - [2328] = 2229, - [2329] = 2231, - [2330] = 2214, - [2331] = 2216, - [2332] = 2215, - [2333] = 32, - [2334] = 2334, - [2335] = 2335, - [2336] = 2336, - [2337] = 2334, + [2297] = 2083, + [2298] = 2216, + [2299] = 2046, + [2300] = 2210, + [2301] = 2209, + [2302] = 2202, + [2303] = 2185, + [2304] = 2199, + [2305] = 2198, + [2306] = 2196, + [2307] = 2195, + [2308] = 2194, + [2309] = 2193, + [2310] = 2187, + [2311] = 2234, + [2312] = 2192, + [2313] = 2191, + [2314] = 2189, + [2315] = 2315, + [2316] = 2316, + [2317] = 2315, + [2318] = 2315, + [2319] = 2319, + [2320] = 2315, + [2321] = 2321, + [2322] = 2322, + [2323] = 2315, + [2324] = 2324, + [2325] = 2325, + [2326] = 2326, + [2327] = 24, + [2328] = 2322, + [2329] = 2319, + [2330] = 37, + [2331] = 2319, + [2332] = 2326, + [2333] = 2319, + [2334] = 2326, + [2335] = 2322, + [2336] = 2325, + [2337] = 2324, [2338] = 2338, - [2339] = 31, - [2340] = 2340, - [2341] = 2340, - [2342] = 2336, - [2343] = 2336, - [2344] = 2335, - [2345] = 2345, - [2346] = 2346, - [2347] = 2340, - [2348] = 2336, - [2349] = 2340, - [2350] = 2334, - [2351] = 2335, + [2339] = 2319, + [2340] = 2326, + [2341] = 2324, + [2342] = 2342, + [2343] = 2343, + [2344] = 2325, + [2345] = 2325, + [2346] = 2325, + [2347] = 2324, + [2348] = 2322, + [2349] = 2324, + [2350] = 2326, + [2351] = 2351, [2352] = 2352, - [2353] = 2334, - [2354] = 2346, - [2355] = 2346, + [2353] = 2322, + [2354] = 2354, + [2355] = 1090, [2356] = 2356, - [2357] = 2352, - [2358] = 2340, - [2359] = 2359, - [2360] = 2335, + [2357] = 2357, + [2358] = 2358, + [2359] = 2356, + [2360] = 2360, [2361] = 2361, - [2362] = 2352, - [2363] = 2336, - [2364] = 2334, - [2365] = 2335, - [2366] = 2352, - [2367] = 2367, - [2368] = 2368, - [2369] = 2352, - [2370] = 2346, - [2371] = 2346, + [2362] = 2362, + [2363] = 2363, + [2364] = 2364, + [2365] = 2365, + [2366] = 1810, + [2367] = 2354, + [2368] = 2358, + [2369] = 2369, + [2370] = 2356, + [2371] = 2371, [2372] = 2372, - [2373] = 1181, - [2374] = 2374, + [2373] = 2373, + [2374] = 824, [2375] = 2375, - [2376] = 2376, + [2376] = 858, [2377] = 2377, - [2378] = 2377, - [2379] = 2374, + [2378] = 2378, + [2379] = 2379, [2380] = 2380, - [2381] = 2381, + [2381] = 2357, [2382] = 2382, - [2383] = 2372, + [2383] = 2383, [2384] = 2384, - [2385] = 2381, - [2386] = 1160, + [2385] = 2385, + [2386] = 959, [2387] = 2387, - [2388] = 1159, - [2389] = 1185, + [2388] = 2388, + [2389] = 2389, [2390] = 2390, - [2391] = 1187, - [2392] = 1188, - [2393] = 1190, + [2391] = 2391, + [2392] = 2392, + [2393] = 958, [2394] = 2394, - [2395] = 2395, - [2396] = 2384, - [2397] = 2397, + [2395] = 1034, + [2396] = 2396, + [2397] = 855, [2398] = 2398, - [2399] = 1195, - [2400] = 1196, - [2401] = 1198, - [2402] = 2402, - [2403] = 1200, - [2404] = 2404, - [2405] = 1201, - [2406] = 2395, - [2407] = 1202, - [2408] = 1203, - [2409] = 2409, - [2410] = 2394, - [2411] = 2376, - [2412] = 1204, - [2413] = 1205, - [2414] = 2414, - [2415] = 2415, - [2416] = 2394, - [2417] = 2417, - [2418] = 2418, - [2419] = 2380, - [2420] = 1165, - [2421] = 1164, - [2422] = 2422, - [2423] = 1163, - [2424] = 1162, - [2425] = 1161, - [2426] = 2426, - [2427] = 2414, - [2428] = 2398, - [2429] = 1142, - [2430] = 1131, - [2431] = 2374, - [2432] = 1130, - [2433] = 1124, - [2434] = 1109, - [2435] = 2435, - [2436] = 1077, - [2437] = 1056, - [2438] = 1057, - [2439] = 2377, - [2440] = 2440, - [2441] = 2441, - [2442] = 1171, - [2443] = 2415, - [2444] = 2444, - [2445] = 2382, - [2446] = 2414, - [2447] = 2372, - [2448] = 2448, - [2449] = 2380, - [2450] = 2450, - [2451] = 2395, - [2452] = 2381, - [2453] = 2402, - [2454] = 2376, - [2455] = 2455, - [2456] = 2456, - [2457] = 2457, - [2458] = 2402, - [2459] = 2394, - [2460] = 2398, - [2461] = 2382, - [2462] = 2462, - [2463] = 2381, - [2464] = 2376, - [2465] = 2465, - [2466] = 1835, - [2467] = 2376, - [2468] = 2381, - [2469] = 2384, - [2470] = 2372, - [2471] = 2382, - [2472] = 2395, + [2399] = 854, + [2400] = 2373, + [2401] = 2398, + [2402] = 2354, + [2403] = 2390, + [2404] = 985, + [2405] = 2405, + [2406] = 2406, + [2407] = 2391, + [2408] = 2385, + [2409] = 2364, + [2410] = 2362, + [2411] = 2411, + [2412] = 2357, + [2413] = 837, + [2414] = 836, + [2415] = 835, + [2416] = 2388, + [2417] = 834, + [2418] = 2389, + [2419] = 1070, + [2420] = 2420, + [2421] = 2421, + [2422] = 830, + [2423] = 2423, + [2424] = 2354, + [2425] = 2358, + [2426] = 1089, + [2427] = 1088, + [2428] = 2428, + [2429] = 1086, + [2430] = 1078, + [2431] = 2389, + [2432] = 2364, + [2433] = 1040, + [2434] = 1068, + [2435] = 2362, + [2436] = 2371, + [2437] = 2437, + [2438] = 2438, + [2439] = 984, + [2440] = 2371, + [2441] = 2391, + [2442] = 1066, + [2443] = 2385, + [2444] = 2388, + [2445] = 2437, + [2446] = 2390, + [2447] = 2356, + [2448] = 2438, + [2449] = 1064, + [2450] = 2428, + [2451] = 2390, + [2452] = 2428, + [2453] = 2453, + [2454] = 2371, + [2455] = 2362, + [2456] = 2364, + [2457] = 2357, + [2458] = 2438, + [2459] = 2437, + [2460] = 2356, + [2461] = 1041, + [2462] = 2385, + [2463] = 2391, + [2464] = 1042, + [2465] = 2391, + [2466] = 2466, + [2467] = 2438, + [2468] = 2438, + [2469] = 2373, + [2470] = 2437, + [2471] = 2354, + [2472] = 2388, [2473] = 2473, - [2474] = 2374, - [2475] = 2380, - [2476] = 2377, - [2477] = 2390, - [2478] = 2377, - [2479] = 2374, - [2480] = 2480, - [2481] = 2384, - [2482] = 2415, - [2483] = 2483, - [2484] = 2384, - [2485] = 2485, - [2486] = 2394, - [2487] = 2380, - [2488] = 2402, - [2489] = 2382, - [2490] = 2490, - [2491] = 2372, - [2492] = 2492, - [2493] = 2493, - [2494] = 2494, - [2495] = 2395, - [2496] = 2402, - [2497] = 2492, - [2498] = 2493, - [2499] = 2492, + [2474] = 2364, + [2475] = 2362, + [2476] = 2385, + [2477] = 2358, + [2478] = 2371, + [2479] = 2357, + [2480] = 2428, + [2481] = 2390, + [2482] = 2482, + [2483] = 1009, + [2484] = 2428, + [2485] = 2373, + [2486] = 2358, + [2487] = 2437, + [2488] = 2373, + [2489] = 2389, + [2490] = 2388, + [2491] = 1038, + [2492] = 1039, + [2493] = 953, + [2494] = 2389, + [2495] = 2495, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, + [2499] = 2499, [2500] = 2500, - [2501] = 2414, - [2502] = 2493, - [2503] = 2414, - [2504] = 2492, - [2505] = 2493, - [2506] = 2493, - [2507] = 2398, - [2508] = 2398, - [2509] = 2415, - [2510] = 2415, - [2511] = 2511, - [2512] = 2492, + [2501] = 2501, + [2502] = 2502, + [2503] = 2503, + [2504] = 2504, + [2505] = 2505, + [2506] = 2506, + [2507] = 2505, + [2508] = 2508, + [2509] = 2509, + [2510] = 2510, + [2511] = 2495, + [2512] = 2512, [2513] = 2513, - [2514] = 2514, + [2514] = 2512, [2515] = 2515, [2516] = 2516, [2517] = 2517, - [2518] = 2517, + [2518] = 2518, [2519] = 2519, [2520] = 2520, [2521] = 2521, [2522] = 2522, [2523] = 2523, - [2524] = 2524, - [2525] = 2525, - [2526] = 2526, + [2524] = 2495, + [2525] = 2523, + [2526] = 2496, [2527] = 2527, - [2528] = 2516, - [2529] = 2514, - [2530] = 2530, - [2531] = 2515, - [2532] = 2532, + [2528] = 2528, + [2529] = 2529, + [2530] = 2509, + [2531] = 2497, + [2532] = 2501, [2533] = 2533, - [2534] = 2534, - [2535] = 2535, - [2536] = 2515, - [2537] = 2519, - [2538] = 2520, + [2534] = 2502, + [2535] = 2527, + [2536] = 2503, + [2537] = 2537, + [2538] = 2505, [2539] = 2539, [2540] = 2540, - [2541] = 2541, - [2542] = 2542, - [2543] = 2543, - [2544] = 2544, - [2545] = 2545, - [2546] = 2546, - [2547] = 2544, - [2548] = 2546, - [2549] = 2523, - [2550] = 2524, - [2551] = 2551, - [2552] = 2513, - [2553] = 2545, - [2554] = 2554, - [2555] = 2555, - [2556] = 2556, - [2557] = 2513, + [2541] = 2509, + [2542] = 2537, + [2543] = 2529, + [2544] = 2496, + [2545] = 2522, + [2546] = 2528, + [2547] = 2547, + [2548] = 2515, + [2549] = 2513, + [2550] = 2550, + [2551] = 2506, + [2552] = 2552, + [2553] = 2508, + [2554] = 2516, + [2555] = 2523, + [2556] = 2540, + [2557] = 2539, [2558] = 2558, - [2559] = 2517, - [2560] = 2560, - [2561] = 2561, - [2562] = 2562, - [2563] = 2532, - [2564] = 2560, - [2565] = 2535, - [2566] = 2566, - [2567] = 2567, - [2568] = 2519, - [2569] = 2520, - [2570] = 2566, - [2571] = 2521, - [2572] = 2524, - [2573] = 2523, - [2574] = 2566, - [2575] = 2521, - [2576] = 2534, - [2577] = 2523, - [2578] = 2524, - [2579] = 2560, - [2580] = 2562, - [2581] = 2522, - [2582] = 2522, - [2583] = 2533, - [2584] = 2584, - [2585] = 2530, - [2586] = 2514, - [2587] = 2562, - [2588] = 2539, - [2589] = 2525, - [2590] = 2527, - [2591] = 2515, - [2592] = 2526, - [2593] = 2516, - [2594] = 2526, - [2595] = 2554, - [2596] = 2596, - [2597] = 2527, - [2598] = 2525, - [2599] = 2532, - [2600] = 2542, - [2601] = 2535, - [2602] = 2541, - [2603] = 2539, - [2604] = 2540, - [2605] = 2540, - [2606] = 2539, - [2607] = 2540, - [2608] = 2535, - [2609] = 2514, - [2610] = 2522, - [2611] = 2530, - [2612] = 2532, - [2613] = 2521, - [2614] = 2541, - [2615] = 2516, - [2616] = 2525, - [2617] = 2526, - [2618] = 2520, - [2619] = 2527, - [2620] = 2519, - [2621] = 2533, - [2622] = 2544, - [2623] = 2623, - [2624] = 2546, - [2625] = 2545, - [2626] = 2517, - [2627] = 2542, - [2628] = 2554, - [2629] = 2534, - [2630] = 2513, - [2631] = 2631, - [2632] = 2541, - [2633] = 2562, - [2634] = 2560, + [2559] = 2505, + [2560] = 2504, + [2561] = 2498, + [2562] = 2499, + [2563] = 2563, + [2564] = 2508, + [2565] = 2513, + [2566] = 2503, + [2567] = 2539, + [2568] = 2528, + [2569] = 2527, + [2570] = 2502, + [2571] = 2501, + [2572] = 2497, + [2573] = 2522, + [2574] = 2574, + [2575] = 2496, + [2576] = 2529, + [2577] = 2577, + [2578] = 2509, + [2579] = 2579, + [2580] = 2497, + [2581] = 2501, + [2582] = 2502, + [2583] = 2523, + [2584] = 2540, + [2585] = 2495, + [2586] = 2509, + [2587] = 2506, + [2588] = 2588, + [2589] = 2504, + [2590] = 2521, + [2591] = 2503, + [2592] = 2504, + [2593] = 2505, + [2594] = 2520, + [2595] = 2519, + [2596] = 2499, + [2597] = 2498, + [2598] = 2537, + [2599] = 2518, + [2600] = 2504, + [2601] = 2517, + [2602] = 2602, + [2603] = 2496, + [2604] = 2516, + [2605] = 2522, + [2606] = 2515, + [2607] = 2502, + [2608] = 2513, + [2609] = 2503, + [2610] = 2501, + [2611] = 2512, + [2612] = 2508, + [2613] = 2499, + [2614] = 2519, + [2615] = 2520, + [2616] = 2506, + [2617] = 2521, + [2618] = 2498, + [2619] = 2512, + [2620] = 2517, + [2621] = 2518, + [2622] = 2622, + [2623] = 2497, + [2624] = 2515, + [2625] = 2516, + [2626] = 2506, + [2627] = 2517, + [2628] = 2518, + [2629] = 2629, + [2630] = 2508, + [2631] = 2529, + [2632] = 2632, + [2633] = 2522, + [2634] = 2519, [2635] = 2635, [2636] = 2636, - [2637] = 2544, - [2638] = 2566, - [2639] = 2515, - [2640] = 2542, - [2641] = 2566, - [2642] = 2642, - [2643] = 2546, - [2644] = 2560, - [2645] = 2562, - [2646] = 2545, - [2647] = 2545, - [2648] = 2534, - [2649] = 2533, - [2650] = 2513, - [2651] = 2554, - [2652] = 2530, - [2653] = 2546, - [2654] = 2654, - [2655] = 2514, - [2656] = 2544, - [2657] = 2657, - [2658] = 2542, - [2659] = 2541, - [2660] = 2540, - [2661] = 2527, - [2662] = 2526, - [2663] = 2539, - [2664] = 2525, - [2665] = 2535, - [2666] = 2532, + [2637] = 2512, + [2638] = 2515, + [2639] = 2520, + [2640] = 2537, + [2641] = 2641, + [2642] = 2540, + [2643] = 2539, + [2644] = 2516, + [2645] = 2499, + [2646] = 2521, + [2647] = 2498, + [2648] = 2513, + [2649] = 2523, + [2650] = 2650, + [2651] = 2517, + [2652] = 2495, + [2653] = 2518, + [2654] = 2537, + [2655] = 2540, + [2656] = 2528, + [2657] = 2539, + [2658] = 2519, + [2659] = 2520, + [2660] = 2527, + [2661] = 2521, + [2662] = 2528, + [2663] = 2527, + [2664] = 2529, + [2665] = 2665, + [2666] = 2666, [2667] = 2667, - [2668] = 2516, - [2669] = 2554, - [2670] = 2522, - [2671] = 2521, - [2672] = 2524, - [2673] = 2523, - [2674] = 2520, - [2675] = 2519, - [2676] = 2517, + [2668] = 2668, + [2669] = 2669, + [2670] = 2670, + [2671] = 2671, + [2672] = 2672, + [2673] = 2671, + [2674] = 2674, + [2675] = 2675, + [2676] = 2676, [2677] = 2677, - [2678] = 2534, - [2679] = 2533, + [2678] = 2671, + [2679] = 2679, [2680] = 2680, [2681] = 2681, - [2682] = 2530, + [2682] = 2682, [2683] = 2683, [2684] = 2684, [2685] = 2685, [2686] = 2686, - [2687] = 2687, - [2688] = 2688, + [2687] = 2684, + [2688] = 2670, [2689] = 2689, [2690] = 2690, - [2691] = 2691, + [2691] = 2684, [2692] = 2692, [2693] = 2693, [2694] = 2694, [2695] = 2695, - [2696] = 2692, - [2697] = 2697, + [2696] = 2696, + [2697] = 2684, [2698] = 2698, [2699] = 2699, - [2700] = 2700, + [2700] = 2671, [2701] = 2701, [2702] = 2702, [2703] = 2703, [2704] = 2704, - [2705] = 2705, - [2706] = 2704, - [2707] = 2694, - [2708] = 2708, - [2709] = 2709, + [2705] = 2699, + [2706] = 2692, + [2707] = 2667, + [2708] = 2665, + [2709] = 2695, [2710] = 2710, [2711] = 2711, [2712] = 2712, [2713] = 2713, - [2714] = 2714, - [2715] = 2715, + [2714] = 2679, + [2715] = 2668, [2716] = 2716, - [2717] = 2717, + [2717] = 2702, [2718] = 2718, [2719] = 2719, - [2720] = 2720, + [2720] = 2690, [2721] = 2721, - [2722] = 2697, + [2722] = 2713, [2723] = 2723, [2724] = 2724, [2725] = 2725, - [2726] = 2726, - [2727] = 2727, - [2728] = 2701, + [2726] = 2675, + [2727] = 2724, + [2728] = 2693, [2729] = 2729, - [2730] = 2730, - [2731] = 2708, - [2732] = 2713, + [2730] = 2681, + [2731] = 2731, + [2732] = 2732, [2733] = 2733, - [2734] = 2710, + [2734] = 2665, [2735] = 2735, [2736] = 2736, - [2737] = 2737, - [2738] = 2738, - [2739] = 2683, - [2740] = 2740, - [2741] = 2741, - [2742] = 2718, - [2743] = 2743, - [2744] = 2718, + [2737] = 2669, + [2738] = 2667, + [2739] = 2682, + [2740] = 2686, + [2741] = 2725, + [2742] = 2742, + [2743] = 2704, + [2744] = 2667, [2745] = 2745, - [2746] = 2717, + [2746] = 2746, [2747] = 2747, - [2748] = 2683, - [2749] = 2749, - [2750] = 2686, - [2751] = 2735, - [2752] = 2752, - [2753] = 2712, - [2754] = 2754, - [2755] = 2755, - [2756] = 2718, - [2757] = 2757, - [2758] = 2691, - [2759] = 2702, + [2748] = 2748, + [2749] = 2745, + [2750] = 2750, + [2751] = 2701, + [2752] = 2703, + [2753] = 2704, + [2754] = 2699, + [2755] = 2692, + [2756] = 2703, + [2757] = 2695, + [2758] = 2711, + [2759] = 2759, [2760] = 2760, - [2761] = 2720, - [2762] = 2719, - [2763] = 2717, - [2764] = 2764, - [2765] = 2695, - [2766] = 2766, - [2767] = 2715, - [2768] = 2768, - [2769] = 2715, - [2770] = 2713, - [2771] = 2771, - [2772] = 2772, - [2773] = 2692, - [2774] = 2718, - [2775] = 2775, - [2776] = 2719, - [2777] = 2719, - [2778] = 2778, - [2779] = 2779, - [2780] = 2697, - [2781] = 2713, - [2782] = 2782, - [2783] = 2701, - [2784] = 2721, - [2785] = 2785, - [2786] = 2704, - [2787] = 2710, - [2788] = 2715, - [2789] = 2789, - [2790] = 2709, - [2791] = 2708, - [2792] = 2792, - [2793] = 2793, + [2761] = 2713, + [2762] = 2762, + [2763] = 2679, + [2764] = 2668, + [2765] = 2765, + [2766] = 2702, + [2767] = 2767, + [2768] = 2671, + [2769] = 2748, + [2770] = 2690, + [2771] = 2746, + [2772] = 2745, + [2773] = 2746, + [2774] = 2774, + [2775] = 2725, + [2776] = 2675, + [2777] = 2777, + [2778] = 2724, + [2779] = 2693, + [2780] = 2780, + [2781] = 2681, + [2782] = 2686, + [2783] = 2783, + [2784] = 2784, + [2785] = 2682, + [2786] = 2667, + [2787] = 2701, + [2788] = 2669, + [2789] = 2682, + [2790] = 2686, + [2791] = 2669, + [2792] = 2711, + [2793] = 2665, [2794] = 2794, - [2795] = 2695, - [2796] = 2705, - [2797] = 2720, - [2798] = 2709, - [2799] = 2760, - [2800] = 2694, - [2801] = 2715, - [2802] = 2697, + [2795] = 2684, + [2796] = 2796, + [2797] = 2797, + [2798] = 2745, + [2799] = 2681, + [2800] = 2746, + [2801] = 2693, + [2802] = 2748, [2803] = 2803, - [2804] = 2804, - [2805] = 2695, - [2806] = 2694, - [2807] = 2727, - [2808] = 2690, - [2809] = 2690, - [2810] = 2810, - [2811] = 2727, - [2812] = 2688, - [2813] = 2729, - [2814] = 2729, - [2815] = 2688, - [2816] = 2727, - [2817] = 2690, - [2818] = 2720, - [2819] = 2694, - [2820] = 2695, - [2821] = 2821, - [2822] = 2710, - [2823] = 2704, - [2824] = 2686, - [2825] = 2701, - [2826] = 2721, - [2827] = 2697, - [2828] = 2692, - [2829] = 2705, - [2830] = 2688, - [2831] = 2729, + [2804] = 2724, + [2805] = 2805, + [2806] = 2735, + [2807] = 2675, + [2808] = 2701, + [2809] = 2703, + [2810] = 2704, + [2811] = 2699, + [2812] = 2692, + [2813] = 2813, + [2814] = 2695, + [2815] = 2711, + [2816] = 2816, + [2817] = 2713, + [2818] = 2679, + [2819] = 2668, + [2820] = 2820, + [2821] = 2702, + [2822] = 2725, + [2823] = 2823, + [2824] = 2824, + [2825] = 2690, + [2826] = 2826, + [2827] = 2827, + [2828] = 2725, + [2829] = 2675, + [2830] = 2830, + [2831] = 2724, [2832] = 2832, [2833] = 2833, - [2834] = 2705, - [2835] = 2705, - [2836] = 2686, - [2837] = 2729, - [2838] = 2708, - [2839] = 2760, + [2834] = 2693, + [2835] = 2681, + [2836] = 2690, + [2837] = 2837, + [2838] = 2838, + [2839] = 2665, [2840] = 2840, - [2841] = 2709, + [2841] = 2748, [2842] = 2842, - [2843] = 2727, - [2844] = 2844, + [2843] = 2669, + [2844] = 2682, [2845] = 2845, - [2846] = 2846, - [2847] = 2847, - [2848] = 2720, - [2849] = 2710, - [2850] = 2708, - [2851] = 2851, - [2852] = 2717, - [2853] = 2719, + [2846] = 2686, + [2847] = 2702, + [2848] = 2848, + [2849] = 2849, + [2850] = 2745, + [2851] = 2746, + [2852] = 2852, + [2853] = 2748, [2854] = 2854, - [2855] = 2735, - [2856] = 2721, - [2857] = 2704, - [2858] = 2858, - [2859] = 2691, - [2860] = 2860, - [2861] = 2760, - [2862] = 2712, + [2855] = 2855, + [2856] = 2668, + [2857] = 2679, + [2858] = 2701, + [2859] = 2703, + [2860] = 2704, + [2861] = 2861, + [2862] = 2699, [2863] = 2863, - [2864] = 2686, - [2865] = 2691, - [2866] = 2735, - [2867] = 2713, + [2864] = 2692, + [2865] = 2865, + [2866] = 2695, + [2867] = 2711, [2868] = 2868, - [2869] = 2683, - [2870] = 2688, - [2871] = 2709, - [2872] = 2735, - [2873] = 2873, - [2874] = 2717, - [2875] = 2683, - [2876] = 2692, - [2877] = 2712, - [2878] = 2878, - [2879] = 2691, - [2880] = 2712, - [2881] = 2701, - [2882] = 2721, - [2883] = 2690, - [2884] = 2845, - [2885] = 2885, - [2886] = 2760, + [2869] = 2713, + [2870] = 2870, + [2871] = 2871, + [2872] = 2872, + [2873] = 44, + [2874] = 2874, + [2875] = 2875, + [2876] = 2876, + [2877] = 2877, + [2878] = 2874, + [2879] = 2879, + [2880] = 33, + [2881] = 2881, + [2882] = 2881, + [2883] = 2872, + [2884] = 2884, + [2885] = 2870, + [2886] = 2886, [2887] = 2887, [2888] = 2888, - [2889] = 2889, - [2890] = 2556, + [2889] = 2871, + [2890] = 2874, [2891] = 2891, - [2892] = 2654, - [2893] = 2893, + [2892] = 2875, + [2893] = 2879, [2894] = 2894, [2895] = 2895, - [2896] = 2657, + [2896] = 2896, [2897] = 2897, [2898] = 2898, - [2899] = 2899, + [2899] = 2876, [2900] = 2900, [2901] = 2901, - [2902] = 2901, - [2903] = 2903, - [2904] = 7, - [2905] = 2905, + [2902] = 2879, + [2903] = 2876, + [2904] = 2904, + [2905] = 2875, [2906] = 2906, [2907] = 2907, - [2908] = 2899, - [2909] = 2909, + [2908] = 2881, + [2909] = 2874, [2910] = 2910, - [2911] = 2909, - [2912] = 35, - [2913] = 2906, - [2914] = 2914, - [2915] = 2906, - [2916] = 2888, + [2911] = 2870, + [2912] = 2912, + [2913] = 2871, + [2914] = 2870, + [2915] = 2871, + [2916] = 2916, [2917] = 2897, - [2918] = 2918, - [2919] = 2919, + [2918] = 2907, + [2919] = 2896, [2920] = 2920, - [2921] = 2898, - [2922] = 27, - [2923] = 2889, - [2924] = 2924, - [2925] = 2906, - [2926] = 2926, - [2927] = 2927, + [2921] = 2897, + [2922] = 2906, + [2923] = 2907, + [2924] = 2874, + [2925] = 2641, + [2926] = 2896, + [2927] = 2897, [2928] = 2928, - [2929] = 2929, - [2930] = 2893, - [2931] = 2931, - [2932] = 2932, - [2933] = 2933, - [2934] = 2934, - [2935] = 2928, - [2936] = 2936, - [2937] = 2926, - [2938] = 2893, - [2939] = 2939, - [2940] = 2889, - [2941] = 2898, - [2942] = 2888, - [2943] = 2926, - [2944] = 2927, - [2945] = 2909, - [2946] = 2888, - [2947] = 2888, - [2948] = 2918, - [2949] = 2949, - [2950] = 2918, - [2951] = 2909, - [2952] = 2898, - [2953] = 2928, - [2954] = 2918, + [2929] = 2906, + [2930] = 2907, + [2931] = 2875, + [2932] = 2552, + [2933] = 2635, + [2934] = 2547, + [2935] = 2896, + [2936] = 2897, + [2937] = 2906, + [2938] = 2896, + [2939] = 2907, + [2940] = 2940, + [2941] = 2941, + [2942] = 2897, + [2943] = 2943, + [2944] = 2944, + [2945] = 2897, + [2946] = 2896, + [2947] = 2891, + [2948] = 2948, + [2949] = 2876, + [2950] = 2950, + [2951] = 16, + [2952] = 2952, + [2953] = 2881, + [2954] = 2879, [2955] = 2955, - [2956] = 9, - [2957] = 2920, - [2958] = 2889, - [2959] = 2909, - [2960] = 2901, - [2961] = 2893, - [2962] = 2962, - [2963] = 2963, + [2956] = 2875, + [2957] = 2957, + [2958] = 2958, + [2959] = 2959, + [2960] = 2881, + [2961] = 2896, + [2962] = 2897, + [2963] = 2879, [2964] = 2964, - [2965] = 2920, - [2966] = 2966, - [2967] = 2889, - [2968] = 2893, - [2969] = 2558, - [2970] = 2939, + [2965] = 2898, + [2966] = 2906, + [2967] = 2907, + [2968] = 2875, + [2969] = 2875, + [2970] = 2970, [2971] = 2971, - [2972] = 2972, - [2973] = 2901, - [2974] = 2920, + [2972] = 41, + [2973] = 2973, + [2974] = 2974, [2975] = 2975, - [2976] = 2889, - [2977] = 2909, + [2976] = 2876, + [2977] = 2975, [2978] = 2978, [2979] = 2979, - [2980] = 2980, - [2981] = 2901, - [2982] = 2918, - [2983] = 2920, + [2980] = 2975, + [2981] = 2981, + [2982] = 2982, + [2983] = 2975, [2984] = 2984, [2985] = 2985, - [2986] = 2986, - [2987] = 2893, - [2988] = 2918, - [2989] = 2899, - [2990] = 2899, - [2991] = 2909, + [2986] = 2975, + [2987] = 2906, + [2988] = 2988, + [2989] = 2906, + [2990] = 2907, + [2991] = 2991, [2992] = 2992, - [2993] = 2909, - [2994] = 2918, + [2993] = 2993, + [2994] = 2897, [2995] = 2995, - [2996] = 2996, - [2997] = 2962, - [2998] = 2998, - [2999] = 2999, - [3000] = 3000, + [2996] = 2896, + [2997] = 2997, + [2998] = 2871, + [2999] = 2984, + [3000] = 2870, [3001] = 3001, - [3002] = 3002, - [3003] = 2889, - [3004] = 2893, - [3005] = 3005, - [3006] = 2888, + [3002] = 2907, + [3003] = 2906, + [3004] = 3004, + [3005] = 2907, + [3006] = 3006, [3007] = 3007, - [3008] = 2898, + [3008] = 3008, [3009] = 3009, - [3010] = 2926, + [3010] = 3010, [3011] = 3011, [3012] = 3012, - [3013] = 2926, - [3014] = 2928, - [3015] = 2928, - [3016] = 2906, + [3013] = 948, + [3014] = 3009, + [3015] = 3011, + [3016] = 3016, [3017] = 3017, - [3018] = 2899, - [3019] = 2888, - [3020] = 2889, - [3021] = 1059, - [3022] = 3022, - [3023] = 3023, - [3024] = 3024, - [3025] = 3025, - [3026] = 3026, + [3018] = 3018, + [3019] = 3019, + [3020] = 947, + [3021] = 946, + [3022] = 3009, + [3023] = 945, + [3024] = 3011, + [3025] = 944, + [3026] = 943, [3027] = 3027, - [3028] = 3028, - [3029] = 3029, + [3028] = 3009, + [3029] = 857, [3030] = 3030, - [3031] = 3028, - [3032] = 3030, - [3033] = 3028, - [3034] = 3030, - [3035] = 3035, - [3036] = 3036, - [3037] = 3028, + [3031] = 3031, + [3032] = 3032, + [3033] = 3033, + [3034] = 3011, + [3035] = 941, + [3036] = 3009, + [3037] = 949, [3038] = 3038, [3039] = 3039, [3040] = 3040, @@ -6349,469 +6321,469 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3043] = 3043, [3044] = 3044, [3045] = 3045, - [3046] = 3035, + [3046] = 3017, [3047] = 3047, - [3048] = 3048, - [3049] = 3049, - [3050] = 3030, - [3051] = 3039, - [3052] = 3028, + [3048] = 939, + [3049] = 3041, + [3050] = 938, + [3051] = 3051, + [3052] = 3052, [3053] = 3053, - [3054] = 3054, - [3055] = 3055, + [3054] = 3041, + [3055] = 937, [3056] = 3056, - [3057] = 3057, + [3057] = 933, [3058] = 3058, - [3059] = 3053, - [3060] = 3060, - [3061] = 3061, + [3059] = 3044, + [3060] = 3051, + [3061] = 3017, [3062] = 3062, - [3063] = 3063, - [3064] = 3064, - [3065] = 3053, + [3063] = 3018, + [3064] = 9, + [3065] = 3041, [3066] = 3066, - [3067] = 3067, - [3068] = 3063, - [3069] = 3069, + [3067] = 940, + [3068] = 3068, + [3069] = 3068, [3070] = 3070, - [3071] = 3071, - [3072] = 3053, + [3071] = 3031, + [3072] = 3072, [3073] = 3073, [3074] = 3074, - [3075] = 3043, - [3076] = 3074, - [3077] = 3043, - [3078] = 3073, - [3079] = 3079, - [3080] = 3080, - [3081] = 3074, - [3082] = 3043, - [3083] = 3069, - [3084] = 3058, - [3085] = 3057, - [3086] = 3055, + [3075] = 3075, + [3076] = 3068, + [3077] = 3031, + [3078] = 3068, + [3079] = 931, + [3080] = 3031, + [3081] = 3081, + [3082] = 1036, + [3083] = 3083, + [3084] = 3084, + [3085] = 3085, + [3086] = 3086, [3087] = 3087, - [3088] = 3041, - [3089] = 3040, + [3088] = 3088, + [3089] = 3044, [3090] = 3090, - [3091] = 3038, - [3092] = 3036, - [3093] = 3054, + [3091] = 3091, + [3092] = 3092, + [3093] = 3093, [3094] = 3094, [3095] = 3095, - [3096] = 3096, + [3096] = 930, [3097] = 3097, - [3098] = 3095, - [3099] = 3099, + [3098] = 3018, + [3099] = 3007, [3100] = 3100, - [3101] = 3096, + [3101] = 3101, [3102] = 3102, [3103] = 3103, - [3104] = 3104, - [3105] = 3105, + [3104] = 929, + [3105] = 3074, [3106] = 3106, - [3107] = 3107, - [3108] = 3108, - [3109] = 3109, - [3110] = 3110, - [3111] = 3111, - [3112] = 3112, + [3107] = 928, + [3108] = 3053, + [3109] = 3052, + [3110] = 927, + [3111] = 925, + [3112] = 3043, [3113] = 3113, [3114] = 3114, - [3115] = 3115, + [3115] = 924, [3116] = 3116, [3117] = 3117, [3118] = 3118, - [3119] = 3119, + [3119] = 923, [3120] = 3120, [3121] = 3121, - [3122] = 3122, - [3123] = 3123, - [3124] = 3124, - [3125] = 3125, - [3126] = 3126, - [3127] = 3127, + [3122] = 922, + [3123] = 921, + [3124] = 3058, + [3125] = 3100, + [3126] = 3032, + [3127] = 3027, [3128] = 3128, - [3129] = 1818, - [3130] = 3130, - [3131] = 3099, + [3129] = 3129, + [3130] = 920, + [3131] = 3131, [3132] = 3132, - [3133] = 3133, - [3134] = 3128, - [3135] = 3100, - [3136] = 3132, - [3137] = 3137, - [3138] = 3009, - [3139] = 2986, - [3140] = 3049, - [3141] = 3141, - [3142] = 3142, - [3143] = 3143, + [3133] = 3088, + [3134] = 3134, + [3135] = 3135, + [3136] = 3136, + [3137] = 3128, + [3138] = 3131, + [3139] = 919, + [3140] = 3135, + [3141] = 3114, + [3142] = 3116, + [3143] = 3088, [3144] = 3144, [3145] = 3145, [3146] = 3146, - [3147] = 3056, - [3148] = 3148, - [3149] = 3146, - [3150] = 3102, + [3147] = 3147, + [3148] = 918, + [3149] = 3149, + [3150] = 917, [3151] = 3151, [3152] = 3152, - [3153] = 1357, - [3154] = 3103, + [3153] = 3153, + [3154] = 916, [3155] = 3155, - [3156] = 3156, - [3157] = 3080, + [3156] = 932, + [3157] = 3157, [3158] = 3158, [3159] = 3159, - [3160] = 3160, - [3161] = 3161, - [3162] = 3090, + [3160] = 3106, + [3161] = 3113, + [3162] = 3132, [3163] = 3163, - [3164] = 3164, - [3165] = 3155, - [3166] = 3166, - [3167] = 3104, - [3168] = 3168, - [3169] = 3074, + [3164] = 3045, + [3165] = 3165, + [3166] = 3040, + [3167] = 3167, + [3168] = 3134, + [3169] = 844, [3170] = 3170, - [3171] = 1216, - [3172] = 3159, - [3173] = 3123, - [3174] = 3105, - [3175] = 3043, - [3176] = 3107, - [3177] = 3069, - [3178] = 3058, - [3179] = 3152, - [3180] = 3057, - [3181] = 3055, - [3182] = 3041, - [3183] = 3040, - [3184] = 3038, - [3185] = 3036, - [3186] = 3186, - [3187] = 3054, - [3188] = 3094, - [3189] = 3095, - [3190] = 3035, - [3191] = 3096, - [3192] = 3192, - [3193] = 3099, - [3194] = 3100, - [3195] = 3145, - [3196] = 3102, - [3197] = 3103, - [3198] = 3198, - [3199] = 3199, - [3200] = 3105, - [3201] = 3107, - [3202] = 3109, - [3203] = 3110, - [3204] = 3110, - [3205] = 3205, - [3206] = 3063, - [3207] = 3111, - [3208] = 3112, - [3209] = 3209, - [3210] = 3210, - [3211] = 3115, - [3212] = 3116, - [3213] = 3213, - [3214] = 3118, - [3215] = 3121, - [3216] = 3122, - [3217] = 3109, - [3218] = 3124, - [3219] = 3125, - [3220] = 3126, - [3221] = 3111, - [3222] = 3112, - [3223] = 3130, - [3224] = 3133, - [3225] = 3053, - [3226] = 3137, - [3227] = 3227, - [3228] = 3228, - [3229] = 3141, - [3230] = 3142, - [3231] = 3143, - [3232] = 3232, - [3233] = 3148, - [3234] = 3234, - [3235] = 3235, - [3236] = 3151, - [3237] = 3035, - [3238] = 3152, - [3239] = 3039, - [3240] = 3039, - [3241] = 3241, - [3242] = 3123, - [3243] = 3115, - [3244] = 3155, - [3245] = 3116, - [3246] = 3080, - [3247] = 3104, - [3248] = 3248, - [3249] = 3249, - [3250] = 3163, - [3251] = 3074, - [3252] = 3159, - [3253] = 3118, - [3254] = 3121, - [3255] = 3122, - [3256] = 3151, - [3257] = 3043, - [3258] = 3258, - [3259] = 3069, - [3260] = 3058, - [3261] = 3144, - [3262] = 3057, - [3263] = 3055, - [3264] = 3041, - [3265] = 3040, - [3266] = 3038, - [3267] = 3036, - [3268] = 3268, - [3269] = 3054, - [3270] = 3094, - [3271] = 3095, - [3272] = 3096, + [3171] = 884, + [3172] = 964, + [3173] = 3173, + [3174] = 826, + [3175] = 3095, + [3176] = 3103, + [3177] = 3101, + [3178] = 3068, + [3179] = 3179, + [3180] = 7, + [3181] = 3181, + [3182] = 828, + [3183] = 3183, + [3184] = 3031, + [3185] = 825, + [3186] = 3081, + [3187] = 3187, + [3188] = 3083, + [3189] = 3084, + [3190] = 3086, + [3191] = 3090, + [3192] = 3091, + [3193] = 3092, + [3194] = 3094, + [3195] = 912, + [3196] = 3196, + [3197] = 3097, + [3198] = 3007, + [3199] = 3101, + [3200] = 3103, + [3201] = 911, + [3202] = 3074, + [3203] = 3106, + [3204] = 3100, + [3205] = 3053, + [3206] = 3052, + [3207] = 3097, + [3208] = 3043, + [3209] = 4, + [3210] = 3113, + [3211] = 915, + [3212] = 3117, + [3213] = 3118, + [3214] = 3214, + [3215] = 3215, + [3216] = 3120, + [3217] = 3121, + [3218] = 3170, + [3219] = 910, + [3220] = 3032, + [3221] = 3087, + [3222] = 3027, + [3223] = 3128, + [3224] = 3224, + [3225] = 3225, + [3226] = 909, + [3227] = 3131, + [3228] = 3135, + [3229] = 3229, + [3230] = 908, + [3231] = 3114, + [3232] = 3116, + [3233] = 3233, + [3234] = 3017, + [3235] = 3017, + [3236] = 3018, + [3237] = 3237, + [3238] = 3145, + [3239] = 3239, + [3240] = 907, + [3241] = 3051, + [3242] = 850, + [3243] = 3018, + [3244] = 3149, + [3245] = 906, + [3246] = 3152, + [3247] = 3153, + [3248] = 905, + [3249] = 3157, + [3250] = 3158, + [3251] = 3159, + [3252] = 3132, + [3253] = 3033, + [3254] = 904, + [3255] = 3165, + [3256] = 3040, + [3257] = 3094, + [3258] = 3092, + [3259] = 897, + [3260] = 3134, + [3261] = 903, + [3262] = 3170, + [3263] = 3091, + [3264] = 902, + [3265] = 3090, + [3266] = 831, + [3267] = 3095, + [3268] = 3121, + [3269] = 3120, + [3270] = 3270, + [3271] = 3068, + [3272] = 3272, [3273] = 3273, - [3274] = 3099, - [3275] = 3100, - [3276] = 3102, - [3277] = 3103, - [3278] = 1055, - [3279] = 3105, - [3280] = 3107, - [3281] = 3094, - [3282] = 3109, - [3283] = 3110, + [3274] = 900, + [3275] = 3183, + [3276] = 3159, + [3277] = 3031, + [3278] = 899, + [3279] = 3279, + [3280] = 3081, + [3281] = 3083, + [3282] = 3084, + [3283] = 3086, [3284] = 3284, - [3285] = 3285, - [3286] = 3286, - [3287] = 3111, - [3288] = 3112, - [3289] = 3163, - [3290] = 1110, - [3291] = 1121, - [3292] = 1122, - [3293] = 1123, - [3294] = 3115, - [3295] = 3116, - [3296] = 3118, - [3297] = 3124, - [3298] = 3125, - [3299] = 1140, - [3300] = 1139, - [3301] = 3121, - [3302] = 1138, - [3303] = 3122, - [3304] = 1137, - [3305] = 1011, - [3306] = 1135, - [3307] = 3123, - [3308] = 1126, - [3309] = 1133, - [3310] = 3124, - [3311] = 3125, - [3312] = 1132, - [3313] = 3126, - [3314] = 3132, - [3315] = 3130, - [3316] = 1120, - [3317] = 3133, - [3318] = 1119, - [3319] = 1118, - [3320] = 3090, - [3321] = 3137, - [3322] = 1117, - [3323] = 1116, - [3324] = 1115, - [3325] = 1114, - [3326] = 3141, - [3327] = 1113, - [3328] = 3142, - [3329] = 3143, - [3330] = 1112, - [3331] = 3123, - [3332] = 1111, - [3333] = 1108, - [3334] = 1107, - [3335] = 3148, - [3336] = 1101, - [3337] = 1100, - [3338] = 1099, - [3339] = 1098, - [3340] = 3340, - [3341] = 3151, - [3342] = 1097, - [3343] = 3152, - [3344] = 1096, - [3345] = 1095, - [3346] = 1094, - [3347] = 1093, - [3348] = 1092, - [3349] = 1091, - [3350] = 3155, - [3351] = 1090, - [3352] = 3080, - [3353] = 1089, - [3354] = 1088, - [3355] = 1087, - [3356] = 1086, - [3357] = 1085, - [3358] = 3128, - [3359] = 1084, - [3360] = 3067, - [3361] = 3128, - [3362] = 1076, - [3363] = 3104, - [3364] = 1075, - [3365] = 1074, - [3366] = 3132, - [3367] = 3163, - [3368] = 1073, - [3369] = 1072, - [3370] = 1071, - [3371] = 1070, - [3372] = 1069, - [3373] = 3074, - [3374] = 1068, - [3375] = 1067, - [3376] = 1066, - [3377] = 1063, - [3378] = 1062, - [3379] = 1061, - [3380] = 1060, - [3381] = 3159, - [3382] = 1053, - [3383] = 1052, - [3384] = 3043, - [3385] = 1051, - [3386] = 1050, - [3387] = 1049, - [3388] = 3388, - [3389] = 1048, - [3390] = 1047, - [3391] = 1046, - [3392] = 3132, - [3393] = 3069, - [3394] = 3128, - [3395] = 3058, - [3396] = 3057, - [3397] = 3104, - [3398] = 3055, - [3399] = 3148, + [3285] = 3090, + [3286] = 3091, + [3287] = 3092, + [3288] = 3094, + [3289] = 898, + [3290] = 3097, + [3291] = 1169, + [3292] = 3007, + [3293] = 8, + [3294] = 3101, + [3295] = 3103, + [3296] = 3296, + [3297] = 832, + [3298] = 3074, + [3299] = 3106, + [3300] = 896, + [3301] = 3053, + [3302] = 3052, + [3303] = 895, + [3304] = 3043, + [3305] = 3113, + [3306] = 3117, + [3307] = 3118, + [3308] = 3181, + [3309] = 3087, + [3310] = 3062, + [3311] = 3311, + [3312] = 3120, + [3313] = 3121, + [3314] = 3032, + [3315] = 3027, + [3316] = 3128, + [3317] = 3087, + [3318] = 3056, + [3319] = 3131, + [3320] = 3158, + [3321] = 3135, + [3322] = 3157, + [3323] = 3323, + [3324] = 3114, + [3325] = 3116, + [3326] = 3145, + [3327] = 3086, + [3328] = 3149, + [3329] = 901, + [3330] = 3152, + [3331] = 3153, + [3332] = 3083, + [3333] = 3333, + [3334] = 3068, + [3335] = 894, + [3336] = 3157, + [3337] = 3158, + [3338] = 3159, + [3339] = 3339, + [3340] = 3132, + [3341] = 3341, + [3342] = 3342, + [3343] = 3066, + [3344] = 3165, + [3345] = 3040, + [3346] = 3346, + [3347] = 3006, + [3348] = 3165, + [3349] = 3134, + [3350] = 893, + [3351] = 3170, + [3352] = 892, + [3353] = 3353, + [3354] = 3095, + [3355] = 3100, + [3356] = 833, + [3357] = 3068, + [3358] = 3081, + [3359] = 3359, + [3360] = 3145, + [3361] = 860, + [3362] = 848, + [3363] = 3088, + [3364] = 3364, + [3365] = 890, + [3366] = 3183, + [3367] = 3367, + [3368] = 3183, + [3369] = 889, + [3370] = 3031, + [3371] = 888, + [3372] = 3372, + [3373] = 3084, + [3374] = 3087, + [3375] = 3375, + [3376] = 3081, + [3377] = 3083, + [3378] = 3378, + [3379] = 3084, + [3380] = 3086, + [3381] = 3090, + [3382] = 3091, + [3383] = 3092, + [3384] = 3094, + [3385] = 887, + [3386] = 3097, + [3387] = 3045, + [3388] = 3007, + [3389] = 3101, + [3390] = 3390, + [3391] = 851, + [3392] = 852, + [3393] = 853, + [3394] = 3045, + [3395] = 3103, + [3396] = 856, + [3397] = 3074, + [3398] = 3106, + [3399] = 885, [3400] = 3400, - [3401] = 3041, - [3402] = 3040, - [3403] = 3038, - [3404] = 3036, - [3405] = 3405, - [3406] = 1044, - [3407] = 1043, - [3408] = 3054, - [3409] = 3094, - [3410] = 1042, - [3411] = 3095, - [3412] = 3096, - [3413] = 1040, - [3414] = 3099, - [3415] = 3100, - [3416] = 3102, - [3417] = 3103, - [3418] = 1039, - [3419] = 1038, - [3420] = 1037, - [3421] = 3105, - [3422] = 3107, - [3423] = 1012, - [3424] = 1035, - [3425] = 1034, - [3426] = 3426, - [3427] = 3109, - [3428] = 3110, - [3429] = 1033, - [3430] = 1032, - [3431] = 3090, - [3432] = 3111, - [3433] = 3112, - [3434] = 3232, - [3435] = 1031, + [3401] = 3053, + [3402] = 859, + [3403] = 872, + [3404] = 2979, + [3405] = 3052, + [3406] = 3043, + [3407] = 861, + [3408] = 3113, + [3409] = 3409, + [3410] = 862, + [3411] = 863, + [3412] = 3149, + [3413] = 864, + [3414] = 827, + [3415] = 3415, + [3416] = 3117, + [3417] = 865, + [3418] = 3118, + [3419] = 3152, + [3420] = 3120, + [3421] = 3121, + [3422] = 3155, + [3423] = 840, + [3424] = 3032, + [3425] = 866, + [3426] = 3027, + [3427] = 3128, + [3428] = 867, + [3429] = 3429, + [3430] = 868, + [3431] = 3131, + [3432] = 3135, + [3433] = 869, + [3434] = 870, + [3435] = 3435, [3436] = 3436, - [3437] = 1030, - [3438] = 1028, - [3439] = 1027, - [3440] = 3115, - [3441] = 3116, - [3442] = 3118, - [3443] = 1026, - [3444] = 1025, - [3445] = 1024, - [3446] = 1022, - [3447] = 3121, - [3448] = 1021, - [3449] = 3122, - [3450] = 3273, - [3451] = 1045, - [3452] = 1020, - [3453] = 1019, - [3454] = 1018, - [3455] = 1017, - [3456] = 3124, - [3457] = 3125, - [3458] = 1016, - [3459] = 1015, - [3460] = 3126, - [3461] = 1014, - [3462] = 3035, - [3463] = 1013, - [3464] = 3039, - [3465] = 1102, - [3466] = 1041, - [3467] = 1054, - [3468] = 3130, - [3469] = 3133, - [3470] = 3126, - [3471] = 2, - [3472] = 3130, - [3473] = 3137, - [3474] = 3133, - [3475] = 3141, - [3476] = 3066, - [3477] = 3142, - [3478] = 3143, - [3479] = 3, - [3480] = 3148, + [3437] = 842, + [3438] = 3114, + [3439] = 3153, + [3440] = 3116, + [3441] = 3145, + [3442] = 3442, + [3443] = 3149, + [3444] = 843, + [3445] = 3152, + [3446] = 3153, + [3447] = 3447, + [3448] = 3448, + [3449] = 886, + [3450] = 3157, + [3451] = 3158, + [3452] = 3159, + [3453] = 3323, + [3454] = 3132, + [3455] = 3455, + [3456] = 3165, + [3457] = 3040, + [3458] = 3100, + [3459] = 3017, + [3460] = 3375, + [3461] = 3018, + [3462] = 3011, + [3463] = 839, + [3464] = 3134, + [3465] = 841, + [3466] = 3170, + [3467] = 3117, + [3468] = 3118, + [3469] = 845, + [3470] = 3470, + [3471] = 3088, + [3472] = 3045, + [3473] = 3095, + [3474] = 3436, + [3475] = 846, + [3476] = 3068, + [3477] = 847, + [3478] = 3478, + [3479] = 871, + [3480] = 849, [3481] = 3481, - [3482] = 3074, - [3483] = 3151, - [3484] = 3436, - [3485] = 3485, - [3486] = 3152, - [3487] = 3127, - [3488] = 3137, - [3489] = 3155, - [3490] = 3080, - [3491] = 3035, - [3492] = 3492, - [3493] = 3039, - [3494] = 3494, - [3495] = 3141, - [3496] = 3142, - [3497] = 3163, - [3498] = 3143, - [3499] = 3074, - [3500] = 3090, - [3501] = 3030, - [3502] = 3035, - [3503] = 3159, - [3504] = 3039, - [3505] = 3043, - [3506] = 3506, + [3482] = 3482, + [3483] = 3044, + [3484] = 3183, + [3485] = 3031, + [3486] = 875, + [3487] = 3372, + [3488] = 3017, + [3489] = 1543, + [3490] = 3018, + [3491] = 874, + [3492] = 873, + [3493] = 3041, + [3494] = 3044, + [3495] = 838, + [3496] = 3496, + [3497] = 3497, + [3498] = 3498, + [3499] = 3499, + [3500] = 3500, + [3501] = 3501, + [3502] = 3502, + [3503] = 3503, + [3504] = 3504, + [3505] = 3505, + [3506] = 2948, [3507] = 3507, - [3508] = 3035, + [3508] = 3508, [3509] = 3509, [3510] = 3510, [3511] = 3511, @@ -6821,513 +6793,513 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3515] = 3515, [3516] = 3516, [3517] = 3517, - [3518] = 3518, - [3519] = 3519, + [3518] = 3498, + [3519] = 3498, [3520] = 3520, [3521] = 3521, - [3522] = 3520, - [3523] = 3520, + [3522] = 3522, + [3523] = 3523, [3524] = 3524, [3525] = 3525, - [3526] = 3526, + [3526] = 3513, [3527] = 3527, - [3528] = 3513, - [3529] = 3529, + [3528] = 3528, + [3529] = 3498, [3530] = 3530, - [3531] = 3520, - [3532] = 3512, - [3533] = 3520, - [3534] = 3520, - [3535] = 3535, + [3531] = 3531, + [3532] = 3517, + [3533] = 3511, + [3534] = 3527, + [3535] = 3498, [3536] = 3536, - [3537] = 3511, - [3538] = 3518, + [3537] = 3498, + [3538] = 3498, [3539] = 3539, - [3540] = 3540, - [3541] = 3535, - [3542] = 3542, + [3540] = 3536, + [3541] = 3531, + [3542] = 3509, [3543] = 3543, - [3544] = 3544, - [3545] = 3545, - [3546] = 3546, + [3544] = 3539, + [3545] = 3521, + [3546] = 3536, [3547] = 3547, - [3548] = 3548, - [3549] = 3526, + [3548] = 3536, + [3549] = 3549, [3550] = 3550, [3551] = 3551, [3552] = 3552, - [3553] = 3548, - [3554] = 3526, + [3553] = 3507, + [3554] = 3539, [3555] = 3555, - [3556] = 3548, - [3557] = 3548, + [3556] = 3556, + [3557] = 3557, [3558] = 3558, [3559] = 3559, - [3560] = 3560, + [3560] = 3500, [3561] = 3561, [3562] = 3562, [3563] = 3563, [3564] = 3564, - [3565] = 3520, + [3565] = 3565, [3566] = 3566, - [3567] = 3529, + [3567] = 3510, [3568] = 3568, - [3569] = 3569, - [3570] = 3545, + [3569] = 3536, + [3570] = 3512, [3571] = 3571, - [3572] = 3572, - [3573] = 3573, - [3574] = 3548, - [3575] = 3519, - [3576] = 3524, - [3577] = 3558, + [3572] = 3549, + [3573] = 3550, + [3574] = 3505, + [3575] = 3565, + [3576] = 3576, + [3577] = 3577, [3578] = 3578, [3579] = 3579, [3580] = 3580, - [3581] = 3559, + [3581] = 3557, [3582] = 3582, [3583] = 3583, [3584] = 3584, - [3585] = 3561, + [3585] = 3527, [3586] = 3586, - [3587] = 3587, - [3588] = 3526, - [3589] = 3568, - [3590] = 3590, + [3587] = 3536, + [3588] = 3588, + [3589] = 3516, + [3590] = 3566, [3591] = 3591, [3592] = 3592, - [3593] = 3520, - [3594] = 3548, - [3595] = 3519, - [3596] = 3596, + [3593] = 3593, + [3594] = 3586, + [3595] = 3579, + [3596] = 3536, [3597] = 3597, - [3598] = 3598, - [3599] = 3558, - [3600] = 3551, - [3601] = 3559, - [3602] = 3602, + [3598] = 1613, + [3599] = 3505, + [3600] = 3512, + [3601] = 3601, + [3602] = 3549, [3603] = 3603, [3604] = 3604, - [3605] = 3561, + [3605] = 3550, [3606] = 3606, [3607] = 3607, - [3608] = 3608, - [3609] = 3568, + [3608] = 3505, + [3609] = 3557, [3610] = 3610, - [3611] = 3611, - [3612] = 3548, - [3613] = 3519, - [3614] = 3547, + [3611] = 3496, + [3612] = 3612, + [3613] = 3516, + [3614] = 3614, [3615] = 3615, - [3616] = 3515, - [3617] = 3526, + [3616] = 3498, + [3617] = 3566, [3618] = 3618, [3619] = 3619, [3620] = 3620, - [3621] = 3621, - [3622] = 3558, - [3623] = 3559, + [3621] = 3606, + [3622] = 3559, + [3623] = 3623, [3624] = 3624, [3625] = 3625, - [3626] = 3543, - [3627] = 3561, - [3628] = 3628, - [3629] = 3629, - [3630] = 3568, - [3631] = 3536, - [3632] = 3517, - [3633] = 3568, + [3626] = 3550, + [3627] = 3627, + [3628] = 3536, + [3629] = 3512, + [3630] = 3630, + [3631] = 3631, + [3632] = 3632, + [3633] = 3633, [3634] = 3634, [3635] = 3635, - [3636] = 3548, - [3637] = 3519, + [3636] = 3502, + [3637] = 3637, [3638] = 3638, - [3639] = 3540, - [3640] = 3564, - [3641] = 3571, - [3642] = 4, + [3639] = 3615, + [3640] = 3640, + [3641] = 3549, + [3642] = 3550, [3643] = 3643, - [3644] = 3529, - [3645] = 3582, - [3646] = 3551, - [3647] = 3582, + [3644] = 3644, + [3645] = 3645, + [3646] = 3646, + [3647] = 3568, [3648] = 3648, - [3649] = 3529, - [3650] = 3650, - [3651] = 3551, - [3652] = 3652, - [3653] = 3529, - [3654] = 3509, - [3655] = 3544, - [3656] = 3607, - [3657] = 3526, - [3658] = 3658, - [3659] = 3659, - [3660] = 3660, - [3661] = 3546, - [3662] = 3662, - [3663] = 3663, - [3664] = 3596, - [3665] = 3586, + [3649] = 3649, + [3650] = 3507, + [3651] = 3651, + [3652] = 3612, + [3653] = 3653, + [3654] = 3654, + [3655] = 3557, + [3656] = 3618, + [3657] = 3657, + [3658] = 3562, + [3659] = 3566, + [3660] = 3591, + [3661] = 3536, + [3662] = 3512, + [3663] = 3499, + [3664] = 3664, + [3665] = 3513, [3666] = 3666, - [3667] = 3667, - [3668] = 3604, - [3669] = 3520, - [3670] = 3559, - [3671] = 3671, - [3672] = 3624, - [3673] = 3597, - [3674] = 3674, - [3675] = 3615, + [3667] = 3497, + [3668] = 3571, + [3669] = 3669, + [3670] = 3513, + [3671] = 3604, + [3672] = 3672, + [3673] = 3571, + [3674] = 3502, + [3675] = 3604, [3676] = 3676, - [3677] = 3677, + [3677] = 3601, [3678] = 3678, [3679] = 3679, - [3680] = 3546, - [3681] = 3618, - [3682] = 3542, - [3683] = 3540, - [3684] = 3572, - [3685] = 3515, - [3686] = 3573, - [3687] = 3687, + [3680] = 3680, + [3681] = 3681, + [3682] = 3682, + [3683] = 3683, + [3684] = 3684, + [3685] = 3571, + [3686] = 3498, + [3687] = 3497, [3688] = 3688, - [3689] = 3547, - [3690] = 3690, - [3691] = 3691, + [3689] = 3689, + [3690] = 3669, + [3691] = 3522, [3692] = 3692, - [3693] = 3693, - [3694] = 3524, - [3695] = 3635, - [3696] = 3545, + [3693] = 3676, + [3694] = 3694, + [3695] = 3648, + [3696] = 3696, [3697] = 3625, - [3698] = 3543, + [3698] = 3698, [3699] = 3699, [3700] = 3700, - [3701] = 3536, - [3702] = 3702, - [3703] = 3703, - [3704] = 3510, + [3701] = 3701, + [3702] = 3684, + [3703] = 3701, + [3704] = 3664, [3705] = 3705, [3706] = 3706, - [3707] = 3517, - [3708] = 3708, - [3709] = 3674, - [3710] = 3710, - [3711] = 3711, - [3712] = 3648, - [3713] = 3713, - [3714] = 3650, - [3715] = 3544, - [3716] = 3652, - [3717] = 1628, - [3718] = 3718, - [3719] = 3510, - [3720] = 3703, - [3721] = 3721, - [3722] = 3610, - [3723] = 3706, - [3724] = 3724, - [3725] = 3586, - [3726] = 3542, + [3707] = 3504, + [3708] = 12, + [3709] = 3607, + [3710] = 3635, + [3711] = 3503, + [3712] = 3568, + [3713] = 3649, + [3714] = 3714, + [3715] = 3571, + [3716] = 3625, + [3717] = 3717, + [3718] = 3498, + [3719] = 3700, + [3720] = 3720, + [3721] = 3637, + [3722] = 3592, + [3723] = 3723, + [3724] = 3698, + [3725] = 274, + [3726] = 3564, [3727] = 3727, - [3728] = 3728, - [3729] = 3659, - [3730] = 3660, - [3731] = 3604, - [3732] = 3732, - [3733] = 3662, - [3734] = 3734, - [3735] = 3687, - [3736] = 3561, - [3737] = 3663, - [3738] = 3558, - [3739] = 3679, - [3740] = 3678, - [3741] = 3615, - [3742] = 3677, - [3743] = 3676, - [3744] = 3744, - [3745] = 2891, + [3728] = 3699, + [3729] = 3637, + [3730] = 3654, + [3731] = 3607, + [3732] = 3503, + [3733] = 3678, + [3734] = 3699, + [3735] = 3634, + [3736] = 3505, + [3737] = 3606, + [3738] = 3592, + [3739] = 3739, + [3740] = 3648, + [3741] = 3627, + [3742] = 3564, + [3743] = 3606, + [3744] = 3631, + [3745] = 3694, [3746] = 3746, - [3747] = 3666, - [3748] = 3635, - [3749] = 3749, - [3750] = 3592, - [3751] = 3648, - [3752] = 3650, - [3753] = 3734, - [3754] = 3749, - [3755] = 3692, - [3756] = 2995, - [3757] = 3699, - [3758] = 3652, - [3759] = 3746, - [3760] = 3734, - [3761] = 2971, - [3762] = 3674, - [3763] = 3749, - [3764] = 3571, - [3765] = 3564, - [3766] = 3705, - [3767] = 3635, - [3768] = 3718, - [3769] = 3721, - [3770] = 3629, - [3771] = 3535, - [3772] = 3628, + [3747] = 3635, + [3748] = 3516, + [3749] = 3727, + [3750] = 3630, + [3751] = 3678, + [3752] = 3752, + [3753] = 3615, + [3754] = 3634, + [3755] = 3004, + [3756] = 3565, + [3757] = 3531, + [3758] = 3528, + [3759] = 3504, + [3760] = 3706, + [3761] = 3761, + [3762] = 3762, + [3763] = 3517, + [3764] = 3720, + [3765] = 3643, + [3766] = 3766, + [3767] = 3513, + [3768] = 3507, + [3769] = 3521, + [3770] = 3682, + [3771] = 3565, + [3772] = 3646, [3773] = 3773, - [3774] = 3728, - [3775] = 3615, - [3776] = 3509, - [3777] = 3563, - [3778] = 3778, - [3779] = 3746, - [3780] = 3687, - [3781] = 3718, - [3782] = 3607, - [3783] = 3734, - [3784] = 3604, - [3785] = 3721, - [3786] = 3586, - [3787] = 3728, - [3788] = 3721, - [3789] = 3551, - [3790] = 3790, - [3791] = 3563, - [3792] = 3792, - [3793] = 3728, - [3794] = 3529, + [3774] = 3500, + [3775] = 3584, + [3776] = 3500, + [3777] = 3688, + [3778] = 3507, + [3779] = 3682, + [3780] = 3681, + [3781] = 3565, + [3782] = 3680, + [3783] = 3679, + [3784] = 3614, + [3785] = 3607, + [3786] = 3517, + [3787] = 3681, + [3788] = 3531, + [3789] = 3510, + [3790] = 3562, + [3791] = 3503, + [3792] = 3571, + [3793] = 3793, + [3794] = 3531, [3795] = 3795, - [3796] = 3544, - [3797] = 3797, - [3798] = 3591, - [3799] = 3572, - [3800] = 3573, - [3801] = 3746, - [3802] = 3590, - [3803] = 3803, - [3804] = 3555, - [3805] = 3578, - [3806] = 3579, - [3807] = 3749, - [3808] = 3808, - [3809] = 3718, - [3810] = 3810, - [3811] = 3550, - [3812] = 3579, - [3813] = 3578, - [3814] = 3590, - [3815] = 3591, - [3816] = 3573, - [3817] = 3572, - [3818] = 3625, - [3819] = 3699, - [3820] = 3699, - [3821] = 3692, - [3822] = 3822, - [3823] = 3551, - [3824] = 3529, - [3825] = 3563, - [3826] = 3734, - [3827] = 3692, - [3828] = 3828, + [3796] = 3796, + [3797] = 3576, + [3798] = 3577, + [3799] = 3799, + [3800] = 3696, + [3801] = 3612, + [3802] = 3618, + [3803] = 3582, + [3804] = 3583, + [3805] = 3543, + [3806] = 3664, + [3807] = 3680, + [3808] = 3517, + [3809] = 3679, + [3810] = 3644, + [3811] = 3643, + [3812] = 3586, + [3813] = 3579, + [3814] = 3604, + [3815] = 3815, + [3816] = 3816, + [3817] = 3817, + [3818] = 3818, + [3819] = 3692, + [3820] = 3820, + [3821] = 3604, + [3822] = 3766, + [3823] = 3698, + [3824] = 3632, + [3825] = 3631, + [3826] = 3720, + [3827] = 3634, + [3828] = 3649, [3829] = 3829, - [3830] = 3607, + [3830] = 3516, [3831] = 3831, - [3832] = 3592, - [3833] = 3514, - [3834] = 3834, + [3832] = 3511, + [3833] = 3833, + [3834] = 3696, [3835] = 3835, - [3836] = 3618, - [3837] = 3666, - [3838] = 3663, - [3839] = 3662, - [3840] = 3597, - [3841] = 3660, - [3842] = 3535, - [3843] = 3671, - [3844] = 3659, - [3845] = 3845, - [3846] = 3635, - [3847] = 3592, - [3848] = 3628, - [3849] = 3629, - [3850] = 3596, - [3851] = 3666, - [3852] = 3660, - [3853] = 3845, - [3854] = 3659, - [3855] = 3509, - [3856] = 3615, - [3857] = 3582, - [3858] = 3663, - [3859] = 3564, - [3860] = 3571, - [3861] = 3578, - [3862] = 3662, - [3863] = 3604, - [3864] = 3864, - [3865] = 3579, - [3866] = 3526, - [3867] = 3586, - [3868] = 3732, - [3869] = 3660, - [3870] = 3652, - [3871] = 3650, - [3872] = 3648, - [3873] = 3873, - [3874] = 3674, - [3875] = 3875, - [3876] = 3659, - [3877] = 3877, - [3878] = 3829, - [3879] = 3517, - [3880] = 3536, - [3881] = 3544, - [3882] = 3618, - [3883] = 3677, - [3884] = 3676, - [3885] = 3511, - [3886] = 3678, - [3887] = 3687, - [3888] = 3679, - [3889] = 3513, - [3890] = 3890, - [3891] = 3543, - [3892] = 3676, - [3893] = 3677, - [3894] = 3678, - [3895] = 3679, - [3896] = 3545, - [3897] = 3662, - [3898] = 3509, - [3899] = 3512, - [3900] = 3524, - [3901] = 3547, - [3902] = 3515, - [3903] = 3513, - [3904] = 3904, - [3905] = 3540, - [3906] = 3542, - [3907] = 3546, - [3908] = 3580, - [3909] = 3625, - [3910] = 3749, - [3911] = 3911, - [3912] = 3732, - [3913] = 3618, - [3914] = 3914, - [3915] = 3703, - [3916] = 3510, - [3917] = 3732, - [3918] = 3597, - [3919] = 3650, - [3920] = 3596, - [3921] = 3706, - [3922] = 3648, - [3923] = 3663, - [3924] = 3625, - [3925] = 3925, - [3926] = 3926, - [3927] = 3706, - [3928] = 3582, - [3929] = 3929, - [3930] = 3674, - [3931] = 3931, + [3836] = 3836, + [3837] = 3606, + [3838] = 3838, + [3839] = 3496, + [3840] = 3604, + [3841] = 3841, + [3842] = 3648, + [3843] = 3692, + [3844] = 3562, + [3845] = 2985, + [3846] = 3631, + [3847] = 3632, + [3848] = 3684, + [3849] = 3579, + [3850] = 3850, + [3851] = 3586, + [3852] = 3852, + [3853] = 3696, + [3854] = 3676, + [3855] = 3646, + [3856] = 3632, + [3857] = 3643, + [3858] = 3644, + [3859] = 3549, + [3860] = 3583, + [3861] = 3582, + [3862] = 3762, + [3863] = 3678, + [3864] = 3615, + [3865] = 3625, + [3866] = 3577, + [3867] = 3576, + [3868] = 3669, + [3869] = 3698, + [3870] = 3597, + [3871] = 3571, + [3872] = 3637, + [3873] = 11, + [3874] = 3874, + [3875] = 3510, + [3876] = 3497, + [3877] = 3618, + [3878] = 3503, + [3879] = 3700, + [3880] = 3625, + [3881] = 3635, + [3882] = 3612, + [3883] = 3700, + [3884] = 3497, + [3885] = 3583, + [3886] = 3521, + [3887] = 3699, + [3888] = 3637, + [3889] = 3669, + [3890] = 3679, + [3891] = 3680, + [3892] = 3681, + [3893] = 3682, + [3894] = 3640, + [3895] = 3500, + [3896] = 3601, + [3897] = 3692, + [3898] = 3624, + [3899] = 3649, + [3900] = 3900, + [3901] = 3901, + [3902] = 3727, + [3903] = 3694, + [3904] = 3601, + [3905] = 3646, + [3906] = 3720, + [3907] = 3582, + [3908] = 3908, + [3909] = 3568, + [3910] = 3701, + [3911] = 3607, + [3912] = 3664, + [3913] = 3706, + [3914] = 3504, + [3915] = 3502, + [3916] = 3701, + [3917] = 3688, + [3918] = 3698, + [3919] = 3688, + [3920] = 3920, + [3921] = 3688, + [3922] = 3696, + [3923] = 3923, + [3924] = 3692, + [3925] = 3592, + [3926] = 3684, + [3927] = 3927, + [3928] = 3676, + [3929] = 3701, + [3930] = 3564, + [3931] = 3669, [3932] = 3706, - [3933] = 3517, - [3934] = 3520, - [3935] = 3746, - [3936] = 3629, - [3937] = 3536, - [3938] = 3938, - [3939] = 3510, - [3940] = 3596, - [3941] = 3941, - [3942] = 3688, - [3943] = 3943, - [3944] = 3687, - [3945] = 3526, - [3946] = 3703, - [3947] = 3543, + [3933] = 3564, + [3934] = 3496, + [3935] = 3935, + [3936] = 3936, + [3937] = 3618, + [3938] = 3505, + [3939] = 3727, + [3940] = 3612, + [3941] = 3649, + [3942] = 3592, + [3943] = 3568, + [3944] = 3694, + [3945] = 3504, + [3946] = 3706, + [3947] = 3947, [3948] = 3948, - [3949] = 3949, - [3950] = 3628, - [3951] = 3951, - [3952] = 3952, - [3953] = 3728, - [3954] = 3545, - [3955] = 3955, - [3956] = 3721, - [3957] = 3597, - [3958] = 3958, - [3959] = 3524, - [3960] = 3624, - [3961] = 3679, - [3962] = 3511, - [3963] = 3512, - [3964] = 3678, - [3965] = 3677, - [3966] = 3513, - [3967] = 3676, - [3968] = 3671, - [3969] = 3547, - [3970] = 3792, - [3971] = 3619, - [3972] = 3972, - [3973] = 3515, - [3974] = 3724, - [3975] = 3535, - [3976] = 3666, - [3977] = 3718, - [3978] = 3511, - [3979] = 3835, - [3980] = 3540, - [3981] = 3834, - [3982] = 3542, - [3983] = 3591, - [3984] = 3546, - [3985] = 3520, - [3986] = 3592, - [3987] = 3512, + [3949] = 3502, + [3950] = 3720, + [3951] = 3562, + [3952] = 3557, + [3953] = 3664, + [3954] = 3694, + [3955] = 3646, + [3956] = 3615, + [3957] = 3623, + [3958] = 3635, + [3959] = 3959, + [3960] = 270, + [3961] = 3682, + [3962] = 3576, + [3963] = 3681, + [3964] = 3680, + [3965] = 3679, + [3966] = 3601, + [3967] = 3648, + [3968] = 3815, + [3969] = 3523, + [3970] = 3970, + [3971] = 3539, + [3972] = 3657, + [3973] = 3521, + [3974] = 3577, + [3975] = 3975, + [3976] = 3498, + [3977] = 3603, + [3978] = 3644, + [3979] = 3643, + [3980] = 3527, + [3981] = 3981, + [3982] = 3700, + [3983] = 3983, + [3984] = 3505, + [3985] = 3511, + [3986] = 3632, + [3987] = 3631, [3988] = 3988, - [3989] = 3590, - [3990] = 3990, - [3991] = 3991, - [3992] = 3571, - [3993] = 3564, - [3994] = 3563, - [3995] = 3822, - [3996] = 3996, - [3997] = 3529, - [3998] = 3998, - [3999] = 3692, - [4000] = 3629, - [4001] = 3628, - [4002] = 3572, - [4003] = 3573, + [3989] = 3989, + [3990] = 3684, + [3991] = 3634, + [3992] = 3510, + [3993] = 3699, + [3994] = 3511, + [3995] = 3571, + [3996] = 3644, + [3997] = 3496, + [3998] = 3527, + [3999] = 3999, + [4000] = 3576, + [4001] = 3577, + [4002] = 3676, + [4003] = 3727, [4004] = 4004, - [4005] = 4005, - [4006] = 4006, - [4007] = 4007, - [4008] = 3578, - [4009] = 3579, - [4010] = 3620, - [4011] = 3539, - [4012] = 3652, - [4013] = 4013, + [4005] = 3678, + [4006] = 3582, + [4007] = 3583, + [4008] = 3604, + [4009] = 3566, + [4010] = 3539, + [4011] = 3498, + [4012] = 3586, + [4013] = 3579, [4014] = 4014, - [4015] = 3732, - [4016] = 3864, - [4017] = 3590, - [4018] = 3591, - [4019] = 3587, - [4020] = 3607, - [4021] = 3699, + [4015] = 4015, + [4016] = 4016, + [4017] = 4017, + [4018] = 4018, + [4019] = 4019, + [4020] = 4020, + [4021] = 4021, [4022] = 4022, - [4023] = 3551, - [4024] = 3703, + [4023] = 4023, + [4024] = 4024, [4025] = 4025, [4026] = 4026, [4027] = 4027, @@ -7344,7 +7316,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4038] = 4038, [4039] = 4039, [4040] = 4040, - [4041] = 4041, + [4041] = 4037, [4042] = 4042, [4043] = 4043, [4044] = 4044, @@ -7352,27 +7324,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4046] = 4046, [4047] = 4047, [4048] = 4048, - [4049] = 4049, - [4050] = 4043, + [4049] = 4035, + [4050] = 4050, [4051] = 4051, [4052] = 4052, [4053] = 4053, - [4054] = 4041, + [4054] = 4025, [4055] = 4055, - [4056] = 4035, + [4056] = 4056, [4057] = 4057, - [4058] = 4025, + [4058] = 4058, [4059] = 4059, - [4060] = 4060, + [4060] = 4026, [4061] = 4061, [4062] = 4062, - [4063] = 4063, - [4064] = 4032, + [4063] = 4023, + [4064] = 4064, [4065] = 4065, - [4066] = 4036, - [4067] = 4067, - [4068] = 4068, - [4069] = 4069, + [4066] = 4021, + [4067] = 4064, + [4068] = 4016, + [4069] = 4018, [4070] = 4070, [4071] = 4071, [4072] = 4072, @@ -7384,578 +7356,575 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4078] = 4078, [4079] = 4079, [4080] = 4080, - [4081] = 4081, - [4082] = 4045, - [4083] = 4083, - [4084] = 4072, - [4085] = 4085, + [4081] = 4028, + [4082] = 4082, + [4083] = 4039, + [4084] = 4084, + [4085] = 4022, [4086] = 4086, [4087] = 4087, [4088] = 4088, [4089] = 4089, - [4090] = 4090, - [4091] = 4091, + [4090] = 4064, + [4091] = 4070, [4092] = 4092, [4093] = 4093, - [4094] = 4094, - [4095] = 4095, + [4094] = 1248, + [4095] = 4065, [4096] = 4096, - [4097] = 4097, + [4097] = 4042, [4098] = 4098, - [4099] = 4038, - [4100] = 4100, + [4099] = 4099, + [4100] = 4099, [4101] = 4101, - [4102] = 4030, + [4102] = 4101, [4103] = 4103, - [4104] = 4104, + [4104] = 4082, [4105] = 4105, - [4106] = 4106, - [4107] = 4103, - [4108] = 4048, + [4106] = 4103, + [4107] = 4107, + [4108] = 4108, [4109] = 4109, - [4110] = 4042, + [4110] = 4110, [4111] = 4111, [4112] = 4112, - [4113] = 4113, + [4113] = 4014, [4114] = 4114, [4115] = 4115, [4116] = 4116, - [4117] = 4057, - [4118] = 4118, + [4117] = 4117, + [4118] = 4042, [4119] = 4119, - [4120] = 4120, - [4121] = 4106, + [4120] = 4029, + [4121] = 4053, [4122] = 4122, - [4123] = 4080, + [4123] = 4123, [4124] = 4124, - [4125] = 4125, - [4126] = 4083, - [4127] = 4091, - [4128] = 4095, - [4129] = 4090, + [4125] = 4037, + [4126] = 4126, + [4127] = 4127, + [4128] = 4128, + [4129] = 4129, [4130] = 4130, - [4131] = 4131, - [4132] = 4132, - [4133] = 4090, - [4134] = 4091, - [4135] = 4135, - [4136] = 4053, - [4137] = 4096, - [4138] = 4046, - [4139] = 4130, + [4131] = 4057, + [4132] = 4022, + [4133] = 4077, + [4134] = 4075, + [4135] = 4027, + [4136] = 4136, + [4137] = 4031, + [4138] = 4057, + [4139] = 4059, [4140] = 4140, [4141] = 4141, - [4142] = 4103, - [4143] = 4106, + [4142] = 4128, + [4143] = 4143, [4144] = 4144, [4145] = 4145, [4146] = 4146, [4147] = 4147, - [4148] = 4096, - [4149] = 4116, + [4148] = 4148, + [4149] = 4148, [4150] = 4150, [4151] = 4151, - [4152] = 4081, - [4153] = 4119, + [4152] = 4152, + [4153] = 4153, [4154] = 4154, - [4155] = 4079, - [4156] = 4078, - [4157] = 4076, + [4155] = 4155, + [4156] = 4156, + [4157] = 4157, [4158] = 4158, [4159] = 4159, - [4160] = 4067, - [4161] = 4124, - [4162] = 4065, - [4163] = 4163, - [4164] = 4125, - [4165] = 4061, - [4166] = 4132, - [4167] = 4132, + [4160] = 4160, + [4161] = 4088, + [4162] = 4162, + [4163] = 4127, + [4164] = 4075, + [4165] = 4165, + [4166] = 4093, + [4167] = 4167, [4168] = 4168, - [4169] = 4135, - [4170] = 4170, - [4171] = 4171, - [4172] = 4053, + [4169] = 4169, + [4170] = 4105, + [4171] = 4082, + [4172] = 4172, [4173] = 4173, - [4174] = 4170, - [4175] = 4141, - [4176] = 4048, - [4177] = 4173, + [4174] = 4151, + [4175] = 4076, + [4176] = 4098, + [4177] = 4177, [4178] = 4178, - [4179] = 4045, - [4180] = 4089, - [4181] = 4087, - [4182] = 4085, - [4183] = 4183, - [4184] = 4075, - [4185] = 4069, - [4186] = 4186, - [4187] = 4077, - [4188] = 4130, + [4179] = 4072, + [4180] = 4016, + [4181] = 4181, + [4182] = 4072, + [4183] = 4058, + [4184] = 4108, + [4185] = 4058, + [4186] = 4040, + [4187] = 4187, + [4188] = 4188, [4189] = 4189, - [4190] = 4034, - [4191] = 4191, - [4192] = 4072, + [4190] = 4050, + [4191] = 4032, + [4192] = 4192, [4193] = 4193, - [4194] = 4069, - [4195] = 4031, - [4196] = 4063, - [4197] = 4197, - [4198] = 4198, - [4199] = 4131, - [4200] = 4028, - [4201] = 4025, - [4202] = 4063, - [4203] = 4055, - [4204] = 4204, - [4205] = 4204, - [4206] = 4029, - [4207] = 4029, - [4208] = 4051, - [4209] = 4209, - [4210] = 4144, - [4211] = 4038, - [4212] = 4033, - [4213] = 4213, - [4214] = 4046, - [4215] = 4215, + [4194] = 4038, + [4195] = 4079, + [4196] = 4196, + [4197] = 4077, + [4198] = 4076, + [4199] = 4034, + [4200] = 4074, + [4201] = 4031, + [4202] = 4128, + [4203] = 4203, + [4204] = 4093, + [4205] = 4148, + [4206] = 4027, + [4207] = 4207, + [4208] = 4034, + [4209] = 4065, + [4210] = 4210, + [4211] = 4023, + [4212] = 4024, + [4213] = 4088, + [4214] = 4059, + [4215] = 4111, [4216] = 4216, - [4217] = 4147, - [4218] = 4046, + [4217] = 4210, + [4218] = 4218, [4219] = 4219, - [4220] = 4215, - [4221] = 4051, - [4222] = 4038, - [4223] = 4223, - [4224] = 4224, - [4225] = 4055, - [4226] = 4114, - [4227] = 4154, - [4228] = 4144, - [4229] = 4063, + [4220] = 4017, + [4221] = 4014, + [4222] = 4222, + [4223] = 4051, + [4224] = 4046, + [4225] = 4043, + [4226] = 4226, + [4227] = 4227, + [4228] = 4228, + [4229] = 4026, [4230] = 4230, - [4231] = 4028, - [4232] = 4232, - [4233] = 4033, - [4234] = 4031, - [4235] = 4072, - [4236] = 4051, - [4237] = 4034, - [4238] = 4168, - [4239] = 4114, - [4240] = 4077, + [4231] = 4231, + [4232] = 4029, + [4233] = 4228, + [4234] = 4043, + [4235] = 4032, + [4236] = 4035, + [4237] = 4237, + [4238] = 4238, + [4239] = 4239, + [4240] = 4240, [4241] = 4241, - [4242] = 1376, - [4243] = 4197, - [4244] = 4089, - [4245] = 4085, - [4246] = 4246, - [4247] = 4077, - [4248] = 4045, - [4249] = 4171, - [4250] = 4087, - [4251] = 4048, - [4252] = 4159, + [4242] = 4242, + [4243] = 4243, + [4244] = 4244, + [4245] = 4020, + [4246] = 4043, + [4247] = 4151, + [4248] = 4248, + [4249] = 4046, + [4250] = 4032, + [4251] = 4227, + [4252] = 4029, [4253] = 4253, - [4254] = 4089, - [4255] = 4255, - [4256] = 4053, - [4257] = 4147, - [4258] = 4258, - [4259] = 4116, + [4254] = 4051, + [4255] = 4130, + [4256] = 4026, + [4257] = 4257, + [4258] = 4196, + [4259] = 4259, [4260] = 4260, [4261] = 4261, - [4262] = 4178, - [4263] = 4183, - [4264] = 4061, - [4265] = 4265, - [4266] = 4030, - [4267] = 4033, + [4262] = 4059, + [4263] = 4017, + [4264] = 4105, + [4265] = 37, + [4266] = 4023, + [4267] = 25, [4268] = 4065, - [4269] = 4114, - [4270] = 4067, - [4271] = 4271, - [4272] = 4125, - [4273] = 4204, - [4274] = 4274, - [4275] = 4158, - [4276] = 4197, - [4277] = 4029, - [4278] = 4095, + [4269] = 4130, + [4270] = 4160, + [4271] = 4024, + [4272] = 4027, + [4273] = 4273, + [4274] = 4070, + [4275] = 4275, + [4276] = 4115, + [4277] = 4074, + [4278] = 4130, [4279] = 4076, - [4280] = 4197, - [4281] = 4078, + [4280] = 4077, + [4281] = 4281, [4282] = 4079, [4283] = 4283, - [4284] = 4081, - [4285] = 4147, - [4286] = 4215, - [4287] = 4204, - [4288] = 4147, - [4289] = 4069, - [4290] = 4183, + [4284] = 4031, + [4285] = 4080, + [4286] = 4286, + [4287] = 4034, + [4288] = 4288, + [4289] = 4038, + [4290] = 4290, [4291] = 4291, - [4292] = 1625, + [4292] = 4292, [4293] = 4293, - [4294] = 4204, - [4295] = 4178, - [4296] = 4296, - [4297] = 4141, - [4298] = 4171, + [4294] = 4154, + [4295] = 4018, + [4296] = 4050, + [4297] = 4297, + [4298] = 4111, [4299] = 4299, - [4300] = 4300, - [4301] = 4168, + [4300] = 4064, + [4301] = 4058, [4302] = 4302, - [4303] = 4303, - [4304] = 4304, + [4303] = 4151, + [4304] = 4025, [4305] = 4305, - [4306] = 4197, - [4307] = 4307, - [4308] = 4308, - [4309] = 4106, - [4310] = 4103, - [4311] = 4114, - [4312] = 1626, + [4306] = 4016, + [4307] = 4082, + [4308] = 4105, + [4309] = 4072, + [4310] = 4302, + [4311] = 4154, + [4312] = 4312, [4313] = 4313, [4314] = 4314, - [4315] = 4144, + [4315] = 4315, [4316] = 4316, - [4317] = 4057, - [4318] = 4091, - [4319] = 4034, - [4320] = 4183, - [4321] = 4090, - [4322] = 4154, - [4323] = 4089, - [4324] = 4324, - [4325] = 4033, - [4326] = 4135, - [4327] = 4327, - [4328] = 4328, - [4329] = 4029, - [4330] = 4178, + [4317] = 4154, + [4318] = 4075, + [4319] = 4039, + [4320] = 4028, + [4321] = 4321, + [4322] = 4322, + [4323] = 4173, + [4324] = 4160, + [4325] = 4325, + [4326] = 4080, + [4327] = 4227, + [4328] = 4020, + [4329] = 4062, + [4330] = 4115, [4331] = 4331, [4332] = 4332, - [4333] = 4086, - [4334] = 4334, - [4335] = 4335, - [4336] = 4090, - [4337] = 4091, - [4338] = 4131, - [4339] = 4144, - [4340] = 4241, - [4341] = 4131, - [4342] = 4141, - [4343] = 4343, - [4344] = 4171, - [4345] = 4130, - [4346] = 4042, - [4347] = 4347, - [4348] = 4348, - [4349] = 4092, - [4350] = 4103, - [4351] = 4069, - [4352] = 4106, - [4353] = 4035, - [4354] = 4168, - [4355] = 4112, - [4356] = 4057, - [4357] = 4080, + [4333] = 4333, + [4334] = 4057, + [4335] = 4022, + [4336] = 4248, + [4337] = 4127, + [4338] = 4024, + [4339] = 4020, + [4340] = 4018, + [4341] = 4341, + [4342] = 4227, + [4343] = 4227, + [4344] = 4344, + [4345] = 4021, + [4346] = 30, + [4347] = 4022, + [4348] = 4057, + [4349] = 4257, + [4350] = 4210, + [4351] = 4040, + [4352] = 4352, + [4353] = 4018, + [4354] = 4148, + [4355] = 4036, + [4356] = 4128, + [4357] = 4074, [4358] = 4358, - [4359] = 4359, - [4360] = 4215, + [4359] = 4111, + [4360] = 4128, [4361] = 4361, - [4362] = 4362, - [4363] = 4363, - [4364] = 4083, - [4365] = 4135, - [4366] = 4366, - [4367] = 4081, - [4368] = 4119, - [4369] = 4154, - [4370] = 4079, - [4371] = 4078, - [4372] = 4076, - [4373] = 4215, - [4374] = 4374, + [4362] = 4040, + [4363] = 4160, + [4364] = 4148, + [4365] = 4365, + [4366] = 4040, + [4367] = 4367, + [4368] = 4105, + [4369] = 4082, + [4370] = 4075, + [4371] = 4014, + [4372] = 24, + [4373] = 4151, + [4374] = 4210, [4375] = 4375, - [4376] = 4376, - [4377] = 4377, - [4378] = 4378, - [4379] = 4025, - [4380] = 4132, - [4381] = 4055, - [4382] = 4119, - [4383] = 4144, - [4384] = 4384, - [4385] = 4183, - [4386] = 4386, + [4376] = 4108, + [4377] = 4034, + [4378] = 4098, + [4379] = 4031, + [4380] = 4380, + [4381] = 4021, + [4382] = 4382, + [4383] = 4042, + [4384] = 4070, + [4385] = 4093, + [4386] = 4034, [4387] = 4387, - [4388] = 4025, - [4389] = 4389, - [4390] = 4055, + [4388] = 4031, + [4389] = 4115, + [4390] = 4130, [4391] = 4391, - [4392] = 4041, - [4393] = 4393, - [4394] = 4144, - [4395] = 4067, - [4396] = 4025, + [4392] = 4088, + [4393] = 4046, + [4394] = 4228, + [4395] = 4031, + [4396] = 4396, [4397] = 4031, - [4398] = 4055, - [4399] = 4065, - [4400] = 4025, - [4401] = 4055, - [4402] = 4402, + [4398] = 4398, + [4399] = 4367, + [4400] = 4400, + [4401] = 4401, + [4402] = 4079, [4403] = 4403, - [4404] = 4061, - [4405] = 4405, + [4404] = 4404, + [4405] = 4077, [4406] = 4406, - [4407] = 4178, - [4408] = 4408, - [4409] = 4409, - [4410] = 4410, + [4407] = 4400, + [4408] = 4281, + [4409] = 4283, + [4410] = 4076, [4411] = 4411, - [4412] = 4081, - [4413] = 4413, - [4414] = 4141, - [4415] = 4402, - [4416] = 4283, - [4417] = 4124, - [4418] = 4418, - [4419] = 4171, - [4420] = 4387, - [4421] = 4027, - [4422] = 4422, - [4423] = 4423, - [4424] = 4053, - [4425] = 4296, - [4426] = 4293, - [4427] = 4146, - [4428] = 4088, - [4429] = 4037, - [4430] = 4430, - [4431] = 4431, - [4432] = 4432, - [4433] = 4048, - [4434] = 4423, - [4435] = 4435, - [4436] = 4274, - [4437] = 4271, - [4438] = 4131, - [4439] = 4115, - [4440] = 4130, - [4441] = 4230, - [4442] = 4442, - [4443] = 4045, - [4444] = 4389, - [4445] = 4445, - [4446] = 4078, - [4447] = 4168, - [4448] = 4405, - [4449] = 4313, - [4450] = 4408, - [4451] = 4409, - [4452] = 4410, - [4453] = 4453, - [4454] = 4035, - [4455] = 4455, - [4456] = 4119, - [4457] = 4402, - [4458] = 4283, - [4459] = 4459, - [4460] = 4076, - [4461] = 4034, - [4462] = 4027, - [4463] = 4085, - [4464] = 4464, - [4465] = 4116, - [4466] = 4296, - [4467] = 4293, - [4468] = 4088, - [4469] = 4037, - [4470] = 4031, - [4471] = 4471, - [4472] = 4472, - [4473] = 4028, - [4474] = 4376, - [4475] = 4274, - [4476] = 4271, - [4477] = 4080, - [4478] = 4115, - [4479] = 4479, - [4480] = 4480, - [4481] = 4405, - [4482] = 4378, - [4483] = 4408, - [4484] = 4409, - [4485] = 4410, - [4486] = 4057, - [4487] = 4487, - [4488] = 4488, - [4489] = 4038, - [4490] = 4402, - [4491] = 4283, - [4492] = 4135, - [4493] = 4132, - [4494] = 4087, - [4495] = 4027, - [4496] = 4496, - [4497] = 4080, - [4498] = 4498, - [4499] = 4296, - [4500] = 4293, - [4501] = 4088, - [4502] = 4037, - [4503] = 4100, - [4504] = 4504, - [4505] = 4042, - [4506] = 4046, - [4507] = 4079, - [4508] = 4274, - [4509] = 4271, - [4510] = 4115, - [4511] = 4067, + [4412] = 4412, + [4413] = 4084, + [4414] = 4061, + [4415] = 4074, + [4416] = 4332, + [4417] = 4014, + [4418] = 4111, + [4419] = 4419, + [4420] = 4420, + [4421] = 4087, + [4422] = 4297, + [4423] = 4114, + [4424] = 4123, + [4425] = 4290, + [4426] = 4375, + [4427] = 4427, + [4428] = 4322, + [4429] = 4065, + [4430] = 4427, + [4431] = 4023, + [4432] = 4112, + [4433] = 4433, + [4434] = 4222, + [4435] = 4238, + [4436] = 4059, + [4437] = 4437, + [4438] = 4020, + [4439] = 4321, + [4440] = 4108, + [4441] = 4098, + [4442] = 4177, + [4443] = 4099, + [4444] = 4288, + [4445] = 4051, + [4446] = 4403, + [4447] = 4447, + [4448] = 4406, + [4449] = 4400, + [4450] = 4281, + [4451] = 4038, + [4452] = 4043, + [4453] = 4228, + [4454] = 4018, + [4455] = 4084, + [4456] = 4061, + [4457] = 4160, + [4458] = 4228, + [4459] = 4406, + [4460] = 4419, + [4461] = 4032, + [4462] = 4462, + [4463] = 4025, + [4464] = 4114, + [4465] = 4123, + [4466] = 4375, + [4467] = 4427, + [4468] = 4468, + [4469] = 4029, + [4470] = 4025, + [4471] = 4026, + [4472] = 4053, + [4473] = 4222, + [4474] = 4238, + [4475] = 4127, + [4476] = 4437, + [4477] = 4477, + [4478] = 4053, + [4479] = 4403, + [4480] = 4219, + [4481] = 4406, + [4482] = 4400, + [4483] = 4281, + [4484] = 4017, + [4485] = 4093, + [4486] = 4042, + [4487] = 4419, + [4488] = 4084, + [4489] = 4061, + [4490] = 4302, + [4491] = 4088, + [4492] = 4365, + [4493] = 4419, + [4494] = 4028, + [4495] = 4024, + [4496] = 4154, + [4497] = 4114, + [4498] = 4123, + [4499] = 4375, + [4500] = 4427, + [4501] = 4127, + [4502] = 4130, + [4503] = 4027, + [4504] = 4031, + [4505] = 4505, + [4506] = 4222, + [4507] = 4238, + [4508] = 4437, + [4509] = 4053, + [4510] = 4034, + [4511] = 4403, [4512] = 4512, - [4513] = 4405, - [4514] = 4051, - [4515] = 4408, - [4516] = 4409, - [4517] = 4410, - [4518] = 4036, - [4519] = 4065, - [4520] = 4055, - [4521] = 4083, - [4522] = 4402, - [4523] = 4283, - [4524] = 4096, - [4525] = 4125, - [4526] = 4526, - [4527] = 4027, - [4528] = 4154, - [4529] = 4529, - [4530] = 4063, - [4531] = 4296, - [4532] = 4293, - [4533] = 4088, - [4534] = 4037, + [4513] = 4406, + [4514] = 4400, + [4515] = 4281, + [4516] = 4516, + [4517] = 4051, + [4518] = 4518, + [4519] = 4053, + [4520] = 4084, + [4521] = 4061, + [4522] = 4021, + [4523] = 4523, + [4524] = 4524, + [4525] = 4419, + [4526] = 4050, + [4527] = 1605, + [4528] = 4019, + [4529] = 4114, + [4530] = 4123, + [4531] = 4375, + [4532] = 4427, + [4533] = 4099, + [4534] = 4058, [4535] = 4535, - [4536] = 4536, - [4537] = 4119, - [4538] = 4061, - [4539] = 4036, - [4540] = 4274, - [4541] = 4271, - [4542] = 4115, - [4543] = 4072, - [4544] = 4408, - [4545] = 4545, - [4546] = 4032, - [4547] = 4408, - [4548] = 4548, - [4549] = 4035, - [4550] = 4550, - [4551] = 4083, - [4552] = 4124, - [4553] = 4553, - [4554] = 4043, - [4555] = 4410, - [4556] = 4504, - [4557] = 4496, - [4558] = 4471, - [4559] = 4409, - [4560] = 4030, - [4561] = 4077, - [4562] = 4314, - [4563] = 4265, - [4564] = 4224, - [4565] = 4098, - [4566] = 4480, - [4567] = 4105, - [4568] = 4568, - [4569] = 4028, - [4570] = 4408, - [4571] = 4043, - [4572] = 4572, - [4573] = 4119, - [4574] = 4116, - [4575] = 4575, - [4576] = 4041, + [4536] = 4302, + [4537] = 4016, + [4538] = 4222, + [4539] = 4238, + [4540] = 4437, + [4541] = 4072, + [4542] = 4406, + [4543] = 4050, + [4544] = 4037, + [4545] = 4406, + [4546] = 4312, + [4547] = 4437, + [4548] = 4046, + [4549] = 4025, + [4550] = 4103, + [4551] = 4551, + [4552] = 4130, + [4553] = 4025, + [4554] = 4226, + [4555] = 4216, + [4556] = 4181, + [4557] = 4080, + [4558] = 4558, + [4559] = 4035, + [4560] = 4109, + [4561] = 4129, + [4562] = 4144, + [4563] = 4147, + [4564] = 4017, + [4565] = 4565, + [4566] = 4566, + [4567] = 4037, + [4568] = 4099, + [4569] = 1606, + [4570] = 4570, + [4571] = 4571, + [4572] = 4130, + [4573] = 4021, + [4574] = 4312, + [4575] = 4053, + [4576] = 4101, [4577] = 4577, - [4578] = 4386, - [4579] = 4035, - [4580] = 4085, - [4581] = 4581, - [4582] = 4080, - [4583] = 4583, - [4584] = 4041, - [4585] = 4043, - [4586] = 4255, - [4587] = 4087, - [4588] = 4032, - [4589] = 4025, - [4590] = 4255, - [4591] = 4591, - [4592] = 4592, - [4593] = 4036, - [4594] = 4504, - [4595] = 4496, - [4596] = 4471, - [4597] = 4597, - [4598] = 4030, - [4599] = 4042, - [4600] = 4265, - [4601] = 4224, - [4602] = 4098, - [4603] = 4083, - [4604] = 4057, - [4605] = 4605, - [4606] = 4406, - [4607] = 4498, - [4608] = 4504, - [4609] = 4496, - [4610] = 4471, - [4611] = 4144, - [4612] = 4612, - [4613] = 4096, - [4614] = 4265, - [4615] = 4224, - [4616] = 4098, - [4617] = 4057, - [4618] = 4119, - [4619] = 4619, - [4620] = 4405, - [4621] = 4083, - [4622] = 4504, - [4623] = 4496, - [4624] = 4471, - [4625] = 4057, - [4626] = 4080, - [4627] = 4124, - [4628] = 4265, - [4629] = 4224, - [4630] = 4098, - [4631] = 4083, - [4632] = 4375, - [4633] = 4403, + [4578] = 4103, + [4579] = 4579, + [4580] = 4025, + [4581] = 4404, + [4582] = 4551, + [4583] = 4080, + [4584] = 4025, + [4585] = 4098, + [4586] = 4586, + [4587] = 4021, + [4588] = 4021, + [4589] = 4018, + [4590] = 4028, + [4591] = 4403, + [4592] = 4226, + [4593] = 4216, + [4594] = 4181, + [4595] = 4018, + [4596] = 4108, + [4597] = 4039, + [4598] = 4129, + [4599] = 4144, + [4600] = 4147, + [4601] = 4038, + [4602] = 4565, + [4603] = 4101, + [4604] = 4064, + [4605] = 4099, + [4606] = 4226, + [4607] = 4216, + [4608] = 4181, + [4609] = 4070, + [4610] = 4099, + [4611] = 4099, + [4612] = 4129, + [4613] = 4144, + [4614] = 4147, + [4615] = 4079, + [4616] = 4101, + [4617] = 4103, + [4618] = 4618, + [4619] = 4130, + [4620] = 4226, + [4621] = 4216, + [4622] = 4181, + [4623] = 4115, + [4624] = 4210, + [4625] = 4039, + [4626] = 4129, + [4627] = 4144, + [4628] = 4147, + [4629] = 4412, + [4630] = 4401, + [4631] = 4053, + [4632] = 4302, + [4633] = 4178, [4634] = 4634, - [4635] = 4635, - [4636] = 4545, + [4635] = 4516, + [4636] = 4025, [4637] = 4637, - [4638] = 4430, - [4639] = 4095, - [4640] = 4095, - [4641] = 4125, - [4642] = 4083, + [4638] = 4638, + [4639] = 4639, + [4640] = 4640, + [4641] = 4035, + [4642] = 4642, [4643] = 4643, - [4644] = 4035, - [4645] = 4032, + [4644] = 4644, + [4645] = 4645, [4646] = 4646, [4647] = 4647, [4648] = 4648, [4649] = 4649, - [4650] = 4650, - [4651] = 4651, - [4652] = 4652, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -7963,1441 +7932,1092 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(878); - if (lookahead == ' ') ADVANCE(26); - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '&') ADVANCE(902); - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1611); - if (lookahead == '.') ADVANCE(1591); - if (lookahead == '/') ADVANCE(896); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == '?') ADVANCE(1592); - if (lookahead == 'B') ADVANCE(958); - if (lookahead == 'L') ADVANCE(936); - if (lookahead == 'M') ADVANCE(930); - if (lookahead == 'N') ADVANCE(942); - if (lookahead == 'S') ADVANCE(928); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == 'b') ADVANCE(1078); - if (lookahead == 'l') ADVANCE(959); - if (lookahead == 'm') ADVANCE(960); - if (lookahead == 'n') ADVANCE(1081); - if (lookahead == 's') ADVANCE(1083); - if (lookahead == '{') ADVANCE(897); - if (lookahead == '}') ADVANCE(903); + if (eof) ADVANCE(879); + if (lookahead == '"') ADVANCE(1589); + if (lookahead == '&') ADVANCE(903); + if (lookahead == '\'') ADVANCE(1594); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == ')') ADVANCE(1599); + if (lookahead == '*') ADVANCE(1583); + if (lookahead == '+') ADVANCE(1605); + if (lookahead == ',') ADVANCE(1660); + if (lookahead == '-') ADVANCE(1600); + if (lookahead == '.') ADVANCE(1586); + if (lookahead == '/') ADVANCE(897); + if (lookahead == ':') ADVANCE(1665); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1610); + if (lookahead == '>') ADVANCE(1611); + if (lookahead == '?') ADVANCE(1587); + if (lookahead == 'B') ADVANCE(957); + if (lookahead == 'L') ADVANCE(935); + if (lookahead == 'M') ADVANCE(929); + if (lookahead == 'N') ADVANCE(941); + if (lookahead == 'S') ADVANCE(927); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == 'b') ADVANCE(1076); + if (lookahead == 'l') ADVANCE(958); + if (lookahead == 'm') ADVANCE(959); + if (lookahead == 'n') ADVANCE(1079); + if (lookahead == 's') ADVANCE(1081); + if (lookahead == '{') ADVANCE(898); + if (lookahead == '}') ADVANCE(904); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1020); + lookahead == 'a') ADVANCE(1019); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(961); + lookahead == 'c') ADVANCE(960); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(969); + lookahead == 'd') ADVANCE(968); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(962); + lookahead == 'e') ADVANCE(961); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1216); + lookahead == 'f') ADVANCE(1213); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1084); + lookahead == 'g') ADVANCE(1082); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1296); + lookahead == 'i') ADVANCE(1293); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1129); + lookahead == 'k') ADVANCE(1127); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1181); + lookahead == 'o') ADVANCE(1178); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(963); + lookahead == 'p') ADVANCE(962); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1539); + lookahead == 'q') ADVANCE(1534); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1034); + lookahead == 'r') ADVANCE(1033); if (lookahead == 'T' || - lookahead == 't') ADVANCE(976); + lookahead == 't') ADVANCE(975); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1313); + lookahead == 'u') ADVANCE(1310); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(978); + lookahead == 'v') ADVANCE(977); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1206); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r') ADVANCE(25); + lookahead == 'w') ADVANCE(1203); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(0) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); - if (('H' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); + if (('H' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1609); - if (lookahead == '\r') ADVANCE(2); - if (lookahead == ' ') ADVANCE(1608); + if (lookahead == '\n') SKIP(26) END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(1610); + if (lookahead == '\n') SKIP(26) + if (lookahead == '\r') SKIP(1) END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(1606); - if (lookahead == '\r') ADVANCE(4); - if (lookahead == ' ') ADVANCE(1605); + if (lookahead == '\n') SKIP(36) END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(1607); + if (lookahead == '\n') SKIP(36) + if (lookahead == '\r') SKIP(3) END_STATE(); case 5: - if (lookahead == '\n') SKIP(44) + if (lookahead == '\n') SKIP(37) END_STATE(); case 6: - if (lookahead == '\n') SKIP(44) + if (lookahead == '\n') SKIP(37) if (lookahead == '\r') SKIP(5) END_STATE(); case 7: - if (lookahead == '\n') SKIP(46) + if (lookahead == '\n') SKIP(38) END_STATE(); case 8: - if (lookahead == '\n') SKIP(46) + if (lookahead == '\n') SKIP(38) if (lookahead == '\r') SKIP(7) END_STATE(); case 9: - if (lookahead == '\n') SKIP(34) + if (lookahead == '\n') SKIP(44) END_STATE(); case 10: - if (lookahead == '\n') SKIP(34) + if (lookahead == '\n') SKIP(44) if (lookahead == '\r') SKIP(9) END_STATE(); case 11: - if (lookahead == '\n') SKIP(58) + if (lookahead == '\n') SKIP(102) END_STATE(); case 12: - if (lookahead == '\n') SKIP(58) + if (lookahead == '\n') SKIP(102) if (lookahead == '\r') SKIP(11) END_STATE(); case 13: - if (lookahead == '\n') SKIP(53) - if (lookahead == '\r') ADVANCE(1598); - if (lookahead != 0) ADVANCE(1598); + if (lookahead == '\n') SKIP(35) + if (lookahead == '\r') ADVANCE(1593); + if (lookahead != 0) ADVANCE(1593); END_STATE(); case 14: - if (lookahead == '\n') SKIP(55) - if (lookahead == '\r') ADVANCE(1598); - if (lookahead != 0) ADVANCE(1598); + if (lookahead == '\n') SKIP(33) + if (lookahead == '\r') ADVANCE(1593); + if (lookahead != 0) ADVANCE(1593); END_STATE(); case 15: - if (lookahead == '\n') SKIP(43) + if (lookahead == '\n') SKIP(21) END_STATE(); case 16: - if (lookahead == '\n') SKIP(43) + if (lookahead == '\n') SKIP(21) if (lookahead == '\r') SKIP(15) END_STATE(); case 17: - if (lookahead == '\n') SKIP(96) + if (lookahead == '\n') SKIP(103) END_STATE(); case 18: - if (lookahead == '\n') SKIP(96) + if (lookahead == '\n') SKIP(103) if (lookahead == '\r') SKIP(17) + if (lookahead == '.') ADVANCE(143); + if (('-' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); END_STATE(); case 19: - if (lookahead == '\n') SKIP(116) + if (lookahead == '\n') ADVANCE(47); + if (lookahead == '\r') ADVANCE(20); + if (lookahead == '*') ADVANCE(896); + if (lookahead != 0) ADVANCE(48); END_STATE(); case 20: - if (lookahead == '\n') SKIP(116) - if (lookahead == '\r') SKIP(19) - if (lookahead == '.') ADVANCE(151); - if (('-' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(100); + if (lookahead == '\n') ADVANCE(47); + if (lookahead == '*') ADVANCE(896); + if (lookahead != 0) ADVANCE(48); END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(62); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '*') ADVANCE(895); - if (lookahead != 0) ADVANCE(63); + if (lookahead == ' ') ADVANCE(1770); + if (lookahead == ')') ADVANCE(1599); + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') SKIP(16) + if (lookahead == '{') ADVANCE(898); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(21) END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(62); - if (lookahead == '*') ADVANCE(895); - if (lookahead != 0) ADVANCE(63); - END_STATE(); - case 23: - if (lookahead == '\n') SKIP(27) - END_STATE(); - case 24: - if (lookahead == '\n') SKIP(27) - if (lookahead == '\r') SKIP(23) - END_STATE(); - case 25: - if (lookahead == ' ') ADVANCE(26); - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '&') ADVANCE(902); - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1611); - if (lookahead == '.') ADVANCE(1591); - if (lookahead == '/') ADVANCE(896); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == '?') ADVANCE(1592); - if (lookahead == 'B') ADVANCE(958); - if (lookahead == 'L') ADVANCE(936); - if (lookahead == 'M') ADVANCE(930); - if (lookahead == 'N') ADVANCE(942); - if (lookahead == 'S') ADVANCE(928); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == 'b') ADVANCE(1078); - if (lookahead == 'l') ADVANCE(959); - if (lookahead == 'm') ADVANCE(960); - if (lookahead == 'n') ADVANCE(1081); - if (lookahead == 's') ADVANCE(1083); - if (lookahead == '{') ADVANCE(897); - if (lookahead == '}') ADVANCE(903); + if (lookahead == '"') ADVANCE(1589); + if (lookahead == '&') ADVANCE(903); + if (lookahead == '\'') ADVANCE(1594); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == ')') ADVANCE(1599); + if (lookahead == '*') ADVANCE(1583); + if (lookahead == '+') ADVANCE(1605); + if (lookahead == ',') ADVANCE(1660); + if (lookahead == '-') ADVANCE(1600); + if (lookahead == '.') ADVANCE(1586); + if (lookahead == '/') ADVANCE(897); + if (lookahead == ':') ADVANCE(1665); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1610); + if (lookahead == '>') ADVANCE(1611); + if (lookahead == '?') ADVANCE(1587); + if (lookahead == 'B') ADVANCE(957); + if (lookahead == 'L') ADVANCE(935); + if (lookahead == 'M') ADVANCE(929); + if (lookahead == 'N') ADVANCE(941); + if (lookahead == 'S') ADVANCE(927); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == 'b') ADVANCE(1076); + if (lookahead == 'l') ADVANCE(958); + if (lookahead == 'm') ADVANCE(959); + if (lookahead == 'n') ADVANCE(1079); + if (lookahead == 's') ADVANCE(1081); + if (lookahead == '{') ADVANCE(898); + if (lookahead == '}') ADVANCE(904); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1020); + lookahead == 'a') ADVANCE(1019); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(961); + lookahead == 'c') ADVANCE(960); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(969); + lookahead == 'd') ADVANCE(968); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(962); + lookahead == 'e') ADVANCE(961); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1216); + lookahead == 'f') ADVANCE(1213); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1084); + lookahead == 'g') ADVANCE(1082); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1296); + lookahead == 'i') ADVANCE(1293); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1129); + lookahead == 'k') ADVANCE(1127); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1181); + lookahead == 'o') ADVANCE(1178); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(963); + lookahead == 'p') ADVANCE(962); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1539); + lookahead == 'q') ADVANCE(1534); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1034); + lookahead == 'r') ADVANCE(1033); if (lookahead == 'T' || - lookahead == 't') ADVANCE(976); + lookahead == 't') ADVANCE(975); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1313); + lookahead == 'u') ADVANCE(1310); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(978); + lookahead == 'v') ADVANCE(977); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1206); + lookahead == 'w') ADVANCE(1203); + if (lookahead == '\f' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(22) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); + if (('H' <= lookahead && lookahead <= 'z')) ADVANCE(1582); + END_STATE(); + case 23: + if (lookahead == '"') ADVANCE(1589); + if (lookahead == '&') ADVANCE(1624); + if (lookahead == '\'') ADVANCE(1594); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == ')') ADVANCE(1599); + if (lookahead == '*') ADVANCE(1583); + if (lookahead == ',') ADVANCE(1660); + if (lookahead == '.') ADVANCE(1584); + if (lookahead == '/') ADVANCE(46); + if (lookahead == ':') ADVANCE(1665); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); + if (lookahead == '}') ADVANCE(904); + if (lookahead == '\f' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(23) if (lookahead == '\t' || lookahead == '\n' || - lookahead == '\r') ADVANCE(25); + lookahead == '\r' || + lookahead == ' ') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); + END_STATE(); + case 24: + if (lookahead == '"') ADVANCE(1589); + if (lookahead == '&') ADVANCE(1624); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == '*') ADVANCE(1583); + if (lookahead == '+') ADVANCE(1605); + if (lookahead == '-') ADVANCE(1606); + if (lookahead == '.') ADVANCE(1584); + if (lookahead == '/') ADVANCE(897); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1610); + if (lookahead == '>') ADVANCE(1611); + if (lookahead == 'N') ADVANCE(947); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == 'n') ADVANCE(1115); + if (lookahead == '{') ADVANCE(898); + if (lookahead == '}') ADVANCE(904); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1077); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1377); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1402); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1116); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1078); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(993); if (lookahead == '\f' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(24) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(24); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); + END_STATE(); + case 25: + if (lookahead == '"') ADVANCE(1589); + if (lookahead == '&') ADVANCE(1624); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == '*') ADVANCE(1583); + if (lookahead == '+') ADVANCE(1605); + if (lookahead == '-') ADVANCE(1606); + if (lookahead == '/') ADVANCE(897); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1610); + if (lookahead == '>') ADVANCE(1611); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); + if (lookahead == '}') ADVANCE(904); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1077); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1377); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1402); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1116); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1078); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(993); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1115); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(25) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); - if (('H' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); case 26: - if (lookahead == ' ') ADVANCE(26); - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '&') ADVANCE(902); - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1611); - if (lookahead == '.') ADVANCE(1591); - if (lookahead == '/') ADVANCE(896); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == '?') ADVANCE(1592); - if (lookahead == 'B') ADVANCE(958); - if (lookahead == 'L') ADVANCE(936); - if (lookahead == 'M') ADVANCE(930); - if (lookahead == 'N') ADVANCE(942); - if (lookahead == 'S') ADVANCE(928); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == 'b') ADVANCE(1078); - if (lookahead == 'l') ADVANCE(959); - if (lookahead == 'm') ADVANCE(960); - if (lookahead == 'n') ADVANCE(1081); - if (lookahead == 's') ADVANCE(1083); - if (lookahead == '{') ADVANCE(897); - if (lookahead == '}') ADVANCE(903); + if (lookahead == '"') ADVANCE(1589); + if (lookahead == '\'') ADVANCE(1594); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == ')') ADVANCE(1599); + if (lookahead == '*') ADVANCE(1583); + if (lookahead == '+') ADVANCE(1605); + if (lookahead == ',') ADVANCE(1660); + if (lookahead == '-') ADVANCE(1606); + if (lookahead == '.') ADVANCE(1584); + if (lookahead == '/') ADVANCE(897); + if (lookahead == ':') ADVANCE(1665); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1610); + if (lookahead == '>') ADVANCE(1611); + if (lookahead == 'B') ADVANCE(141); + if (lookahead == 'L') ADVANCE(116); + if (lookahead == 'N') ADVANCE(123); + if (lookahead == 'S') ADVANCE(104); + if (lookahead == '\\') SKIP(2) + if (lookahead == 'b') ADVANCE(328); + if (lookahead == 'l') ADVANCE(144); + if (lookahead == 'n') ADVANCE(331); + if (lookahead == 's') ADVANCE(336); + if (lookahead == '{') ADVANCE(898); + if (lookahead == '}') ADVANCE(904); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1020); + lookahead == 'a') ADVANCE(221); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(961); + lookahead == 'c') ADVANCE(145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(969); + lookahead == 'd') ADVANCE(146); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(962); + lookahead == 'e') ADVANCE(147); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1216); + lookahead == 'f') ADVANCE(455); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1084); + lookahead == 'g') ADVANCE(338); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1296); + lookahead == 'i') ADVANCE(550); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1129); + lookahead == 'k') ADVANCE(351); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(149); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1180); + lookahead == 'o') ADVANCE(418); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(963); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1539); + lookahead == 'p') ADVANCE(150); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1034); + lookahead == 'r') ADVANCE(243); if (lookahead == 'T' || - lookahead == 't') ADVANCE(976); + lookahead == 't') ADVANCE(165); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1313); + lookahead == 'u') ADVANCE(579); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(978); + lookahead == 'v') ADVANCE(618); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1206); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r') ADVANCE(25); + lookahead == 'w') ADVANCE(443); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(25) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); - if (('H' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(26) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); END_STATE(); case 27: - if (lookahead == ' ') ADVANCE(28); - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(896); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'L') ADVANCE(128); - if (lookahead == 'N') ADVANCE(134); - if (lookahead == 'S') ADVANCE(117); - if (lookahead == '\\') SKIP(24) - if (lookahead == 'l') ADVANCE(152); - if (lookahead == 'n') ADVANCE(335); - if (lookahead == 's') ADVANCE(339); - if (lookahead == '{') ADVANCE(897); - if (lookahead == '}') ADVANCE(903); + if (lookahead == '"') ADVANCE(1589); + if (lookahead == '\'') ADVANCE(1594); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == ')') ADVANCE(1599); + if (lookahead == '-') ADVANCE(1600); + if (lookahead == '/') ADVANCE(46); + if (lookahead == '?') ADVANCE(1587); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(225); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(355); + lookahead == 'a') ADVANCE(1558); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(153); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(154); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(155); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(463); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(342); + lookahead == 'c') ADVANCE(1378); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(557); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(363); + lookahead == 'i') ADVANCE(1342); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(157); + lookahead == 'm') ADVANCE(1018); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1125); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(426); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(158); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(251); + lookahead == 'o') ADVANCE(1535); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1549); if (lookahead == 'T' || - lookahead == 't') ADVANCE(172); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(585); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(622); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(450); + lookahead == 't') ADVANCE(1384); if (lookahead == '\t' || lookahead == '\n' || - lookahead == '\r') ADVANCE(27); - if (lookahead == '\f' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(27) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); + if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); case 28: - if (lookahead == ' ') ADVANCE(28); - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(896); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'L') ADVANCE(128); - if (lookahead == 'N') ADVANCE(134); - if (lookahead == 'S') ADVANCE(117); - if (lookahead == '\\') SKIP(24) - if (lookahead == 'l') ADVANCE(152); - if (lookahead == 'n') ADVANCE(335); - if (lookahead == 's') ADVANCE(339); - if (lookahead == '{') ADVANCE(897); - if (lookahead == '}') ADVANCE(903); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(227); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(355); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(153); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(154); + if (lookahead == '"') ADVANCE(1589); + if (lookahead == '\'') ADVANCE(1594); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == ')') ADVANCE(1599); + if (lookahead == '-') ADVANCE(1600); + if (lookahead == '/') ADVANCE(46); + if (lookahead == '?') ADVANCE(1587); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(155); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(463); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(342); + lookahead == 'e') ADVANCE(1570); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(557); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(363); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(157); + lookahead == 'i') ADVANCE(1344); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1124); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(425); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(158); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(251); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(172); + lookahead == 'o') ADVANCE(1179); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1212); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(585); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(622); + lookahead == 'u') ADVANCE(1477); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(450); + lookahead == 'w') ADVANCE(1211); if (lookahead == '\t' || lookahead == '\n' || - lookahead == '\r') ADVANCE(27); - if (lookahead == '\f' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(27) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); + lookahead == 65279) SKIP(28) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); case 29: - if (lookahead == ' ') ADVANCE(29); - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == '-') ADVANCE(1611); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(896); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == '?') ADVANCE(1592); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1341); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); + if (lookahead == '"') ADVANCE(1589); + if (lookahead == '\'') ADVANCE(1594); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == ')') ADVANCE(1599); + if (lookahead == '-') ADVANCE(1600); + if (lookahead == '/') ADVANCE(46); + if (lookahead == '?') ADVANCE(1587); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1348); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); + lookahead == 'i') ADVANCE(1342); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1082); + lookahead == 'n') ADVANCE(1125); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1408); + lookahead == 'o') ADVANCE(1535); if (lookahead == '\t' || lookahead == '\n' || - lookahead == '\r') ADVANCE(30); - if (lookahead == '\f' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(30) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); - if (('D' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(29) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); case 30: - if (lookahead == ' ') ADVANCE(29); - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == '-') ADVANCE(1611); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(896); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == '?') ADVANCE(1592); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + if (lookahead == '"') ADVANCE(1589); + if (lookahead == '\'') ADVANCE(1594); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == '*') ADVANCE(1583); + if (lookahead == '+') ADVANCE(1605); + if (lookahead == '-') ADVANCE(1600); + if (lookahead == '.') ADVANCE(1584); + if (lookahead == '/') ADVANCE(897); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1610); + if (lookahead == '>') ADVANCE(1611); + if (lookahead == '?') ADVANCE(1587); + if (lookahead == 'N') ADVANCE(946); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == 'n') ADVANCE(1080); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); + lookahead == 'b') ADVANCE(1077); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); + lookahead == 'c') ADVANCE(1377); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); + lookahead == 'e') ADVANCE(1402); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); + lookahead == 'g') ADVANCE(1116); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1348); + lookahead == 'i') ADVANCE(1344); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); + lookahead == 'l') ADVANCE(1078); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1082); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r') ADVANCE(30); + lookahead == 'm') ADVANCE(993); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(30) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(30); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); case 31: - if (lookahead == ' ') ADVANCE(31); - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == '-') ADVANCE(1611); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(896); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == '?') ADVANCE(1592); - if (lookahead == 'N') ADVANCE(947); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == 'n') ADVANCE(1082); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1341); + if (lookahead == '"') ADVANCE(1589); + if (lookahead == '\'') ADVANCE(1594); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == '*') ADVANCE(1583); + if (lookahead == '+') ADVANCE(1605); + if (lookahead == '-') ADVANCE(1600); + if (lookahead == '.') ADVANCE(1584); + if (lookahead == '/') ADVANCE(897); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1610); + if (lookahead == '>') ADVANCE(1611); + if (lookahead == '?') ADVANCE(1587); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); + lookahead == 'b') ADVANCE(1077); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); + lookahead == 'c') ADVANCE(1377); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); + lookahead == 'e') ADVANCE(1402); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); + lookahead == 'g') ADVANCE(1116); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1348); + lookahead == 'i') ADVANCE(1344); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); + lookahead == 'l') ADVANCE(1078); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1408); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r') ADVANCE(32); + lookahead == 'm') ADVANCE(993); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1080); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(32) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); - if (('D' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(31) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); case 32: - if (lookahead == ' ') ADVANCE(31); - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == '-') ADVANCE(1611); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(896); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == '?') ADVANCE(1592); - if (lookahead == 'N') ADVANCE(947); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == 'n') ADVANCE(1082); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); + if (lookahead == '"') ADVANCE(1589); + if (lookahead == '\'') ADVANCE(1594); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == '-') ADVANCE(1600); + if (lookahead == '.') ADVANCE(1584); + if (lookahead == '/') ADVANCE(46); + if (lookahead == ':') ADVANCE(1665); + if (lookahead == '=') ADVANCE(1610); + if (lookahead == '?') ADVANCE(1587); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1348); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r') ADVANCE(32); + lookahead == 'i') ADVANCE(1344); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1125); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(32) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); case 33: - if (lookahead == ' ') ADVANCE(33); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(896); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'N') ADVANCE(140); - if (lookahead == '\\') SKIP(10) - if (lookahead == 'n') ADVANCE(338); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(606); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(354); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(625); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(341); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(584); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(495); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(306); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(589); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(198); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(161); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(687); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(699); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(839); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(397); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(652); + if (lookahead == '"') ADVANCE(1589); + if (lookahead == '/') ADVANCE(1590); + if (lookahead == '\\') ADVANCE(14); + if (lookahead == '{') ADVANCE(900); if (lookahead == '\t' || lookahead == '\n' || - lookahead == '\r') ADVANCE(34); - if (lookahead == '\f' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(34) + lookahead == 65279) ADVANCE(1591); + if (lookahead != 0) ADVANCE(1592); END_STATE(); case 34: - if (lookahead == ' ') ADVANCE(33); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(896); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'N') ADVANCE(140); - if (lookahead == '\\') SKIP(10) - if (lookahead == 'n') ADVANCE(338); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(849); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(354); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(625); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(341); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(584); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(495); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(306); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(589); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(198); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(161); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(699); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(839); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(397); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(652); + if (lookahead == '&') ADVANCE(903); + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == '\t' || lookahead == '\n' || - lookahead == '\r') ADVANCE(34); - if (lookahead == '\f' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(34) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); case 35: - if (lookahead == ' ') ADVANCE(35); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '/') ADVANCE(896); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1341); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1355); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1453); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1117); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1408); + if (lookahead == '\'') ADVANCE(1594); + if (lookahead == '/') ADVANCE(1595); + if (lookahead == '\\') ADVANCE(13); + if (lookahead == '{') ADVANCE(901); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == '\r' || + lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(36) - if (('H' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) ADVANCE(1596); + if (lookahead != 0) ADVANCE(1597); END_STATE(); case 36: - if (lookahead == ' ') ADVANCE(35); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '/') ADVANCE(896); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == ')') ADVANCE(1599); + if (lookahead == '*') ADVANCE(1583); + if (lookahead == '+') ADVANCE(1605); + if (lookahead == ',') ADVANCE(1660); + if (lookahead == '-') ADVANCE(1606); + if (lookahead == '.') ADVANCE(1584); + if (lookahead == '/') ADVANCE(897); + if (lookahead == ':') ADVANCE(1665); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1610); + if (lookahead == '>') ADVANCE(1611); + if (lookahead == 'B') ADVANCE(142); + if (lookahead == 'M') ADVANCE(110); + if (lookahead == 'N') ADVANCE(128); + if (lookahead == '\\') SKIP(4) + if (lookahead == 'b') ADVANCE(329); + if (lookahead == 'm') ADVANCE(148); + if (lookahead == 'n') ADVANCE(332); + if (lookahead == '{') ADVANCE(898); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(590); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); + lookahead == 'c') ADVANCE(621); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1355); + lookahead == 'd') ADVANCE(364); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); + lookahead == 'e') ADVANCE(240); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1453); + lookahead == 'f') ADVANCE(458); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); + lookahead == 'g') ADVANCE(338); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(582); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(351); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1117); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + lookahead == 'l') ADVANCE(152); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(417); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(204); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(617); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(450); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(586); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(448); + if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(36) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(36); END_STATE(); case 37: - if (lookahead == ' ') ADVANCE(37); - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '&') ADVANCE(1635); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '/') ADVANCE(896); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == '}') ADVANCE(903); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == ')') ADVANCE(1599); + if (lookahead == '*') ADVANCE(1583); + if (lookahead == '+') ADVANCE(1605); + if (lookahead == ',') ADVANCE(1660); + if (lookahead == '-') ADVANCE(1606); + if (lookahead == '.') ADVANCE(1584); + if (lookahead == '/') ADVANCE(897); + if (lookahead == ':') ADVANCE(1665); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1610); + if (lookahead == '>') ADVANCE(1611); + if (lookahead == 'L') ADVANCE(117); + if (lookahead == 'S') ADVANCE(105); + if (lookahead == '\\') SKIP(6) + if (lookahead == 'l') ADVANCE(194); + if (lookahead == 's') ADVANCE(346); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1341); + lookahead == 'a') ADVANCE(222); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); + lookahead == 'b') ADVANCE(330); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); + lookahead == 'c') ADVANCE(206); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(193); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); + lookahead == 'e') ADVANCE(577); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(497); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); + lookahead == 'g') ADVANCE(298); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(551); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); + lookahead == 'm') ADVANCE(153); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1117); + lookahead == 'n') ADVANCE(333); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1408); + lookahead == 'o') ADVANCE(417); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(691); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(244); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(648); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(741); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(445); + if (lookahead == '\f' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(37) if (lookahead == '\t' || lookahead == '\n' || - lookahead == '\f' || lookahead == '\r' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(38) - if (('D' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == ' ') ADVANCE(37); END_STATE(); case 38: - if (lookahead == ' ') ADVANCE(37); - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '&') ADVANCE(1635); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '/') ADVANCE(896); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == '}') ADVANCE(903); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == '*') ADVANCE(1583); + if (lookahead == '+') ADVANCE(1605); + if (lookahead == ',') ADVANCE(1660); + if (lookahead == '-') ADVANCE(1606); + if (lookahead == '.') ADVANCE(1584); + if (lookahead == '/') ADVANCE(897); + if (lookahead == ':') ADVANCE(1665); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1610); + if (lookahead == '>') ADVANCE(1611); + if (lookahead == 'N') ADVANCE(129); + if (lookahead == 'S') ADVANCE(106); + if (lookahead == '\\') SKIP(8) + if (lookahead == 'n') ADVANCE(334); + if (lookahead == 's') ADVANCE(442); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); + lookahead == 'b') ADVANCE(330); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); + lookahead == 'c') ADVANCE(207); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(614); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); + lookahead == 'e') ADVANCE(673); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(500); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); + lookahead == 'g') ADVANCE(338); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); + lookahead == 'l') ADVANCE(297); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1117); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + lookahead == 'm') ADVANCE(189); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(568); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(841); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(245); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(760); + if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(38) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(38); END_STATE(); case 39: - if (lookahead == ' ') ADVANCE(39); - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '&') ADVANCE(1635); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(896); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'N') ADVANCE(948); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == 'n') ADVANCE(1117); - if (lookahead == '{') ADVANCE(897); - if (lookahead == '}') ADVANCE(903); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1341); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == '*') ADVANCE(1583); + if (lookahead == '+') ADVANCE(1605); + if (lookahead == ',') ADVANCE(1660); + if (lookahead == '-') ADVANCE(1606); + if (lookahead == '/') ADVANCE(897); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1610); + if (lookahead == '>') ADVANCE(1611); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); + lookahead == 'b') ADVANCE(1077); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); + lookahead == 'c') ADVANCE(1377); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1351); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); + lookahead == 'e') ADVANCE(1402); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1448); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); + lookahead == 'g') ADVANCE(1116); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); + lookahead == 'l') ADVANCE(1078); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1408); + lookahead == 'm') ADVANCE(993); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1115); if (lookahead == '\t' || lookahead == '\n' || - lookahead == '\r') ADVANCE(40); - if (lookahead == '\f' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(40) - if (('D' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(39) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); case 40: - if (lookahead == ' ') ADVANCE(39); - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '&') ADVANCE(1635); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(896); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'N') ADVANCE(948); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == 'n') ADVANCE(1117); - if (lookahead == '{') ADVANCE(897); - if (lookahead == '}') ADVANCE(903); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == ',') ADVANCE(1660); + if (lookahead == '/') ADVANCE(46); + if (lookahead == ':') ADVANCE(1665); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); + lookahead == 'b') ADVANCE(1414); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1309); if (lookahead == '\t' || lookahead == '\n' || - lookahead == '\r') ADVANCE(40); - if (lookahead == '\f' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(40) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); case 41: - if (lookahead == ' ') ADVANCE(41); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '/') ADVANCE(896); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'N') ADVANCE(948); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == 'n') ADVANCE(1117); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1341); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1355); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == '.') ADVANCE(1584); + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1453); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); + lookahead == 'f') ADVANCE(1243); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1348); + if (lookahead == '\f' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(41) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(41); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); + END_STATE(); + case 42: + if (lookahead == ')') ADVANCE(1599); + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1007); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1344); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1408); + lookahead == 'o') ADVANCE(1535); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == '\r' || + lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(42) - if (('H' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 42: - if (lookahead == ' ') ADVANCE(41); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '/') ADVANCE(896); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'N') ADVANCE(948); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == 'n') ADVANCE(1117); - if (lookahead == '{') ADVANCE(897); + case 43: + if (lookahead == '*') ADVANCE(1583); + if (lookahead == '+') ADVANCE(1605); + if (lookahead == ',') ADVANCE(1660); + if (lookahead == '-') ADVANCE(1606); + if (lookahead == '/') ADVANCE(897); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1610); + if (lookahead == '>') ADVANCE(1611); + if (lookahead == 'N') ADVANCE(947); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == 'n') ADVANCE(1115); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); + lookahead == 'b') ADVANCE(1077); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); + lookahead == 'c') ADVANCE(1377); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1355); + lookahead == 'd') ADVANCE(1351); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); + lookahead == 'e') ADVANCE(1402); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1453); + lookahead == 'f') ADVANCE(1448); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); + lookahead == 'g') ADVANCE(1116); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); + lookahead == 'l') ADVANCE(1078); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(42) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); - END_STATE(); - case 43: - if (lookahead == ' ') ADVANCE(1781); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') SKIP(16) - if (lookahead == '{') ADVANCE(897); + lookahead == 'm') ADVANCE(993); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == '\r' || + lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(43) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); case 44: - if (lookahead == ' ') ADVANCE(45); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(896); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'B') ADVANCE(150); - if (lookahead == 'M') ADVANCE(123); - if (lookahead == 'S') ADVANCE(118); - if (lookahead == '\\') SKIP(6) - if (lookahead == 'b') ADVANCE(356); - if (lookahead == 'm') ADVANCE(156); - if (lookahead == 's') ADVANCE(340); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(226); + if (lookahead == '*') ADVANCE(1583); + if (lookahead == '+') ADVANCE(1605); + if (lookahead == '-') ADVANCE(1606); + if (lookahead == '.') ADVANCE(1586); + if (lookahead == '/') ADVANCE(897); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1610); + if (lookahead == '>') ADVANCE(1611); + if (lookahead == 'N') ADVANCE(130); + if (lookahead == '\\') SKIP(10) + if (lookahead == 'n') ADVANCE(335); + if (lookahead == '{') ADVANCE(898); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(327); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(209); + lookahead == 'c') ADVANCE(210); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(372); + lookahead == 'd') ADVANCE(337); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(247); + lookahead == 'e') ADVANCE(578); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(466); + lookahead == 'f') ADVANCE(833); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(342); + lookahead == 'g') ADVANCE(298); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(558); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(363); + lookahead == 'i') ADVANCE(600); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(160); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(336); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(423); + lookahead == 'l') ADVANCE(297); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(190); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(212); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(250); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(459); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(592); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(452); + lookahead == 'p') ADVANCE(697); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(392); if (lookahead == '\t' || lookahead == '\n' || - lookahead == '\r') ADVANCE(44); - if (lookahead == '\f' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(44) END_STATE(); case 45: - if (lookahead == ' ') ADVANCE(45); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(896); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'B') ADVANCE(150); - if (lookahead == 'M') ADVANCE(123); - if (lookahead == 'S') ADVANCE(118); - if (lookahead == '\\') SKIP(6) - if (lookahead == 'b') ADVANCE(356); - if (lookahead == 'm') ADVANCE(156); - if (lookahead == 's') ADVANCE(340); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(228); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(209); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(372); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(247); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(466); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(342); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(558); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(363); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(160); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(336); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(424); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(212); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(250); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(459); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(592); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(452); + if (lookahead == '*') ADVANCE(891); + if (lookahead == '.') ADVANCE(143); + if (lookahead == '/') ADVANCE(883); + if (('-' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); + END_STATE(); + case 46: + if (lookahead == '*') ADVANCE(891); + if (lookahead == '/') ADVANCE(881); + END_STATE(); + case 47: + if (lookahead == '*') ADVANCE(896); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '\\') ADVANCE(19); + if (lookahead == '{') ADVANCE(899); if (lookahead == '\t' || lookahead == '\n' || - lookahead == '\r') ADVANCE(44); - if (lookahead == '\f' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(44) + lookahead == 65279) ADVANCE(47); + if (lookahead != 0) ADVANCE(48); END_STATE(); - case 46: - if (lookahead == ' ') ADVANCE(47); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(896); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'B') ADVANCE(150); - if (lookahead == 'N') ADVANCE(139); - if (lookahead == '\\') SKIP(8) - if (lookahead == 'b') ADVANCE(356); - if (lookahead == 'n') ADVANCE(337); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(583); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(626); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(372); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(248); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(489); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(342); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(589); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(363); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(160); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(156); + case 48: + if (lookahead == '*') ADVANCE(896); + if (lookahead != 0) ADVANCE(48); + END_STATE(); + case 49: + if (lookahead == '*') ADVANCE(892); + if (lookahead == '/') ADVANCE(882); + if (lookahead != 0) ADVANCE(48); + END_STATE(); + case 50: + if (lookahead == ',') ADVANCE(1660); + if (lookahead == '/') ADVANCE(46); + if (lookahead == ':') ADVANCE(1665); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(423); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(211); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(621); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(459); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(591); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(455); + lookahead == 'o') ADVANCE(1309); if (lookahead == '\t' || lookahead == '\n' || - lookahead == '\r') ADVANCE(46); - if (lookahead == '\f' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(46) + lookahead == 65279) SKIP(50) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 47: - if (lookahead == ' ') ADVANCE(47); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(896); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'B') ADVANCE(150); - if (lookahead == 'N') ADVANCE(139); - if (lookahead == '\\') SKIP(8) - if (lookahead == 'b') ADVANCE(356); - if (lookahead == 'n') ADVANCE(337); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(586); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(626); + case 51: + if (lookahead == ',') ADVANCE(1660); + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(372); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(248); + lookahead == 'd') ADVANCE(1351); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(489); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(342); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(589); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(363); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(160); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(156); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(424); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(211); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(621); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(459); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(591); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(455); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r') ADVANCE(46); - if (lookahead == '\f' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(46) - END_STATE(); - case 48: - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '&') ADVANCE(1635); - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(61); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == '}') ADVANCE(903); - if (lookahead == '\f' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(48) - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); - END_STATE(); - case 49: - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '-') ADVANCE(1611); - if (lookahead == '/') ADVANCE(61); - if (lookahead == '?') ADVANCE(1592); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1563); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1382); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1346); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1019); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1127); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1540); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1554); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1388); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(49) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); - if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1587); - END_STATE(); - case 50: - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '-') ADVANCE(1611); - if (lookahead == '/') ADVANCE(61); - if (lookahead == '?') ADVANCE(1592); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1575); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1348); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1126); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1182); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1215); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1482); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1214); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(50) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); - END_STATE(); - case 51: - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '-') ADVANCE(1611); - if (lookahead == '/') ADVANCE(61); - if (lookahead == '?') ADVANCE(1592); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1346); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1127); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1540); + lookahead == 'f') ADVANCE(1448); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9406,464 +9026,186 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(51) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); case 52: - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == '-') ADVANCE(1611); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(61); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '?') ADVANCE(1592); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1348); + if (lookahead == '-') ADVANCE(109); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1127); - if (lookahead == '\f' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(52) - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 'n') ADVANCE(76); END_STATE(); case 53: - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '/') ADVANCE(1595); - if (lookahead == '\\') ADVANCE(13); - if (lookahead == '{') ADVANCE(899); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(1596); - if (lookahead != 0) ADVANCE(1597); + if (lookahead == '-') ADVANCE(159); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(76); END_STATE(); case 54: - if (lookahead == '&') ADVANCE(902); - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(54) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + if (lookahead == '-') ADVANCE(470); END_STATE(); case 55: - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '/') ADVANCE(1600); - if (lookahead == '\\') ADVANCE(14); - if (lookahead == '{') ADVANCE(900); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(1601); - if (lookahead != 0) ADVANCE(1602); + if (lookahead == '-') ADVANCE(710); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(380); END_STATE(); case 56: - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '/') ADVANCE(61); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1419); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(56) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + if (lookahead == '-') ADVANCE(111); END_STATE(); case 57: - if (lookahead == '(') ADVANCE(1603); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1246); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1352); - if (lookahead == '\f' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(57) - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(57); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + if (lookahead == '-') ADVANCE(253); END_STATE(); case 58: - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(61); - if (lookahead == 'S') ADVANCE(119); - if (lookahead == '\\') SKIP(12) - if (lookahead == 's') ADVANCE(351); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(229); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(844); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(208); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(207); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(845); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(507); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(399); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(590); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(393); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(352); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(427); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(702); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(842); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(252); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(381); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(758); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(194); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(462); - if (lookahead == '\f' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(58) - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(58); + if (lookahead == '-') ADVANCE(387); END_STATE(); case 59: - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1008); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1348); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1540); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(59) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + if (lookahead == '-') ADVANCE(212); END_STATE(); case 60: - if (lookahead == '*') ADVANCE(890); - if (lookahead == '.') ADVANCE(151); - if (lookahead == '/') ADVANCE(882); - if (('-' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(100); + if (lookahead == '-') ADVANCE(113); END_STATE(); case 61: - if (lookahead == '*') ADVANCE(890); - if (lookahead == '/') ADVANCE(880); + if (lookahead == '-') ADVANCE(388); END_STATE(); case 62: - if (lookahead == '*') ADVANCE(895); - if (lookahead == '/') ADVANCE(64); - if (lookahead == '\\') ADVANCE(21); - if (lookahead == '{') ADVANCE(898); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(62); - if (lookahead != 0) ADVANCE(63); + if (lookahead == '-') ADVANCE(112); END_STATE(); case 63: - if (lookahead == '*') ADVANCE(895); - if (lookahead != 0) ADVANCE(63); + if (lookahead == '-') ADVANCE(254); END_STATE(); case 64: - if (lookahead == '*') ADVANCE(891); - if (lookahead == '/') ADVANCE(881); - if (lookahead != 0) ADVANCE(63); + if (lookahead == '-') ADVANCE(282); END_STATE(); case 65: - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '/') ADVANCE(61); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(65) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + if (lookahead == '-') ADVANCE(422); END_STATE(); case 66: - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1355); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1453); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(66) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + if (lookahead == '-') ADVANCE(526); END_STATE(); case 67: - if (lookahead == '-') ADVANCE(122); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(90); + if (lookahead == '-') ADVANCE(662); END_STATE(); case 68: - if (lookahead == '-') ADVANCE(168); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(90); + if (lookahead == '-') ADVANCE(530); END_STATE(); case 69: - if (lookahead == '-') ADVANCE(477); + if (lookahead == '-') ADVANCE(162); END_STATE(); case 70: - if (lookahead == '-') ADVANCE(715); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(387); + if (lookahead == '-') ADVANCE(824); END_STATE(); case 71: - if (lookahead == '-') ADVANCE(260); + if (lookahead == '-') ADVANCE(824); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(76); END_STATE(); case 72: - if (lookahead == '-') ADVANCE(124); + if (lookahead == '-') ADVANCE(748); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(380); END_STATE(); case 73: - if (lookahead == '-') ADVANCE(261); + if (lookahead == '-') ADVANCE(498); END_STATE(); case 74: - if (lookahead == '-') ADVANCE(125); + if (lookahead == '-') ADVANCE(527); END_STATE(); case 75: - if (lookahead == '-') ADVANCE(224); + if (lookahead == '-') ADVANCE(749); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1723); END_STATE(); case 76: - if (lookahead == '-') ADVANCE(395); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(90); + if (lookahead == '-') ADVANCE(756); END_STATE(); case 77: - if (lookahead == '-') ADVANCE(262); + if (lookahead == '-') ADVANCE(472); END_STATE(); case 78: - if (lookahead == '-') ADVANCE(291); + if (lookahead == '-') ADVANCE(557); END_STATE(); case 79: - if (lookahead == '-') ADVANCE(431); + if (lookahead == '-') ADVANCE(642); END_STATE(); case 80: - if (lookahead == '-') ADVANCE(823); + if (lookahead == '-') ADVANCE(820); END_STATE(); case 81: - if (lookahead == '-') ADVANCE(533); + if (lookahead == '-') ADVANCE(709); END_STATE(); case 82: - if (lookahead == '-') ADVANCE(533); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1646); + if (lookahead == '-') ADVANCE(469); END_STATE(); case 83: - if (lookahead == '-') ADVANCE(667); - END_STATE(); - case 84: - if (lookahead == '-') ADVANCE(538); - END_STATE(); - case 85: - if (lookahead == '-') ADVANCE(171); - END_STATE(); - case 86: - if (lookahead == '-') ADVANCE(751); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(387); - END_STATE(); - case 87: - if (lookahead == '-') ADVANCE(503); - END_STATE(); - case 88: - if (lookahead == '-') ADVANCE(534); - END_STATE(); - case 89: - if (lookahead == '-') ADVANCE(752); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1734); - END_STATE(); - case 90: - if (lookahead == '-') ADVANCE(760); - END_STATE(); - case 91: - if (lookahead == '-') ADVANCE(565); - END_STATE(); - case 92: - if (lookahead == '-') ADVANCE(479); - END_STATE(); - case 93: - if (lookahead == '-') ADVANCE(646); - END_STATE(); - case 94: - if (lookahead == '-') ADVANCE(819); - END_STATE(); - case 95: - if (lookahead == '-') ADVANCE(476); - END_STATE(); - case 96: - if (lookahead == '.') ADVANCE(1591); - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') SKIP(18) - if (lookahead == '{') ADVANCE(897); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(214); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(831); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(714); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(96) - END_STATE(); - case 97: - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(61); - if (lookahead == 'N') ADVANCE(949); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + if (lookahead == '.') ADVANCE(1584); + if (lookahead == '/') ADVANCE(46); + if (lookahead == 'N') ADVANCE(948); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(97) + lookahead == 65279) SKIP(83) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(97); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == ' ') ADVANCE(83); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 98: - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 84: + if (lookahead == '.') ADVANCE(1584); + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1460); + lookahead == 'a') ADVANCE(1455); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1246); + lookahead == 'f') ADVANCE(1243); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1352); + lookahead == 'i') ADVANCE(1348); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(98) + lookahead == 65279) SKIP(84) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(98); - if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == ' ') ADVANCE(84); + if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 99: - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 85: + if (lookahead == '.') ADVANCE(1584); + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1560); + lookahead == 'q') ADVANCE(1555); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(99) + lookahead == 65279) SKIP(85) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(99); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == ' ') ADVANCE(85); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 100: - if (lookahead == '.') ADVANCE(151); + case 86: + if (lookahead == '.') ADVANCE(143); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(100); + lookahead == '|') ADVANCE(86); END_STATE(); - case 101: - if (lookahead == '/') ADVANCE(61); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 87: + if (lookahead == '/') ADVANCE(46); + if (lookahead == ':') ADVANCE(1665); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1312); + lookahead == 'o') ADVANCE(1309); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1519); + lookahead == 's') ADVANCE(1514); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1420); + lookahead == 't') ADVANCE(1415); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1208); + lookahead == 'w') ADVANCE(1205); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9871,18 +9213,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(101) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(87) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 102: - if (lookahead == '/') ADVANCE(61); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 88: + if (lookahead == '/') ADVANCE(46); + if (lookahead == ':') ADVANCE(1665); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1312); + lookahead == 'o') ADVANCE(1309); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1208); + lookahead == 'w') ADVANCE(1205); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9890,31 +9232,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(102) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(88) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 103: - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 89: + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(967); + lookahead == 'c') ADVANCE(966); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1119); + lookahead == 'd') ADVANCE(1117); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1268); + lookahead == 'e') ADVANCE(1265); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1243); + lookahead == 'f') ADVANCE(1240); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); + lookahead == 'i') ADVANCE(1319); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1311); + lookahead == 'o') ADVANCE(1308); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1439); + lookahead == 'p') ADVANCE(1434); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1122); + lookahead == 'r') ADVANCE(1120); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1339); + lookahead == 'u') ADVANCE(1336); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9922,31 +9264,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(103) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(89) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 104: - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 90: + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(967); + lookahead == 'c') ADVANCE(966); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1119); + lookahead == 'd') ADVANCE(1117); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1310); + lookahead == 'e') ADVANCE(1307); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1243); + lookahead == 'f') ADVANCE(1240); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); + lookahead == 'i') ADVANCE(1319); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1311); + lookahead == 'o') ADVANCE(1308); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1439); + lookahead == 'p') ADVANCE(1434); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1122); + lookahead == 'r') ADVANCE(1120); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1339); + lookahead == 'u') ADVANCE(1336); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9954,27 +9296,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(104) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(90) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 105: - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 91: + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1006); + lookahead == 'c') ADVANCE(1005); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1119); + lookahead == 'd') ADVANCE(1117); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1359); + lookahead == 'f') ADVANCE(1355); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); + lookahead == 'i') ADVANCE(1319); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1311); + lookahead == 'o') ADVANCE(1308); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1122); + lookahead == 'r') ADVANCE(1120); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1340); + lookahead == 'u') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9982,19 +9324,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(105) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(91) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 106: - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 92: + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1280); + lookahead == 'c') ADVANCE(1277); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1421); + lookahead == 'p') ADVANCE(1416); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1356); + lookahead == 'v') ADVANCE(1352); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -10002,17 +9344,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(106) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(92) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 107: - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 93: + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1280); + lookahead == 'c') ADVANCE(1277); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1356); + lookahead == 'v') ADVANCE(1352); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -10020,15 +9362,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(107) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(93) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 108: - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 94: + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1280); + lookahead == 'c') ADVANCE(1277); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -10036,17 +9378,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(108) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(94) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 109: - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 95: + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1355); + lookahead == 'd') ADVANCE(1351); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1245); + lookahead == 'f') ADVANCE(1242); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -10054,15 +9396,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(109) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(95) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 110: - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 96: + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1008); + lookahead == 'd') ADVANCE(1007); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -10070,15 +9412,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(110) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(96) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 111: - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 97: + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1453); + lookahead == 'f') ADVANCE(1448); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -10086,19 +9428,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(111) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(97) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 112: - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 98: + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1237); + lookahead == 'f') ADVANCE(1234); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1004); + lookahead == 'l') ADVANCE(1003); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1134); + lookahead == 'n') ADVANCE(1132); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -10106,17 +9448,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(112) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(98) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 113: - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 99: + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1237); + lookahead == 'f') ADVANCE(1234); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1004); + lookahead == 'l') ADVANCE(1003); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -10124,15 +9466,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(113) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(99) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 114: - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 100: + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1421); + lookahead == 'p') ADVANCE(1416); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -10140,15 +9482,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(114) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(100) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 115: - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 101: + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1163); + lookahead == 't') ADVANCE(1161); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -10156,13 +9498,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(115) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(101) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 116: - if (lookahead == '/') ADVANCE(60); - if (lookahead == '\\') ADVANCE(20); - if (lookahead == '{') ADVANCE(897); + case 102: + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') SKIP(12) + if (lookahead == '{') ADVANCE(898); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(220); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(846); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(205); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(847); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(393); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(584); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(383); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(348); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(834); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(698); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(844); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(394); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(347); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(372); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(187); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(102) + END_STATE(); + case 103: + if (lookahead == '/') ADVANCE(45); + if (lookahead == '\\') ADVANCE(18); + if (lookahead == '{') ADVANCE(898); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -10170,1891 +9555,1918 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(116) + lookahead == 65279) SKIP(103) if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '|')) ADVANCE(100); + ('A' <= lookahead && lookahead <= '|')) ADVANCE(86); END_STATE(); - case 117: - if (lookahead == 'C') ADVANCE(142); + case 104: + if (lookahead == 'C') ADVANCE(132); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(691); + lookahead == 'e') ADVANCE(692); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(179); + lookahead == 'h') ADVANCE(171); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(438); + lookahead == 'i') ADVANCE(430); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(824); + lookahead == 'o') ADVANCE(825); if (lookahead == 'T' || - lookahead == 't') ADVANCE(628); + lookahead == 't') ADVANCE(623); END_STATE(); - case 118: - if (lookahead == 'C') ADVANCE(142); + case 105: + if (lookahead == 'C') ADVANCE(132); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(691); + lookahead == 'e') ADVANCE(693); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(179); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(824); + lookahead == 'h') ADVANCE(171); if (lookahead == 'T' || - lookahead == 't') ADVANCE(627); + lookahead == 't') ADVANCE(622); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(229); END_STATE(); - case 119: - if (lookahead == 'C') ADVANCE(142); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(692); + case 106: + if (lookahead == 'C') ADVANCE(132); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(216); + lookahead == 'h') ADVANCE(171); if (lookahead == 'T' || - lookahead == 't') ADVANCE(196); + lookahead == 't') ADVANCE(635); END_STATE(); - case 120: - if (lookahead == 'D') ADVANCE(1697); + case 107: + if (lookahead == 'D') ADVANCE(1686); END_STATE(); - case 121: - if (lookahead == 'E') ADVANCE(1660); - if (lookahead == 'e') ADVANCE(1660); + case 108: + if (lookahead == 'E') ADVANCE(1649); + if (lookahead == 'e') ADVANCE(1649); END_STATE(); - case 122: - if (lookahead == 'E') ADVANCE(143); - if (lookahead == 'e') ADVANCE(275); + case 109: + if (lookahead == 'E') ADVANCE(134); + if (lookahead == 'e') ADVANCE(267); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(670); + lookahead == 'a') ADVANCE(666); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(637); + lookahead == 'c') ADVANCE(633); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(632); + lookahead == 'l') ADVANCE(627); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(176); + lookahead == 'm') ADVANCE(168); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(598); + lookahead == 'u') ADVANCE(592); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(178); + lookahead == 'w') ADVANCE(170); END_STATE(); - case 123: - if (lookahead == 'E') ADVANCE(149); + case 110: + if (lookahead == 'E') ADVANCE(140); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(658); + lookahead == 'a') ADVANCE(653); END_STATE(); - case 124: - if (lookahead == 'E') ADVANCE(148); - if (lookahead == 'e') ADVANCE(274); + case 111: + if (lookahead == 'E') ADVANCE(139); + if (lookahead == 'e') ADVANCE(266); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(637); + lookahead == 'c') ADVANCE(633); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(176); + lookahead == 'm') ADVANCE(168); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(598); + lookahead == 'u') ADVANCE(592); END_STATE(); - case 125: - if (lookahead == 'E') ADVANCE(147); + case 112: + if (lookahead == 'E') ADVANCE(138); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(598); + lookahead == 'u') ADVANCE(592); END_STATE(); - case 126: - if (lookahead == 'G') ADVANCE(1665); + case 113: + if (lookahead == 'E') ADVANCE(133); + if (lookahead == 'e') ADVANCE(726); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(627); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(170); END_STATE(); - case 127: - if (lookahead == 'H') ADVANCE(136); + case 114: + if (lookahead == 'G') ADVANCE(1654); END_STATE(); - case 128: - if (lookahead == 'I') ADVANCE(130); - if (lookahead == 'i') ADVANCE(513); + case 115: + if (lookahead == 'H') ADVANCE(125); + END_STATE(); + case 116: + if (lookahead == 'I') ADVANCE(119); + if (lookahead == 'i') ADVANCE(506); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(235); + lookahead == 'a') ADVANCE(228); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1625); + lookahead == 'e') ADVANCE(1614); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(230); + lookahead == 'o') ADVANCE(223); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1624); + lookahead == 't') ADVANCE(1613); END_STATE(); - case 129: - if (lookahead == 'I') ADVANCE(133); + case 117: + if (lookahead == 'I') ADVANCE(119); + if (lookahead == 'i') ADVANCE(506); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(226); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1614); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1613); END_STATE(); - case 130: - if (lookahead == 'K') ADVANCE(121); - if (lookahead == 'k') ADVANCE(307); + case 118: + if (lookahead == 'I') ADVANCE(122); END_STATE(); - case 131: - if (lookahead == 'L') ADVANCE(129); + case 119: + if (lookahead == 'K') ADVANCE(108); + if (lookahead == 'k') ADVANCE(299); END_STATE(); - case 132: - if (lookahead == 'L') ADVANCE(131); + case 120: + if (lookahead == 'L') ADVANCE(118); END_STATE(); - case 133: - if (lookahead == 'N') ADVANCE(126); + case 121: + if (lookahead == 'L') ADVANCE(120); END_STATE(); - case 134: - if (lookahead == 'O') ADVANCE(67); - if (lookahead == 'o') ADVANCE(68); + case 122: + if (lookahead == 'N') ADVANCE(114); + END_STATE(); + case 123: + if (lookahead == 'O') ADVANCE(52); + if (lookahead == 'o') ADVANCE(53); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1626); + lookahead == 'e') ADVANCE(1615); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(559); + lookahead == 'u') ADVANCE(552); END_STATE(); - case 135: - if (lookahead == 'O') ADVANCE(132); + case 124: + if (lookahead == 'O') ADVANCE(121); END_STATE(); - case 136: - if (lookahead == 'O') ADVANCE(120); + case 125: + if (lookahead == 'O') ADVANCE(107); END_STATE(); - case 137: - if (lookahead == 'O') ADVANCE(145); + case 126: + if (lookahead == 'O') ADVANCE(136); END_STATE(); - case 138: - if (lookahead == 'O') ADVANCE(141); - if (lookahead == 'o') ADVANCE(683); + case 127: + if (lookahead == 'O') ADVANCE(131); + if (lookahead == 'o') ADVANCE(679); END_STATE(); - case 139: - if (lookahead == 'O') ADVANCE(72); - if (lookahead == 'o') ADVANCE(73); + case 128: + if (lookahead == 'O') ADVANCE(56); + if (lookahead == 'o') ADVANCE(57); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1626); + lookahead == 'e') ADVANCE(1615); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(559); + lookahead == 'u') ADVANCE(552); END_STATE(); - case 140: - if (lookahead == 'O') ADVANCE(74); - if (lookahead == 'o') ADVANCE(80); + case 129: + if (lookahead == 'O') ADVANCE(60); + if (lookahead == 'o') ADVANCE(61); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1626); + lookahead == 'e') ADVANCE(1615); END_STATE(); - case 141: - if (lookahead == 'R') ADVANCE(1760); - if (lookahead == 'r') ADVANCE(1760); + case 130: + if (lookahead == 'O') ADVANCE(62); + if (lookahead == 'o') ADVANCE(70); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1615); END_STATE(); - case 142: + case 131: + if (lookahead == 'R') ADVANCE(1749); + if (lookahead == 'r') ADVANCE(1749); + END_STATE(); + case 132: + if (lookahead == 'R') ADVANCE(124); + END_STATE(); + case 133: if (lookahead == 'R') ADVANCE(135); + if (lookahead == 'r') ADVANCE(718); END_STATE(); - case 143: - if (lookahead == 'R') ADVANCE(144); - if (lookahead == 'r') ADVANCE(722); + case 134: + if (lookahead == 'R') ADVANCE(135); + if (lookahead == 'r') ADVANCE(718); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(453); + lookahead == 'c') ADVANCE(446); END_STATE(); - case 144: - if (lookahead == 'R') ADVANCE(138); - if (lookahead == 'r') ADVANCE(649); + case 135: + if (lookahead == 'R') ADVANCE(127); + if (lookahead == 'r') ADVANCE(645); END_STATE(); - case 145: - if (lookahead == 'R') ADVANCE(1710); + case 136: + if (lookahead == 'R') ADVANCE(1699); END_STATE(); - case 146: - if (lookahead == 'R') ADVANCE(137); + case 137: + if (lookahead == 'R') ADVANCE(126); END_STATE(); - case 147: - if (lookahead == 'R') ADVANCE(146); + case 138: + if (lookahead == 'R') ADVANCE(137); END_STATE(); - case 148: - if (lookahead == 'R') ADVANCE(146); + case 139: + if (lookahead == 'R') ADVANCE(137); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(453); + lookahead == 'c') ADVANCE(446); END_STATE(); - case 149: - if (lookahead == 'T') ADVANCE(127); + case 140: + if (lookahead == 'T') ADVANCE(115); END_STATE(); - case 150: - if (lookahead == 'Y') ADVANCE(1750); + case 141: + if (lookahead == 'Y') ADVANCE(1739); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(439); + lookahead == 'e') ADVANCE(431); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(612); + lookahead == 'i') ADVANCE(580); END_STATE(); - case 151: - if (lookahead == 'i') ADVANCE(879); + case 142: + if (lookahead == 'Y') ADVANCE(1739); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(431); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(607); END_STATE(); - case 152: + case 143: + if (lookahead == 'i') ADVANCE(880); + END_STATE(); + case 144: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(235); + lookahead == 'a') ADVANCE(228); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1625); + lookahead == 'e') ADVANCE(1614); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(513); + lookahead == 'i') ADVANCE(506); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(230); + lookahead == 'o') ADVANCE(223); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1624); + lookahead == 't') ADVANCE(1613); END_STATE(); - case 153: + case 145: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(273); + lookahead == 'a') ADVANCE(265); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(167); + lookahead == 'l') ADVANCE(158); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(519); + lookahead == 'o') ADVANCE(512); END_STATE(); - case 154: + case 146: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(787); + lookahead == 'a') ADVANCE(785); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(258); + lookahead == 'e') ADVANCE(252); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1751); + lookahead == 'o') ADVANCE(1740); END_STATE(); - case 155: + case 147: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(254); + lookahead == 'a') ADVANCE(248); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(451); + lookahead == 'c') ADVANCE(444); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(749); + lookahead == 'l') ADVANCE(746); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(281); + lookahead == 'n') ADVANCE(273); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1628); + lookahead == 'q') ADVANCE(1617); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(698); + lookahead == 'r') ADVANCE(694); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(360); + lookahead == 'v') ADVANCE(352); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(249); + lookahead == 'x') ADVANCE(242); END_STATE(); - case 156: + case 148: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(658); + lookahead == 'a') ADVANCE(653); END_STATE(); - case 157: + case 149: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(658); + lookahead == 'a') ADVANCE(653); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(807); + lookahead == 'e') ADVANCE(805); END_STATE(); - case 158: + case 150: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(441); + lookahead == 'a') ADVANCE(433); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(723); + lookahead == 'o') ADVANCE(719); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(464); + lookahead == 'r') ADVANCE(456); END_STATE(); - case 159: + case 151: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(70); + lookahead == 'a') ADVANCE(55); END_STATE(); - case 160: + case 152: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(234); + lookahead == 'a') ADVANCE(227); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1625); + lookahead == 'e') ADVANCE(1614); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(230); + lookahead == 'o') ADVANCE(223); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1624); + lookahead == 't') ADVANCE(1613); END_STATE(); - case 161: + case 153: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); + lookahead == 'a') ADVANCE(808); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(807); + lookahead == 'e') ADVANCE(805); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(616); + lookahead == 'i') ADVANCE(606); END_STATE(); - case 162: + case 154: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(509); + lookahead == 'a') ADVANCE(233); END_STATE(); - case 163: + case 155: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(241); + lookahead == 'a') ADVANCE(72); END_STATE(); - case 164: + case 156: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(86); + lookahead == 'a') ADVANCE(231); END_STATE(); - case 165: + case 157: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(239); - END_STATE(); - case 166: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(563); + lookahead == 'a') ADVANCE(555); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(550); + lookahead == 'o') ADVANCE(543); END_STATE(); - case 167: + case 158: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(747); + lookahead == 'a') ADVANCE(744); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(753); + lookahead == 'o') ADVANCE(750); END_STATE(); - case 168: + case 159: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(670); + lookahead == 'a') ADVANCE(666); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(637); + lookahead == 'c') ADVANCE(633); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(275); + lookahead == 'e') ADVANCE(267); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(632); + lookahead == 'l') ADVANCE(627); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(176); + lookahead == 'm') ADVANCE(168); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(598); + lookahead == 'u') ADVANCE(592); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(178); + lookahead == 'w') ADVANCE(170); END_STATE(); - case 169: + case 160: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(521); + lookahead == 'a') ADVANCE(514); END_STATE(); - case 170: + case 161: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(859); + lookahead == 'a') ADVANCE(860); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(617); + lookahead == 'i') ADVANCE(612); END_STATE(); - case 171: + case 162: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(436); + lookahead == 'a') ADVANCE(428); END_STATE(); - case 172: + case 163: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(588); + END_STATE(); + case 164: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(695); + lookahead == 'a') ADVANCE(502); + END_STATE(); + case 165: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(689); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(364); + lookahead == 'h') ADVANCE(355); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1736); + lookahead == 'o') ADVANCE(1725); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(173); + lookahead == 'r') ADVANCE(163); + END_STATE(); + case 166: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(523); + END_STATE(); + case 167: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(549); + END_STATE(); + case 168: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(654); + END_STATE(); + case 169: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(258); + END_STATE(); + case 170: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(473); + END_STATE(); + case 171: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(702); + END_STATE(); + case 172: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(788); END_STATE(); case 173: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(595); + lookahead == 'a') ADVANCE(525); END_STATE(); case 174: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(531); + lookahead == 'a') ADVANCE(806); END_STATE(); case 175: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(556); + lookahead == 'a') ADVANCE(515); END_STATE(); case 176: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(659); + lookahead == 'a') ADVANCE(683); END_STATE(); case 177: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(265); + lookahead == 'a') ADVANCE(683); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1674); END_STATE(); case 178: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(480); + lookahead == 'a') ADVANCE(801); END_STATE(); case 179: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(706); + lookahead == 'a') ADVANCE(779); END_STATE(); case 180: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(790); + lookahead == 'a') ADVANCE(548); END_STATE(); case 181: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(532); + lookahead == 'a') ADVANCE(531); END_STATE(); case 182: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(809); + lookahead == 'a') ADVANCE(81); END_STATE(); case 183: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(522); + lookahead == 'a') ADVANCE(688); END_STATE(); case 184: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(802); + lookahead == 'a') ADVANCE(516); END_STATE(); case 185: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(690); + lookahead == 'a') ADVANCE(509); END_STATE(); case 186: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(690); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1685); + lookahead == 'a') ADVANCE(508); END_STATE(); case 187: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(782); + lookahead == 'a') ADVANCE(684); END_STATE(); case 188: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(555); + lookahead == 'a') ADVANCE(787); END_STATE(); case 189: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(537); + lookahead == 'a') ADVANCE(807); END_STATE(); case 190: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(696); + lookahead == 'a') ADVANCE(807); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(805); END_STATE(); case 191: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(523); + lookahead == 'a') ADVANCE(771); END_STATE(); case 192: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(516); + lookahead == 'a') ADVANCE(797); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(386); END_STATE(); case 193: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(515); + lookahead == 'a') ADVANCE(799); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(252); END_STATE(); case 194: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(688); + lookahead == 'a') ADVANCE(226); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1614); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(506); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1613); END_STATE(); case 195: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(789); + lookahead == 'a') ADVANCE(556); END_STATE(); case 196: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(798); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(396); + lookahead == 'a') ADVANCE(260); END_STATE(); case 197: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(774); + lookahead == 'a') ADVANCE(270); END_STATE(); case 198: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(233); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1625); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1624); + lookahead == 'a') ADVANCE(802); END_STATE(); case 199: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(564); + lookahead == 'a') ADVANCE(664); END_STATE(); case 200: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(268); + lookahead == 'a') ADVANCE(848); END_STATE(); case 201: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(278); + lookahead == 'a') ADVANCE(436); END_STATE(); case 202: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(804); + lookahead == 'a') ADVANCE(476); END_STATE(); case 203: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(669); + lookahead == 'a') ADVANCE(598); END_STATE(); case 204: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(444); + lookahead == 'a') ADVANCE(432); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(719); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(634); END_STATE(); case 205: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(484); + lookahead == 'a') ADVANCE(800); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(251); END_STATE(); case 206: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(604); + lookahead == 'a') ADVANCE(264); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(520); END_STATE(); case 207: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(803); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(257); + lookahead == 'a') ADVANCE(264); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1751); + lookahead == 'o') ADVANCE(610); END_STATE(); case 208: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(272); + lookahead == 'a') ADVANCE(437); END_STATE(); case 209: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(272); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(520); + lookahead == 'a') ADVANCE(438); END_STATE(); case 210: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(846); + lookahead == 'a') ADVANCE(754); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(583); END_STATE(); case 211: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(440); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(723); + lookahead == 'a') ADVANCE(716); END_STATE(); case 212: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(440); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(723); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(636); + lookahead == 'a') ADVANCE(852); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(631); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(161); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(652); END_STATE(); case 213: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(445); + lookahead == 'a') ADVANCE(234); END_STATE(); case 214: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(757); + lookahead == 'a') ADVANCE(488); END_STATE(); case 215: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(446); + lookahead == 'a') ADVANCE(235); END_STATE(); case 216: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(719); + lookahead == 'a') ADVANCE(818); END_STATE(); case 217: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(242); + lookahead == 'a') ADVANCE(236); END_STATE(); case 218: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(496); + lookahead == 'a') ADVANCE(819); END_STATE(); case 219: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(243); + lookahead == 'a') ADVANCE(542); END_STATE(); case 220: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(817); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(742); END_STATE(); case 221: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(244); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(742); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(272); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(668); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1648); END_STATE(); case 222: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(818); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(742); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(404); END_STATE(); case 223: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(549); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(64); END_STATE(); case 224: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(851); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(638); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(170); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(653); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(822); END_STATE(); case 225: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(745); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(867); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(672); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1659); + lookahead == 'b') ADVANCE(822); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(616); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(674); END_STATE(); case 226: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(745); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(867); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(672); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(756); + lookahead == 'b') ADVANCE(353); END_STATE(); case 227: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(745); + lookahead == 'b') ADVANCE(353); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(289); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(672); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1659); + lookahead == 'n') ADVANCE(281); END_STATE(); case 228: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(745); + lookahead == 'b') ADVANCE(353); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(289); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(672); + lookahead == 'n') ADVANCE(281); if (lookahead == 'S' || - lookahead == 's') ADVANCE(756); + lookahead == 's') ADVANCE(763); END_STATE(); case 229: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(745); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(280); + lookahead == 'b') ADVANCE(59); END_STATE(); case 230: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(78); + lookahead == 'b') ADVANCE(524); END_STATE(); case 231: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(821); + lookahead == 'b') ADVANCE(368); END_STATE(); case 232: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(821); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(620); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(678); + lookahead == 'b') ADVANCE(528); END_STATE(); case 233: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(361); + lookahead == 'b') ADVANCE(533); END_STATE(); case 234: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(361); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(290); + lookahead == 'b') ADVANCE(535); END_STATE(); case 235: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(361); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(290); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(766); + lookahead == 'b') ADVANCE(536); END_STATE(); case 236: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(527); + lookahead == 'b') ADVANCE(537); END_STATE(); case 237: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(75); + lookahead == 'b') ADVANCE(186); END_STATE(); case 238: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(193); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1636); END_STATE(); case 239: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(377); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1639); END_STATE(); case 240: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(535); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(444); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(746); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1617); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(352); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(814); END_STATE(); case 241: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(540); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(357); END_STATE(); case 242: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(542); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(357); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(397); END_STATE(); case 243: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(543); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(624); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(424); END_STATE(); case 244: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(544); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(624); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(423); END_STATE(); case 245: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1647); + lookahead == 'c') ADVANCE(624); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(665); END_STATE(); case 246: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1650); + lookahead == 'c') ADVANCE(503); END_STATE(); case 247: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(451); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(749); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1628); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(360); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(263); + lookahead == 'c') ADVANCE(504); END_STATE(); case 248: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(451); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(749); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1628); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(360); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(814); + lookahead == 'c') ADVANCE(439); END_STATE(); case 249: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(366); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(404); + lookahead == 'c') ADVANCE(505); END_STATE(); case 250: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(629); + lookahead == 'c') ADVANCE(440); END_STATE(); case 251: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(629); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(432); + lookahead == 'c') ADVANCE(481); END_STATE(); case 252: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(629); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(674); + lookahead == 'c') ADVANCE(481); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1643); END_STATE(); case 253: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(510); + lookahead == 'c') ADVANCE(633); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(266); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(168); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(592); END_STATE(); case 254: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(447); + lookahead == 'c') ADVANCE(629); END_STATE(); case 255: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(511); + lookahead == 'c') ADVANCE(199); END_STATE(); case 256: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(448); + lookahead == 'c') ADVANCE(517); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(397); END_STATE(); case 257: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(490); + lookahead == 'c') ADVANCE(307); END_STATE(); case 258: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(490); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1654); + lookahead == 'c') ADVANCE(776); END_STATE(); case 259: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(512); + lookahead == 'c') ADVANCE(809); END_STATE(); case 260: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(637); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(275); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(632); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(176); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(598); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(178); + lookahead == 'c') ADVANCE(326); END_STATE(); case 261: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(637); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(274); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(176); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(598); + lookahead == 'c') ADVANCE(365); END_STATE(); case 262: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(633); + lookahead == 'c') ADVANCE(323); END_STATE(); case 263: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(524); + lookahead == 'c') ADVANCE(377); if (lookahead == 'T' || - lookahead == 't') ADVANCE(404); + lookahead == 't') ADVANCE(408); END_STATE(); case 264: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(203); + lookahead == 'c') ADVANCE(447); END_STATE(); case 265: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(779); + lookahead == 'c') ADVANCE(447); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(250); END_STATE(); case 266: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(315); + lookahead == 'c') ADVANCE(446); END_STATE(); case 267: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(811); + lookahead == 'c') ADVANCE(446); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(718); END_STATE(); case 268: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(334); + lookahead == 'c') ADVANCE(449); END_STATE(); case 269: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(374); + lookahead == 'c') ADVANCE(804); END_STATE(); case 270: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(331); + lookahead == 'c') ADVANCE(816); END_STATE(); case 271: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(388); + lookahead == 'c') ADVANCE(821); END_STATE(); case 272: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(454); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1757); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(856); END_STATE(); case 273: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(454); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(256); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1585); END_STATE(); case 274: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(453); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1625); END_STATE(); case 275: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(453); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(722); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1772); END_STATE(); case 276: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(456); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1685); END_STATE(); case 277: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(806); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1635); END_STATE(); case 278: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(815); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1721); END_STATE(); case 279: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(820); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1638); END_STATE(); case 280: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1768); + lookahead == 'd') ADVANCE(1712); END_STATE(); case 281: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1590); + lookahead == 'd') ADVANCE(743); END_STATE(); case 282: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1636); + lookahead == 'd') ADVANCE(475); END_STATE(); case 283: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1783); + lookahead == 'd') ADVANCE(73); END_STATE(); case 284: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1696); + lookahead == 'd') ADVANCE(343); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(395); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(815); END_STATE(); case 285: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1732); + lookahead == 'd') ADVANCE(343); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(395); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(815); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(370); END_STATE(); case 286: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1649); + lookahead == 'd') ADVANCE(343); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(815); END_STATE(); case 287: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1723); + lookahead == 'd') ADVANCE(620); END_STATE(); case 288: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(3); + lookahead == 'd') ADVANCE(737); END_STATE(); case 289: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(3); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(855); + lookahead == 'd') ADVANCE(412); END_STATE(); case 290: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(746); + lookahead == 'd') ADVANCE(740); END_STATE(); case 291: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(483); + lookahead == 'd') ADVANCE(314); END_STATE(); case 292: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(87); + lookahead == 'd') ADVANCE(350); END_STATE(); case 293: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(348); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(400); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(808); + lookahead == 'd') ADVANCE(354); END_STATE(); case 294: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(348); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(400); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(808); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(378); + lookahead == 'd') ADVANCE(435); END_STATE(); case 295: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(348); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(808); + lookahead == 'd') ADVANCE(534); END_STATE(); case 296: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(624); + lookahead == 'd') ADVANCE(843); END_STATE(); case 297: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(741); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1614); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1613); END_STATE(); case 298: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(418); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1620); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1618); END_STATE(); case 299: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(744); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1649); END_STATE(); case 300: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(322); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1741); END_STATE(); case 301: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(357); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1664); END_STATE(); case 302: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(362); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1653); END_STATE(); case 303: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(443); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1705); END_STATE(); case 304: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(541); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1604); END_STATE(); case 305: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(841); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1744); END_STATE(); case 306: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1631); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1629); + lookahead == 'e') ADVANCE(1666); END_STATE(); case 307: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1660); + lookahead == 'e') ADVANCE(1716); END_STATE(); case 308: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1752); + lookahead == 'e') ADVANCE(1642); END_STATE(); case 309: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1675); + lookahead == 'e') ADVANCE(1774); END_STATE(); case 310: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1664); + lookahead == 'e') ADVANCE(1760); END_STATE(); case 311: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1716); + lookahead == 'e') ADVANCE(1718); END_STATE(); case 312: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1615); + lookahead == 'e') ADVANCE(1637); END_STATE(); case 313: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1755); + lookahead == 'e') ADVANCE(1777); END_STATE(); case 314: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1677); + lookahead == 'e') ADVANCE(1678); END_STATE(); case 315: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1727); + lookahead == 'e') ADVANCE(1645); END_STATE(); case 316: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1653); + lookahead == 'e') ADVANCE(1719); END_STATE(); case 317: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1785); + lookahead == 'e') ADVANCE(1684); END_STATE(); case 318: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1771); + lookahead == 'e') ADVANCE(1743); END_STATE(); case 319: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1729); + lookahead == 'e') ADVANCE(1724); END_STATE(); case 320: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1648); + lookahead == 'e') ADVANCE(1668); END_STATE(); case 321: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1788); + lookahead == 'e') ADVANCE(1652); END_STATE(); case 322: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1689); + lookahead == 'e') ADVANCE(1765); END_STATE(); case 323: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1656); + lookahead == 'e') ADVANCE(1778); END_STATE(); case 324: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1730); + lookahead == 'e') ADVANCE(1640); END_STATE(); case 325: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1695); + lookahead == 'e') ADVANCE(1704); END_STATE(); case 326: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1754); + lookahead == 'e') ADVANCE(1676); END_STATE(); case 327: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1735); + lookahead == 'e') ADVANCE(431); END_STATE(); case 328: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1679); + lookahead == 'e') ADVANCE(431); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(580); END_STATE(); case 329: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1663); + lookahead == 'e') ADVANCE(431); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(607); END_STATE(); case 330: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1776); + lookahead == 'e') ADVANCE(431); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(381); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1752); END_STATE(); case 331: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1789); + lookahead == 'e') ADVANCE(1615); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(53); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(552); END_STATE(); case 332: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1651); + lookahead == 'e') ADVANCE(1615); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(57); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(552); END_STATE(); case 333: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1715); + lookahead == 'e') ADVANCE(1615); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(58); END_STATE(); case 334: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1687); + lookahead == 'e') ADVANCE(1615); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(61); END_STATE(); case 335: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1626); + lookahead == 'e') ADVANCE(1615); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(68); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(559); + lookahead == 'o') ADVANCE(70); END_STATE(); case 336: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1626); + lookahead == 'e') ADVANCE(692); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(171); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(430); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(71); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(559); + lookahead == 'o') ADVANCE(825); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(623); END_STATE(); case 337: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1626); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(73); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(559); + lookahead == 'e') ADVANCE(252); END_STATE(); case 338: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1626); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(80); + lookahead == 'e') ADVANCE(1619); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1618); END_STATE(); case 339: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(691); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(179); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(438); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(824); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(628); + lookahead == 'e') ADVANCE(521); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(160); END_STATE(); case 340: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(691); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(179); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(824); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(627); + lookahead == 'e') ADVANCE(521); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(160); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(745); END_STATE(); case 341: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(258); + lookahead == 'e') ADVANCE(521); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(181); END_STATE(); case 342: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1630); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1629); + lookahead == 'e') ADVANCE(570); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(532); END_STATE(); case 343: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(528); + lookahead == 'e') ADVANCE(859); END_STATE(); case 344: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(528); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(169); + lookahead == 'e') ADVANCE(75); END_STATE(); case 345: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(528); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(169); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(748); + lookahead == 'e') ADVANCE(1641); END_STATE(); case 346: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(528); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(189); + lookahead == 'e') ADVANCE(693); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(171); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(622); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(229); END_STATE(); case 347: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(576); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); + lookahead == 'e') ADVANCE(693); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(211); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(192); END_STATE(); case 348: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(858); + lookahead == 'e') ADVANCE(853); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(71); END_STATE(); case 349: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(89); + lookahead == 'e') ADVANCE(1729); END_STATE(); case 350: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1652); + lookahead == 'e') ADVANCE(857); END_STATE(); case 351: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(692); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(216); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(196); + lookahead == 'e') ADVANCE(399); END_STATE(); case 352: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(852); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(76); + lookahead == 'e') ADVANCE(589); END_STATE(); case 353: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1740); + lookahead == 'e') ADVANCE(507); END_STATE(); case 354: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(439); + lookahead == 'e') ADVANCE(858); END_STATE(); case 355: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(439); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(587); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(359); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1763); + lookahead == 'e') ADVANCE(569); END_STATE(); case 356: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(439); + lookahead == 'e') ADVANCE(54); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(612); + lookahead == 'i') ADVANCE(585); END_STATE(); case 357: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(856); + lookahead == 'e') ADVANCE(660); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(826); END_STATE(); case 358: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(82); + lookahead == 'e') ADVANCE(566); END_STATE(); case 359: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(162); + lookahead == 'e') ADVANCE(559); END_STATE(); case 360: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(596); + lookahead == 'e') ADVANCE(66); END_STATE(); case 361: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(514); + lookahead == 'e') ADVANCE(722); END_STATE(); case 362: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(857); + lookahead == 'e') ADVANCE(167); END_STATE(); case 363: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(403); + lookahead == 'e') ADVANCE(732); END_STATE(); case 364: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(575); + lookahead == 'e') ADVANCE(251); END_STATE(); case 365: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(69); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(593); + lookahead == 'e') ADVANCE(79); END_STATE(); case 366: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(665); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(825); + lookahead == 'e') ADVANCE(541); END_STATE(); case 367: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(573); + lookahead == 'e') ADVANCE(280); END_STATE(); case 368: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(567); + lookahead == 'e') ADVANCE(510); END_STATE(); case 369: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(81); + lookahead == 'e') ADVANCE(608); END_STATE(); case 370: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(726); + lookahead == 'e') ADVANCE(687); END_STATE(); case 371: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(736); + lookahead == 'e') ADVANCE(734); END_STATE(); case 372: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(257); + lookahead == 'e') ADVANCE(561); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(708); END_STATE(); case 373: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(175); + lookahead == 'e') ADVANCE(686); END_STATE(); case 374: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(93); + lookahead == 'e') ADVANCE(772); END_STATE(); case 375: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(548); + lookahead == 'e') ADVANCE(279); END_STATE(); case 376: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(287); + lookahead == 'e') ADVANCE(736); END_STATE(); case 377: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(517); + lookahead == 'e') ADVANCE(296); END_STATE(); case 378: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(694); + lookahead == 'e') ADVANCE(723); END_STATE(); case 379: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(738); + lookahead == 'e') ADVANCE(277); END_STATE(); case 380: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(613); + lookahead == 'e') ADVANCE(775); END_STATE(); case 381: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(569); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(711); + lookahead == 'e') ADVANCE(164); END_STATE(); case 382: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(693); + lookahead == 'e') ADVANCE(812); END_STATE(); case 383: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(775); + lookahead == 'e') ADVANCE(200); END_STATE(); case 384: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(740); + lookahead == 'e') ADVANCE(680); END_STATE(); case 385: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(286); + lookahead == 'e') ADVANCE(681); END_STATE(); case 386: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(727); + lookahead == 'e') ADVANCE(180); END_STATE(); case 387: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(778); + lookahead == 'e') ADVANCE(726); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(627); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(592); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(170); END_STATE(); case 388: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(305); + lookahead == 'e') ADVANCE(726); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(627); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(170); END_STATE(); case 389: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(812); + lookahead == 'e') ADVANCE(794); END_STATE(); case 390: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(684); + lookahead == 'e') ADVANCE(699); END_STATE(); case 391: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(685); + lookahead == 'e') ADVANCE(677); END_STATE(); case 392: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(795); + lookahead == 'e') ADVANCE(761); END_STATE(); case 393: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(210); + lookahead == 'e') ADVANCE(762); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(628); END_STATE(); case 394: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(703); + lookahead == 'e') ADVANCE(784); END_STATE(); case 395: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(730); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(632); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(598); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(178); + lookahead == 'e') ADVANCE(720); END_STATE(); case 396: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(188); + lookahead == 'e') ADVANCE(538); END_STATE(); case 397: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(764); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(639); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(237); + lookahead == 'e') ADVANCE(597); END_STATE(); case 398: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(681); + lookahead == 'e') ADVANCE(755); END_STATE(); case 399: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(765); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(631); + lookahead == 'e') ADVANCE(658); END_STATE(); case 400: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(724); + lookahead == 'e') ADVANCE(704); END_STATE(); case 401: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(545); + lookahead == 'e') ADVANCE(593); END_STATE(); case 402: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(759); + lookahead == 'e') ADVANCE(711); END_STATE(); case 403: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(663); + lookahead == 'e') ADVANCE(74); END_STATE(); case 404: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(603); + lookahead == 'e') ADVANCE(727); END_STATE(); case 405: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(708); + lookahead == 'e') ADVANCE(602); END_STATE(); case 406: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(716); + lookahead == 'e') ADVANCE(706); END_STATE(); case 407: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(599); + lookahead == 'e') ADVANCE(707); END_STATE(); case 408: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(88); + lookahead == 'e') ADVANCE(269); END_STATE(); case 409: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(731); + lookahead == 'e') ADVANCE(714); END_STATE(); case 410: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(608); + lookahead == 'e') ADVANCE(705); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(532); END_STATE(); case 411: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(710); + lookahead == 'e') ADVANCE(191); END_STATE(); case 412: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(713); + lookahead == 'e') ADVANCE(77); END_STATE(); case 413: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(277); + lookahead == 'e') ADVANCE(539); END_STATE(); case 414: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(718); + lookahead == 'e') ADVANCE(82); END_STATE(); case 415: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(709); + lookahead == 'e') ADVANCE(728); END_STATE(); case 416: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(709); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); + lookahead == 'e') ADVANCE(729); END_STATE(); case 417: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(197); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1756); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1726); END_STATE(); case 418: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(92); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1756); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1726); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(453); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(361); END_STATE(); case 419: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(546); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(425); END_STATE(); case 420: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(95); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(593); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(651); END_STATE(); case 421: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(732); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(196); END_STATE(); case 422: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(733); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(479); END_STATE(); case 423: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1767); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1737); + lookahead == 'f') ADVANCE(378); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(172); END_STATE(); case 424: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1767); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1737); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1); + lookahead == 'f') ADVANCE(378); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(172); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(831); END_STATE(); case 425: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1767); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1737); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(460); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(370); + lookahead == 'f') ADVANCE(409); END_STATE(); case 426: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1767); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1737); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(460); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(370); + lookahead == 'f') ADVANCE(391); END_STATE(); case 427: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1767); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(792); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(370); + lookahead == 'f') ADVANCE(426); END_STATE(); case 428: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(433); + lookahead == 'f') ADVANCE(813); END_STATE(); case 429: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(657); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1689); END_STATE(); case 430: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(200); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(605); END_STATE(); case 431: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(487); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(485); END_STATE(); case 432: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(386); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(180); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(830); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(344); END_STATE(); case 433: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(414); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(344); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(195); END_STATE(); case 434: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(398); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(374); END_STATE(); case 435: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(434); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(389); END_STATE(); case 436: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(813); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(376); END_STATE(); case 437: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1700); + lookahead == 'g') ADVANCE(310); END_STATE(); case 438: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(611); + lookahead == 'g') ADVANCE(322); END_STATE(); case 439: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(493); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1753); END_STATE(); case 440: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(349); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1758); END_STATE(); case 441: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(349); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(199); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1692); END_STATE(); case 442: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(383); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(171); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(635); END_STATE(); case 443: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(392); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(342); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(696); END_STATE(); case 444: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(384); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(615); END_STATE(); case 445: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(318); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(410); END_STATE(); case 446: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(330); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(619); END_STATE(); case 447: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1764); + lookahead == 'h') ADVANCE(302); END_STATE(); case 448: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1769); + lookahead == 'h') ADVANCE(482); END_STATE(); case 449: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1703); + lookahead == 'h') ADVANCE(363); END_STATE(); case 450: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(347); + lookahead == 'h') ADVANCE(355); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(701); + lookahead == 'o') ADVANCE(1725); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(163); END_STATE(); case 451: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(619); + lookahead == 'h') ADVANCE(636); END_STATE(); case 452: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(416); + lookahead == 'h') ADVANCE(203); END_STATE(); case 453: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(623); + lookahead == 'h') ADVANCE(373); END_STATE(); case 454: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(310); + lookahead == 'h') ADVANCE(402); END_STATE(); case 455: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(491); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(340); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(685); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(157); END_STATE(); case 456: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(371); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(558); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(670); END_STATE(); case 457: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(640); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(871); END_STATE(); case 458: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(206); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(341); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(685); END_STATE(); case 459: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(364); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(850); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1736); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(173); + lookahead == 'o') ADVANCE(671); END_STATE(); case 460: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(382); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(850); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(263); END_STATE(); case 461: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(406); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(850); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(803); END_STATE(); case 462: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(415); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(872); END_STATE(); case 463: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(345); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(689); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(166); + lookahead == 'i') ADVANCE(274); END_STATE(); case 464: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(566); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(676); + lookahead == 'i') ADVANCE(815); END_STATE(); case 465: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(870); + lookahead == 'i') ADVANCE(815); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(835); END_STATE(); case 466: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(344); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(689); + lookahead == 'i') ADVANCE(553); END_STATE(); case 467: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(848); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(677); + lookahead == 'i') ADVANCE(239); END_STATE(); case 468: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(848); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(805); + lookahead == 'i') ADVANCE(294); END_STATE(); case 469: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(871); + lookahead == 'i') ADVANCE(609); END_STATE(); case 470: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(282); + lookahead == 'i') ADVANCE(609); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(468); END_STATE(); case 471: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(808); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(833); + lookahead == 'i') ADVANCE(238); END_STATE(); case 472: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(560); + lookahead == 'i') ADVANCE(587); END_STATE(); case 473: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(174); + lookahead == 'i') ADVANCE(773); END_STATE(); case 474: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(246); + lookahead == 'i') ADVANCE(793); END_STATE(); case 475: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(303); + lookahead == 'i') ADVANCE(678); END_STATE(); case 476: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(614); + lookahead == 'i') ADVANCE(777); END_STATE(); case 477: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(614); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(475); + lookahead == 'i') ADVANCE(764); END_STATE(); case 478: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(245); + lookahead == 'i') ADVANCE(371); END_STATE(); case 479: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(594); + lookahead == 'i') ADVANCE(396); END_STATE(); case 480: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(776); + lookahead == 'i') ADVANCE(849); END_STATE(); case 481: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(183); + lookahead == 'i') ADVANCE(562); END_STATE(); case 482: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(794); + lookahead == 'i') ADVANCE(532); END_STATE(); case 483: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(682); + lookahead == 'i') ADVANCE(291); END_STATE(); case 484: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(780); + lookahead == 'i') ADVANCE(166); END_STATE(); case 485: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(767); + lookahead == 'i') ADVANCE(591); END_STATE(); case 486: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(379); + lookahead == 'i') ADVANCE(639); END_STATE(); case 487: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(401); + lookahead == 'i') ADVANCE(560); END_STATE(); case 488: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(847); + lookahead == 'i') ADVANCE(595); END_STATE(); case 489: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(346); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(689); + lookahead == 'i') ADVANCE(641); END_STATE(); case 490: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(562); + lookahead == 'i') ADVANCE(563); END_STATE(); case 491: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); + lookahead == 'i') ADVANCE(752); END_STATE(); case 492: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(300); + lookahead == 'i') ADVANCE(175); END_STATE(); case 493: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(597); + lookahead == 'i') ADVANCE(565); END_STATE(); case 494: if (lookahead == 'I' || @@ -12062,1691 +11474,1703 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 495: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(343); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(689); + lookahead == 'i') ADVANCE(644); END_STATE(); case 496: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(601); + lookahead == 'i') ADVANCE(647); END_STATE(); case 497: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(645); + lookahead == 'i') ADVANCE(339); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(685); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(626); END_STATE(); case 498: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(755); + lookahead == 'i') ADVANCE(611); END_STATE(); case 499: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(647); + lookahead == 'i') ADVANCE(873); END_STATE(); case 500: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(648); + lookahead == 'i') ADVANCE(413); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(675); END_STATE(); case 501: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(651); + lookahead == 'i') ADVANCE(219); END_STATE(); case 502: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(568); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1751); END_STATE(); case 503: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(615); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1745); END_STATE(); case 504: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(570); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1746); END_STATE(); case 505: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(572); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1747); END_STATE(); case 506: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(872); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(299); END_STATE(); case 507: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(419); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(679); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1629); END_STATE(); case 508: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(223); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1634); END_STATE(); case 509: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1762); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1769); END_STATE(); case 510: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1756); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1630); END_STATE(); case 511: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1757); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1696); END_STATE(); case 512: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1758); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(540); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(759); END_STATE(); case 513: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(307); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(540); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(790); END_STATE(); case 514: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1640); + lookahead == 'l') ADVANCE(1697); END_STATE(); case 515: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1645); + lookahead == 'l') ADVANCE(1627); END_STATE(); case 516: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1780); + lookahead == 'l') ADVANCE(1764); END_STATE(); case 517: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1641); + lookahead == 'l') ADVANCE(826); END_STATE(); case 518: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1707); + lookahead == 'l') ADVANCE(869); END_STATE(); case 519: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(547); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(763); + lookahead == 'l') ADVANCE(867); END_STATE(); case 520: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(547); + lookahead == 'l') ADVANCE(823); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(793); + lookahead == 'n') ADVANCE(758); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(603); END_STATE(); case 521: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1708); + lookahead == 'l') ADVANCE(275); END_STATE(); case 522: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1638); + lookahead == 'l') ADVANCE(864); END_STATE(); case 523: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1775); + lookahead == 'l') ADVANCE(457); END_STATE(); case 524: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(825); + lookahead == 'l') ADVANCE(870); END_STATE(); case 525: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(868); + lookahead == 'l') ADVANCE(738); END_STATE(); case 526: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(866); + lookahead == 'l') ADVANCE(630); END_STATE(); case 527: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(869); + lookahead == 'l') ADVANCE(632); END_STATE(); case 528: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(283); + lookahead == 'l') ADVANCE(467); END_STATE(); case 529: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(822); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(762); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(609); + lookahead == 'l') ADVANCE(358); END_STATE(); case 530: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(863); + lookahead == 'l') ADVANCE(156); END_STATE(); case 531: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(465); + lookahead == 'l') ADVANCE(522); END_STATE(); case 532: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(742); + lookahead == 'l') ADVANCE(306); END_STATE(); case 533: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(634); + lookahead == 'l') ADVANCE(324); END_STATE(); case 534: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(635); + lookahead == 'l') ADVANCE(325); END_STATE(); case 535: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(474); + lookahead == 'l') ADVANCE(345); END_STATE(); case 536: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(367); + lookahead == 'l') ADVANCE(315); END_STATE(); case 537: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(530); + lookahead == 'l') ADVANCE(321); END_STATE(); case 538: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(165); + lookahead == 'l') ADVANCE(288); END_STATE(); case 539: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(314); + lookahead == 'l') ADVANCE(290); END_STATE(); case 540: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(332); + lookahead == 'l') ADVANCE(178); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(554); END_STATE(); case 541: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(333); + lookahead == 'l') ADVANCE(216); END_STATE(); case 542: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(350); + lookahead == 'l') ADVANCE(499); END_STATE(); case 543: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(323); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1690); END_STATE(); case 544: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(329); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1762); END_STATE(); case 545: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(297); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1763); END_STATE(); case 546: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(299); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1767); END_STATE(); case 547: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(184); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(561); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1768); END_STATE(); case 548: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(220); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1701); END_STATE(); case 549: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(506); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1702); END_STATE(); case 550: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1701); + lookahead == 'm') ADVANCE(656); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(285); END_STATE(); case 551: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1773); + lookahead == 'm') ADVANCE(656); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(284); END_STATE(); case 552: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1774); + lookahead == 'm') ADVANCE(63); END_STATE(); case 553: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1778); + lookahead == 'm') ADVANCE(827); END_STATE(); case 554: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1779); + lookahead == 'm') ADVANCE(594); END_STATE(); case 555: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1712); + lookahead == 'm') ADVANCE(304); END_STATE(); case 556: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1713); + lookahead == 'm') ADVANCE(382); END_STATE(); case 557: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(661); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(294); + lookahead == 'm') ADVANCE(398); END_STATE(); case 558: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(661); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(293); + lookahead == 'm') ADVANCE(183); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(198); END_STATE(); case 559: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(77); + lookahead == 'm') ADVANCE(230); END_STATE(); case 560: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(826); + lookahead == 'm') ADVANCE(828); END_STATE(); case 561: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(600); + lookahead == 'm') ADVANCE(663); END_STATE(); case 562: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(181); + lookahead == 'm') ADVANCE(173); END_STATE(); case 563: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(312); + lookahead == 'm') ADVANCE(829); END_STATE(); case 564: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(389); + lookahead == 'm') ADVANCE(179); END_STATE(); case 565: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(402); + lookahead == 'm') ADVANCE(830); END_STATE(); case 566: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(190); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(202); + lookahead == 'm') ADVANCE(405); END_STATE(); case 567: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(236); + lookahead == 'm') ADVANCE(218); END_STATE(); case 568: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(827); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1726); END_STATE(); case 569: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(668); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1663); END_STATE(); case 570: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(828); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1742); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(305); END_STATE(); case 571: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(187); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1670); END_STATE(); case 572: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(829); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1672); END_STATE(); case 573: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(410); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1738); END_STATE(); case 574: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(222); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1687); END_STATE(); case 575: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1674); + lookahead == 'n') ADVANCE(1656); END_STATE(); case 576: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1753); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(313); + lookahead == 'n') ADVANCE(1669); END_STATE(); case 577: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1681); + lookahead == 'n') ADVANCE(273); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1617); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(352); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(256); END_STATE(); case 578: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1683); + lookahead == 'n') ADVANCE(273); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1617); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(814); END_STATE(); case 579: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1749); + lookahead == 'n') ADVANCE(225); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(356); END_STATE(); case 580: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1698); + lookahead == 'n') ADVANCE(177); END_STATE(); case 581: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1667); + lookahead == 'n') ADVANCE(851); END_STATE(); case 582: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(286); END_STATE(); case 583: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(867); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(672); + lookahead == 'n') ADVANCE(758); END_STATE(); case 584: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(281); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1628); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(698); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(360); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(814); + lookahead == 'n') ADVANCE(465); END_STATE(); case 585: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(232); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(365); + lookahead == 'n') ADVANCE(429); END_STATE(); case 586: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(289); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(672); + lookahead == 'n') ADVANCE(224); END_STATE(); case 587: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(186); + lookahead == 'n') ADVANCE(420); END_STATE(); case 588: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(850); + lookahead == 'n') ADVANCE(757); END_STATE(); case 589: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(295); + lookahead == 'n') ADVANCE(766); END_STATE(); case 590: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(471); + lookahead == 'n') ADVANCE(868); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(668); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(753); END_STATE(); case 591: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(231); + lookahead == 'n') ADVANCE(731); END_STATE(); case 592: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(231); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(365); + lookahead == 'n') ADVANCE(287); END_STATE(); case 593: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(437); + lookahead == 'n') ADVANCE(278); END_STATE(); case 594: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(429); + lookahead == 'n') ADVANCE(68); END_STATE(); case 595: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(761); + lookahead == 'n') ADVANCE(733); END_STATE(); case 596: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(769); + lookahead == 'n') ADVANCE(65); END_STATE(); case 597: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(735); + lookahead == 'n') ADVANCE(769); END_STATE(); case 598: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(296); + lookahead == 'n') ADVANCE(295); END_STATE(); case 599: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(285); + lookahead == 'n') ADVANCE(519); END_STATE(); case 600: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(84); + lookahead == 'n') ADVANCE(464); END_STATE(); case 601: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(737); + lookahead == 'n') ADVANCE(308); END_STATE(); case 602: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(79); + lookahead == 'n') ADVANCE(795); END_STATE(); case 603: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(772); + lookahead == 'n') ADVANCE(765); END_STATE(); case 604: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(304); + lookahead == 'n') ADVANCE(778); END_STATE(); case 605: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(526); + lookahead == 'n') ADVANCE(174); END_STATE(); case 606: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(288); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(409); + lookahead == 'n') ADVANCE(487); END_STATE(); case 607: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(316); + lookahead == 'n') ADVANCE(176); END_STATE(); case 608: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(796); + lookahead == 'n') ADVANCE(261); END_STATE(); case 609: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(768); + lookahead == 'n') ADVANCE(292); END_STATE(); case 610: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(781); + lookahead == 'n') ADVANCE(789); END_STATE(); case 611: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(182); + lookahead == 'n') ADVANCE(293); END_STATE(); case 612: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(185); + lookahead == 'n') ADVANCE(493); END_STATE(); case 613: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(269); + lookahead == 'n') ADVANCE(271); END_STATE(); case 614: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(301); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1740); END_STATE(); case 615: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(302); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1708); END_STATE(); case 616: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(502); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1728); END_STATE(); case 617: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(505); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(825); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(622); END_STATE(); case 618: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(279); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(463); END_STATE(); case 619: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1719); + lookahead == 'o') ADVANCE(1709); END_STATE(); case 620: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1739); + lookahead == 'o') ADVANCE(1632); END_STATE(); case 621: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(824); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(627); + lookahead == 'o') ADVANCE(513); END_STATE(); case 622: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(470); + lookahead == 'o') ADVANCE(657); END_STATE(); case 623: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1720); + lookahead == 'o') ADVANCE(657); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(362); END_STATE(); case 624: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1643); + lookahead == 'o') ADVANCE(289); END_STATE(); case 625: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(529); + lookahead == 'o') ADVANCE(854); END_STATE(); case 626: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(520); + lookahead == 'o') ADVANCE(543); END_STATE(); case 627: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(662); + lookahead == 'o') ADVANCE(246); END_STATE(); case 628: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(662); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(373); + lookahead == 'o') ADVANCE(237); END_STATE(); case 629: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(298); + lookahead == 'o') ADVANCE(661); END_STATE(); case 630: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(853); + lookahead == 'o') ADVANCE(247); END_STATE(); case 631: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(238); + lookahead == 'o') ADVANCE(842); END_STATE(); case 632: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(253); + lookahead == 'o') ADVANCE(249); END_STATE(); case 633: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(666); + lookahead == 'o') ADVANCE(581); END_STATE(); case 634: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(255); + lookahead == 'o') ADVANCE(672); END_STATE(); case 635: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(259); + lookahead == 'o') ADVANCE(655); END_STATE(); case 636: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(675); + lookahead == 'o') ADVANCE(276); END_STATE(); case 637: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(588); + lookahead == 'o') ADVANCE(676); END_STATE(); case 638: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(840); + lookahead == 'o') ADVANCE(511); END_STATE(); case 639: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(660); + lookahead == 'o') ADVANCE(596); END_STATE(); case 640: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(284); + lookahead == 'o') ADVANCE(638); END_STATE(); case 641: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(680); + lookahead == 'o') ADVANCE(573); END_STATE(); case 642: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(518); + lookahead == 'o') ADVANCE(599); END_STATE(); case 643: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(602); + lookahead == 'o') ADVANCE(574); END_STATE(); case 644: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(642); + lookahead == 'o') ADVANCE(575); END_STATE(); case 645: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(579); + lookahead == 'o') ADVANCE(679); END_STATE(); case 646: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(605); + lookahead == 'o') ADVANCE(682); END_STATE(); case 647: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(580); + lookahead == 'o') ADVANCE(572); END_STATE(); case 648: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(581); + lookahead == 'o') ADVANCE(810); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(163); END_STATE(); case 649: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(683); + lookahead == 'o') ADVANCE(845); END_STATE(); case 650: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(686); + lookahead == 'o') ADVANCE(838); END_STATE(); case 651: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(578); + lookahead == 'o') ADVANCE(725); END_STATE(); case 652: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(800); + lookahead == 'o') ADVANCE(811); END_STATE(); case 653: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(801); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1710); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(268); END_STATE(); case 654: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(843); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1711); END_STATE(); case 655: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(271); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1734); END_STATE(); case 656: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(836); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(529); END_STATE(); case 657: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(729); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(69); END_STATE(); case 658: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1721); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(276); + lookahead == 'p') ADVANCE(78); END_STATE(); case 659: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1722); + lookahead == 'p') ADVANCE(518); END_STATE(); case 660: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1745); + lookahead == 'p') ADVANCE(768); END_STATE(); case 661: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(536); + lookahead == 'p') ADVANCE(478); END_STATE(); case 662: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(85); + lookahead == 'p') ADVANCE(640); END_STATE(); case 663: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(91); + lookahead == 'p') ADVANCE(80); END_STATE(); case 664: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(525); + lookahead == 'p') ADVANCE(316); END_STATE(); case 665: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(771); + lookahead == 'p') ADVANCE(411); END_STATE(); case 666: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(486); + lookahead == 'p') ADVANCE(659); END_STATE(); case 667: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(644); + lookahead == 'p') ADVANCE(836); END_STATE(); case 668: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(94); + lookahead == 'p') ADVANCE(401); END_STATE(); case 669: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(324); + lookahead == 'p') ADVANCE(837); END_STATE(); case 670: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(664); + lookahead == 'p') ADVANCE(406); END_STATE(); case 671: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(834); + lookahead == 'p') ADVANCE(406); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(408); END_STATE(); case 672: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(407); + lookahead == 'p') ADVANCE(188); END_STATE(); case 673: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(835); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1617); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(694); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(241); END_STATE(); case 674: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(417); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(704); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(832); END_STATE(); case 675: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(195); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1651); END_STATE(); case 676: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(411); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1727); END_STATE(); case 677: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(411); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(413); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1650); END_STATE(); case 678: - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(832); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1706); END_STATE(); case 679: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1662); + lookahead == 'r') ADVANCE(1749); END_STATE(); case 680: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1738); + lookahead == 'r') ADVANCE(1671); END_STATE(); case 681: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1661); + lookahead == 'r') ADVANCE(1737); END_STATE(); case 682: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1717); + lookahead == 'r') ADVANCE(1693); END_STATE(); case 683: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1760); + lookahead == 'r') ADVANCE(863); END_STATE(); case 684: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1682); + lookahead == 'r') ADVANCE(1647); END_STATE(); case 685: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1748); + lookahead == 'r') ADVANCE(564); END_STATE(); case 686: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1704); + lookahead == 'r') ADVANCE(855); END_STATE(); case 687: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1); + lookahead == 'r') ADVANCE(421); END_STATE(); case 688: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1658); + lookahead == 'r') ADVANCE(865); END_STATE(); case 689: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(571); + lookahead == 'r') ADVANCE(434); END_STATE(); case 690: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(862); + lookahead == 'r') ADVANCE(257); END_STATE(); case 691: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(473); + lookahead == 'r') ADVANCE(461); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(232); END_STATE(); case 692: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(473); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1692); + lookahead == 'r') ADVANCE(484); END_STATE(); case 693: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(854); + lookahead == 'r') ADVANCE(484); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1681); END_STATE(); case 694: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(430); + lookahead == 'r') ADVANCE(637); END_STATE(); case 695: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(442); + lookahead == 'r') ADVANCE(839); END_STATE(); case 696: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(864); + lookahead == 'r') ADVANCE(283); END_STATE(); case 697: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(266); + lookahead == 'r') ADVANCE(460); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(232); END_STATE(); case 698: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(641); + lookahead == 'r') ADVANCE(459); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(232); END_STATE(); case 699: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(468); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(240); + lookahead == 'r') ADVANCE(861); END_STATE(); case 700: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(837); + lookahead == 'r') ADVANCE(862); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(712); END_STATE(); case 701: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(292); + lookahead == 'r') ADVANCE(571); END_STATE(); case 702: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(467); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(240); + lookahead == 'r') ADVANCE(360); END_STATE(); case 703: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(860); + lookahead == 'r') ADVANCE(169); END_STATE(); case 704: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(861); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(712); + lookahead == 'r') ADVANCE(774); END_STATE(); case 705: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(577); + lookahead == 'r') ADVANCE(305); END_STATE(); case 706: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(369); + lookahead == 'r') ADVANCE(786); END_STATE(); case 707: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(177); + lookahead == 'r') ADVANCE(780); END_STATE(); case 708: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(777); + lookahead == 'r') ADVANCE(625); END_STATE(); case 709: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(313); + lookahead == 'r') ADVANCE(366); END_STATE(); case 710: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(788); + lookahead == 'r') ADVANCE(366); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(650); END_STATE(); case 711: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(630); + lookahead == 'r') ADVANCE(313); END_STATE(); case 712: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(582); + lookahead == 'r') ADVANCE(576); END_STATE(); case 713: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(783); + lookahead == 'r') ADVANCE(317); END_STATE(); case 714: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(655); + lookahead == 'r') ADVANCE(367); END_STATE(); case 715: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(375); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(656); + lookahead == 'r') ADVANCE(320); END_STATE(); case 716: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(321); + lookahead == 'r') ADVANCE(379); END_STATE(); case 717: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(325); + lookahead == 'r') ADVANCE(483); END_STATE(); case 718: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(376); + lookahead == 'r') ADVANCE(645); END_STATE(); case 719: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(358); + lookahead == 'r') ADVANCE(796); END_STATE(); case 720: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(328); + lookahead == 'r') ADVANCE(474); END_STATE(); case 721: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(492); + lookahead == 'r') ADVANCE(202); END_STATE(); case 722: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(649); + lookahead == 'r') ADVANCE(717); END_STATE(); case 723: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(797); + lookahead == 'r') ADVANCE(369); END_STATE(); case 724: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(482); + lookahead == 'r') ADVANCE(262); END_STATE(); case 725: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(205); + lookahead == 'r') ADVANCE(567); END_STATE(); case 726: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(721); + lookahead == 'r') ADVANCE(718); END_STATE(); case 727: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(380); + lookahead == 'r') ADVANCE(208); END_STATE(); case 728: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(270); + lookahead == 'r') ADVANCE(209); END_STATE(); case 729: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(574); + lookahead == 'r') ADVANCE(501); END_STATE(); case 730: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(722); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1626); END_STATE(); case 731: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(213); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1621); END_STATE(); case 732: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(215); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1622); END_STATE(); case 733: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(508); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1623); END_STATE(); case 734: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1637); + lookahead == 's') ADVANCE(1717); END_STATE(); case 735: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1632); + lookahead == 's') ADVANCE(1695); END_STATE(); case 736: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1633); + lookahead == 's') ADVANCE(1722); END_STATE(); case 737: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1634); + lookahead == 's') ADVANCE(1688); END_STATE(); case 738: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1728); + lookahead == 's') ADVANCE(1631); END_STATE(); case 739: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1706); + lookahead == 's') ADVANCE(1694); END_STATE(); case 740: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1733); + lookahead == 's') ADVANCE(1658); END_STATE(); case 741: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1699); + lookahead == 's') ADVANCE(356); END_STATE(); case 742: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1642); + lookahead == 's') ADVANCE(791); END_STATE(); case 743: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1705); + lookahead == 's') ADVANCE(255); END_STATE(); case 744: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1669); + lookahead == 's') ADVANCE(730); END_STATE(); case 745: if (lookahead == 'S' || - lookahead == 's') ADVANCE(791); + lookahead == 's') ADVANCE(767); END_STATE(); case 746: if (lookahead == 'S' || - lookahead == 's') ADVANCE(264); + lookahead == 's') ADVANCE(301); END_STATE(); case 747: if (lookahead == 'S' || - lookahead == 's') ADVANCE(734); + lookahead == 's') ADVANCE(480); END_STATE(); case 748: if (lookahead == 'S' || - lookahead == 's') ADVANCE(770); + lookahead == 's') ADVANCE(650); END_STATE(); case 749: if (lookahead == 'S' || - lookahead == 's') ADVANCE(309); + lookahead == 's') ADVANCE(462); END_STATE(); case 750: if (lookahead == 'S' || - lookahead == 's') ADVANCE(488); + lookahead == 's') ADVANCE(303); END_STATE(); case 751: if (lookahead == 'S' || - lookahead == 's') ADVANCE(656); + lookahead == 's') ADVANCE(201); END_STATE(); case 752: if (lookahead == 'S' || - lookahead == 's') ADVANCE(469); + lookahead == 's') ADVANCE(318); END_STATE(); case 753: if (lookahead == 'S' || - lookahead == 's') ADVANCE(311); + lookahead == 's') ADVANCE(359); END_STATE(); case 754: if (lookahead == 'S' || - lookahead == 's') ADVANCE(204); + lookahead == 's') ADVANCE(300); END_STATE(); case 755: if (lookahead == 'S' || - lookahead == 's') ADVANCE(326); + lookahead == 's') ADVANCE(751); END_STATE(); case 756: if (lookahead == 'S' || - lookahead == 's') ADVANCE(368); + lookahead == 's') ADVANCE(416); END_STATE(); case 757: if (lookahead == 'S' || - lookahead == 's') ADVANCE(308); + lookahead == 's') ADVANCE(197); END_STATE(); case 758: if (lookahead == 'S' || - lookahead == 's') ADVANCE(420); + lookahead == 's') ADVANCE(798); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(214); END_STATE(); case 759: if (lookahead == 'S' || - lookahead == 's') ADVANCE(754); + lookahead == 's') ADVANCE(798); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(214); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(400); END_STATE(); case 760: if (lookahead == 'S' || - lookahead == 's') ADVANCE(422); + lookahead == 's') ADVANCE(414); END_STATE(); case 761: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(201); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1681); END_STATE(); case 762: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(799); if (lookahead == 'T' || - lookahead == 't') ADVANCE(218); + lookahead == 't') ADVANCE(1680); END_STATE(); case 763: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(799); if (lookahead == 'T' || - lookahead == 't') ADVANCE(218); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(405); + lookahead == 't') ADVANCE(1755); END_STATE(); case 764: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1692); + lookahead == 't') ADVANCE(1736); END_STATE(); case 765: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1691); + lookahead == 't') ADVANCE(1761); END_STATE(); case 766: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1766); + lookahead == 't') ADVANCE(1683); END_STATE(); case 767: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1747); + lookahead == 't') ADVANCE(1754); END_STATE(); case 768: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1772); + lookahead == 't') ADVANCE(1659); END_STATE(); case 769: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1694); + lookahead == 't') ADVANCE(1679); END_STATE(); case 770: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1765); + lookahead == 't') ADVANCE(1661); END_STATE(); case 771: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1670); + lookahead == 't') ADVANCE(1667); END_STATE(); case 772: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1690); + lookahead == 't') ADVANCE(1715); END_STATE(); case 773: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1672); + lookahead == 't') ADVANCE(1748); END_STATE(); case 774: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1678); + lookahead == 't') ADVANCE(1714); END_STATE(); case 775: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1726); + lookahead == 't') ADVANCE(1673); END_STATE(); case 776: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1759); + lookahead == 't') ADVANCE(1677); END_STATE(); case 777: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1725); + lookahead == 't') ADVANCE(1720); END_STATE(); case 778: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1684); + lookahead == 't') ADVANCE(1766); END_STATE(); case 779: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1688); + lookahead == 't') ADVANCE(1628); END_STATE(); case 780: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1731); + lookahead == 't') ADVANCE(1713); END_STATE(); case 781: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1777); + lookahead == 't') ADVANCE(1662); END_STATE(); case 782: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1639); + lookahead == 't') ADVANCE(1730); END_STATE(); case 783: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1724); + lookahead == 't') ADVANCE(1603); END_STATE(); case 784: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1673); + lookahead == 't') ADVANCE(700); END_STATE(); case 785: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1741); + lookahead == 't') ADVANCE(151); END_STATE(); case 786: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1614); + lookahead == 't') ADVANCE(866); END_STATE(); case 787: if (lookahead == 'T' || - lookahead == 't') ADVANCE(159); + lookahead == 't') ADVANCE(441); END_STATE(); case 788: if (lookahead == 'T' || - lookahead == 't') ADVANCE(865); + lookahead == 't') ADVANCE(486); END_STATE(); case 789: if (lookahead == 'T' || - lookahead == 't') ADVANCE(449); + lookahead == 't') ADVANCE(214); END_STATE(); case 790: if (lookahead == 'T' || - lookahead == 't') ADVANCE(494); + lookahead == 't') ADVANCE(214); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(400); END_STATE(); case 791: if (lookahead == 'T' || - lookahead == 't') ADVANCE(707); + lookahead == 't') ADVANCE(703); END_STATE(); case 792: if (lookahead == 'T' || - lookahead == 't') ADVANCE(671); + lookahead == 't') ADVANCE(667); END_STATE(); case 793: if (lookahead == 'T' || - lookahead == 't') ADVANCE(218); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(405); + lookahead == 't') ADVANCE(739); END_STATE(); case 794: if (lookahead == 'T' || - lookahead == 't') ADVANCE(743); + lookahead == 't') ADVANCE(67); END_STATE(); case 795: if (lookahead == 'T' || - lookahead == 't') ADVANCE(83); + lookahead == 't') ADVANCE(735); END_STATE(); case 796: if (lookahead == 'T' || - lookahead == 't') ADVANCE(739); + lookahead == 't') ADVANCE(721); END_STATE(); case 797: if (lookahead == 'T' || - lookahead == 't') ADVANCE(725); + lookahead == 't') ADVANCE(471); END_STATE(); case 798: if (lookahead == 'T' || - lookahead == 't') ADVANCE(478); + lookahead == 't') ADVANCE(695); END_STATE(); case 799: if (lookahead == 'T' || - lookahead == 't') ADVANCE(700); + lookahead == 't') ADVANCE(182); END_STATE(); case 800: if (lookahead == 'T' || - lookahead == 't') ADVANCE(191); + lookahead == 't') ADVANCE(155); END_STATE(); case 801: if (lookahead == 'T' || - lookahead == 't') ADVANCE(192); + lookahead == 't') ADVANCE(311); END_STATE(); case 802: if (lookahead == 'T' || - lookahead == 't') ADVANCE(319); + lookahead == 't') ADVANCE(312); END_STATE(); case 803: if (lookahead == 'T' || - lookahead == 't') ADVANCE(164); + lookahead == 't') ADVANCE(408); END_STATE(); case 804: if (lookahead == 'T' || - lookahead == 't') ADVANCE(320); + lookahead == 't') ADVANCE(375); END_STATE(); case 805: if (lookahead == 'T' || - lookahead == 't') ADVANCE(413); + lookahead == 't') ADVANCE(451); END_STATE(); case 806: if (lookahead == 'T' || - lookahead == 't') ADVANCE(385); + lookahead == 't') ADVANCE(840); END_STATE(); case 807: if (lookahead == 'T' || - lookahead == 't') ADVANCE(457); + lookahead == 't') ADVANCE(268); END_STATE(); case 808: if (lookahead == 'T' || - lookahead == 't') ADVANCE(481); + lookahead == 't') ADVANCE(268); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(466); END_STATE(); case 809: if (lookahead == 'T' || - lookahead == 't') ADVANCE(838); + lookahead == 't') ADVANCE(646); END_STATE(); case 810: if (lookahead == 'T' || - lookahead == 't') ADVANCE(276); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(472); + lookahead == 't') ADVANCE(184); END_STATE(); case 811: if (lookahead == 'T' || - lookahead == 't') ADVANCE(650); + lookahead == 't') ADVANCE(185); END_STATE(); case 812: if (lookahead == 'T' || - lookahead == 't') ADVANCE(390); + lookahead == 't') ADVANCE(384); END_STATE(); case 813: if (lookahead == 'T' || - lookahead == 't') ADVANCE(391); + lookahead == 't') ADVANCE(385); END_STATE(); case 814: if (lookahead == 'T' || - lookahead == 't') ADVANCE(404); + lookahead == 't') ADVANCE(397); END_STATE(); case 815: if (lookahead == 'T' || - lookahead == 't') ADVANCE(497); + lookahead == 't') ADVANCE(492); END_STATE(); case 816: if (lookahead == 'T' || - lookahead == 't') ADVANCE(673); + lookahead == 't') ADVANCE(489); END_STATE(); case 817: if (lookahead == 'T' || - lookahead == 't') ADVANCE(499); + lookahead == 't') ADVANCE(669); END_STATE(); case 818: if (lookahead == 'T' || - lookahead == 't') ADVANCE(500); + lookahead == 't') ADVANCE(494); END_STATE(); case 819: if (lookahead == 'T' || - lookahead == 't') ADVANCE(221); + lookahead == 't') ADVANCE(495); END_STATE(); case 820: if (lookahead == 'T' || - lookahead == 't') ADVANCE(501); + lookahead == 't') ADVANCE(217); END_STATE(); case 821: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(428); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(496); END_STATE(); case 822: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(561); + lookahead == 'u') ADVANCE(419); END_STATE(); case 823: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(598); + lookahead == 'u') ADVANCE(554); END_STATE(); case 824: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(697); + lookahead == 'u') ADVANCE(592); END_STATE(); case 825: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(750); + lookahead == 'u') ADVANCE(690); END_STATE(); case 826: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(551); + lookahead == 'u') ADVANCE(747); END_STATE(); case 827: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(552); + lookahead == 'u') ADVANCE(544); END_STATE(); case 828: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(553); + lookahead == 'u') ADVANCE(545); END_STATE(); case 829: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(554); + lookahead == 'u') ADVANCE(546); END_STATE(); case 830: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(705); + lookahead == 'u') ADVANCE(547); END_STATE(); case 831: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(618); + lookahead == 'u') ADVANCE(701); END_STATE(); case 832: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(317); + lookahead == 'u') ADVANCE(309); END_STATE(); case 833: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(786); + lookahead == 'u') ADVANCE(613); END_STATE(); case 834: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(773); + lookahead == 'u') ADVANCE(792); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(361); END_STATE(); case 835: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(784); + lookahead == 'u') ADVANCE(783); END_STATE(); case 836: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(728); + lookahead == 'u') ADVANCE(770); END_STATE(); case 837: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(267); + lookahead == 'u') ADVANCE(781); END_STATE(); case 838: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(717); + lookahead == 'u') ADVANCE(724); END_STATE(); case 839: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(485); + lookahead == 'u') ADVANCE(259); END_STATE(); case 840: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(610); + lookahead == 'u') ADVANCE(713); END_STATE(); case 841: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(720); + lookahead == 'u') ADVANCE(477); END_STATE(); case 842: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(394); + lookahead == 'u') ADVANCE(604); END_STATE(); case 843: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(816); + lookahead == 'u') ADVANCE(715); END_STATE(); case 844: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(435); + lookahead == 'u') ADVANCE(390); END_STATE(); case 845: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(360); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(249); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(817); END_STATE(); case 846: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(353); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(427); END_STATE(); case 847: if (lookahead == 'V' || - lookahead == 'v') ADVANCE(408); + lookahead == 'v') ADVANCE(352); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(814); END_STATE(); case 848: if (lookahead == 'V' || - lookahead == 'v') ADVANCE(202); + lookahead == 'v') ADVANCE(349); END_STATE(); case 849: if (lookahead == 'V' || - lookahead == 'v') ADVANCE(409); + lookahead == 'v') ADVANCE(403); END_STATE(); case 850: if (lookahead == 'V' || - lookahead == 'v') ADVANCE(412); + lookahead == 'v') ADVANCE(198); END_STATE(); case 851: if (lookahead == 'V' || - lookahead == 'v') ADVANCE(421); + lookahead == 'v') ADVANCE(407); END_STATE(); case 852: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1644); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(785); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(415); END_STATE(); case 853: if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1744); + lookahead == 'w') ADVANCE(1633); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(782); END_STATE(); case 854: if (lookahead == 'W' || - lookahead == 'w') ADVANCE(498); + lookahead == 'w') ADVANCE(1733); END_STATE(); case 855: if (lookahead == 'W' || - lookahead == 'w') ADVANCE(461); + lookahead == 'w') ADVANCE(491); END_STATE(); case 856: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1761); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(454); END_STATE(); case 857: if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1786); + lookahead == 'x') ADVANCE(1750); END_STATE(); case 858: if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1787); + lookahead == 'x') ADVANCE(1775); END_STATE(); case 859: if (lookahead == 'X' || - lookahead == 'x') ADVANCE(504); + lookahead == 'x') ADVANCE(1776); END_STATE(); case 860: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1668); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(490); END_STATE(); case 861: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1742); + lookahead == 'y') ADVANCE(1657); END_STATE(); case 862: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1718); + lookahead == 'y') ADVANCE(1731); END_STATE(); case 863: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1770); + lookahead == 'y') ADVANCE(1707); END_STATE(); case 864: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1784); + lookahead == 'y') ADVANCE(1759); END_STATE(); case 865: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1693); + lookahead == 'y') ADVANCE(1773); END_STATE(); case 866: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1782); + lookahead == 'y') ADVANCE(1682); END_STATE(); case 867: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(855); + lookahead == 'y') ADVANCE(1771); END_STATE(); case 868: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1743); + lookahead == 'y') ADVANCE(856); END_STATE(); case 869: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1702); + lookahead == 'y') ADVANCE(1732); END_STATE(); case 870: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(163); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1691); END_STATE(); case 871: if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(327); + lookahead == 'z') ADVANCE(154); END_STATE(); case 872: if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(217); + lookahead == 'z') ADVANCE(319); END_STATE(); case 873: - if (eof) ADVANCE(878); - if (lookahead == '\n') SKIP(875) + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(213); END_STATE(); case 874: - if (eof) ADVANCE(878); - if (lookahead == '\n') SKIP(875) - if (lookahead == '\r') SKIP(873) + if (eof) ADVANCE(879); + if (lookahead == '\n') SKIP(876) END_STATE(); case 875: - if (eof) ADVANCE(878); - if (lookahead == ' ') ADVANCE(28); - if (lookahead == '"') ADVANCE(1594); - if (lookahead == '\'') ADVANCE(1599); - if (lookahead == '(') ADVANCE(1603); - if (lookahead == ')') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1588); - if (lookahead == '+') ADVANCE(1616); - if (lookahead == ',') ADVANCE(1671); - if (lookahead == '-') ADVANCE(1617); - if (lookahead == '.') ADVANCE(1589); - if (lookahead == '/') ADVANCE(896); - if (lookahead == ':') ADVANCE(1676); - if (lookahead == '<') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1621); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'L') ADVANCE(128); - if (lookahead == 'N') ADVANCE(134); - if (lookahead == 'S') ADVANCE(117); - if (lookahead == '\\') SKIP(874) - if (lookahead == 'l') ADVANCE(152); - if (lookahead == 'n') ADVANCE(335); - if (lookahead == 's') ADVANCE(339); - if (lookahead == '{') ADVANCE(897); - if (lookahead == '}') ADVANCE(903); + if (eof) ADVANCE(879); + if (lookahead == '\n') SKIP(876) + if (lookahead == '\r') SKIP(874) + END_STATE(); + case 876: + if (eof) ADVANCE(879); + if (lookahead == '"') ADVANCE(1589); + if (lookahead == '\'') ADVANCE(1594); + if (lookahead == '(') ADVANCE(1598); + if (lookahead == ')') ADVANCE(1599); + if (lookahead == '*') ADVANCE(1583); + if (lookahead == '+') ADVANCE(1605); + if (lookahead == ',') ADVANCE(1660); + if (lookahead == '-') ADVANCE(1606); + if (lookahead == '.') ADVANCE(1584); + if (lookahead == '/') ADVANCE(897); + if (lookahead == ':') ADVANCE(1665); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1610); + if (lookahead == '>') ADVANCE(1611); + if (lookahead == 'B') ADVANCE(141); + if (lookahead == 'L') ADVANCE(116); + if (lookahead == 'N') ADVANCE(123); + if (lookahead == 'S') ADVANCE(104); + if (lookahead == '\\') SKIP(875) + if (lookahead == 'b') ADVANCE(328); + if (lookahead == 'l') ADVANCE(144); + if (lookahead == 'n') ADVANCE(331); + if (lookahead == 's') ADVANCE(336); + if (lookahead == '{') ADVANCE(898); + if (lookahead == '}') ADVANCE(904); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(225); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(355); + lookahead == 'a') ADVANCE(221); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(153); + lookahead == 'c') ADVANCE(145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(154); + lookahead == 'd') ADVANCE(146); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(155); + lookahead == 'e') ADVANCE(147); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(463); + lookahead == 'f') ADVANCE(455); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(342); + lookahead == 'g') ADVANCE(338); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(557); + lookahead == 'i') ADVANCE(550); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(363); + lookahead == 'k') ADVANCE(351); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(157); + lookahead == 'm') ADVANCE(149); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(426); + lookahead == 'o') ADVANCE(418); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(158); + lookahead == 'p') ADVANCE(150); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(251); + lookahead == 'r') ADVANCE(243); if (lookahead == 'T' || - lookahead == 't') ADVANCE(172); + lookahead == 't') ADVANCE(165); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(585); + lookahead == 'u') ADVANCE(579); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(622); + lookahead == 'v') ADVANCE(618); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(450); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r') ADVANCE(27); + lookahead == 'w') ADVANCE(443); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(875) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); + lookahead == 65279) SKIP(876) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); END_STATE(); - case 876: - if (eof) ADVANCE(878); - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 877: + if (eof) ADVANCE(879); + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(967); + lookahead == 'c') ADVANCE(966); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1119); + lookahead == 'd') ADVANCE(1117); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1269); + lookahead == 'e') ADVANCE(1266); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1243); + lookahead == 'f') ADVANCE(1240); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); + lookahead == 'i') ADVANCE(1319); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1311); + lookahead == 'o') ADVANCE(1308); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1439); + lookahead == 'p') ADVANCE(1434); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1122); + lookahead == 'r') ADVANCE(1120); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1339); + lookahead == 'u') ADVANCE(1336); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13754,30 +13178,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(876) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); + lookahead == 65279) SKIP(877) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); - case 877: - if (eof) ADVANCE(878); - if (lookahead == '/') ADVANCE(61); - if (lookahead == '\\') ADVANCE(1587); - if (lookahead == '{') ADVANCE(897); + case 878: + if (eof) ADVANCE(879); + if (lookahead == '/') ADVANCE(46); + if (lookahead == '\\') ADVANCE(1582); + if (lookahead == '{') ADVANCE(898); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(967); + lookahead == 'c') ADVANCE(966); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1119); + lookahead == 'd') ADVANCE(1117); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1243); + lookahead == 'f') ADVANCE(1240); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); + lookahead == 'i') ADVANCE(1319); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1311); + lookahead == 'o') ADVANCE(1308); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1439); + lookahead == 'p') ADVANCE(1434); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1122); + lookahead == 'r') ADVANCE(1120); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1339); + lookahead == 'u') ADVANCE(1336); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13785,2664 +13209,2653 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(877) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1587); - END_STATE(); - case 878: - ACCEPT_TOKEN(ts_builtin_sym_end); + lookahead == 65279) SKIP(878) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1582); END_STATE(); case 879: - ACCEPT_TOKEN(sym_file_name); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 880: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(sym_file_name); END_STATE(); case 881: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '*') ADVANCE(895); - if (lookahead != 0) ADVANCE(63); END_STATE(); case 882: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '.') ADVANCE(151); - if (('-' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(100); + if (lookahead == '*') ADVANCE(896); + if (lookahead != 0) ADVANCE(48); END_STATE(); case 883: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1597); + if (lookahead == '.') ADVANCE(143); + if (('-' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(86); END_STATE(); case 884: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(1602); + lookahead != '"' && + lookahead != '\\') ADVANCE(1592); END_STATE(); case 885: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && - lookahead != '\n') ADVANCE(889); + lookahead != '\'' && + lookahead != '\\') ADVANCE(1597); END_STATE(); case 886: - ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '\r') ADVANCE(889); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && - lookahead != '\n') ADVANCE(889); + lookahead != '\n') ADVANCE(890); END_STATE(); case 887: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '*') ADVANCE(894); - if (lookahead == '/') ADVANCE(885); + if (lookahead == '\r') ADVANCE(890); if (lookahead != 0 && - lookahead != '\n') ADVANCE(889); + lookahead != '\n') ADVANCE(890); END_STATE(); case 888: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '/') ADVANCE(887); - if (lookahead == '\\') ADVANCE(886); - if (lookahead == '{') ADVANCE(901); + if (lookahead == '*') ADVANCE(895); + if (lookahead == '/') ADVANCE(886); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(890); + END_STATE(); + case 889: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '/') ADVANCE(888); + if (lookahead == '\\') ADVANCE(887); + if (lookahead == '{') ADVANCE(902); if (lookahead == '\t' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(888); + lookahead == 65279) ADVANCE(889); if (lookahead != 0 && - lookahead != '\n') ADVANCE(889); + lookahead != '\n') ADVANCE(890); END_STATE(); - case 889: + case 890: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(889); - END_STATE(); - case 890: - ACCEPT_TOKEN(anon_sym_SLASH_STAR); + lookahead != '\n') ADVANCE(890); END_STATE(); case 891: ACCEPT_TOKEN(anon_sym_SLASH_STAR); - if (lookahead == '*') ADVANCE(895); - if (lookahead != 0 && - lookahead != '/') ADVANCE(63); END_STATE(); case 892: ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead == '*') ADVANCE(896); if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1597); + lookahead != '/') ADVANCE(48); END_STATE(); case 893: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(1602); + lookahead != '"' && + lookahead != '\\') ADVANCE(1592); END_STATE(); case 894: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && - lookahead != '\n') ADVANCE(889); + lookahead != '\'' && + lookahead != '\\') ADVANCE(1597); END_STATE(); case 895: - ACCEPT_TOKEN(aux_sym_comment_token2); - if (lookahead == '*') ADVANCE(895); + ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && - lookahead != '/') ADVANCE(63); + lookahead != '\n') ADVANCE(890); END_STATE(); case 896: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(890); - if (lookahead == '/') ADVANCE(880); + ACCEPT_TOKEN(aux_sym_comment_token2); + if (lookahead == '*') ADVANCE(896); + if (lookahead != 0 && + lookahead != '/') ADVANCE(48); END_STATE(); case 897: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(891); + if (lookahead == '/') ADVANCE(881); END_STATE(); case 898: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '*') ADVANCE(895); - if (lookahead != 0) ADVANCE(63); END_STATE(); case 899: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1597); + if (lookahead == '*') ADVANCE(896); + if (lookahead != 0) ADVANCE(48); END_STATE(); case 900: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(1602); + lookahead != '"' && + lookahead != '\\') ADVANCE(1592); END_STATE(); case 901: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead != 0 && - lookahead != '\n') ADVANCE(889); + lookahead != '\'' && + lookahead != '\\') ADVANCE(1597); END_STATE(); case 902: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(890); END_STATE(); case 903: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 904: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(1609); - if (lookahead == '\r') ADVANCE(2); - if (lookahead == ' ') ADVANCE(1608); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 905: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(1606); - if (lookahead == '\r') ADVANCE(4); - if (lookahead == ' ') ADVANCE(1605); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(931); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 906: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(932); + if (lookahead == '-') ADVANCE(1149); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 907: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1151); + if (lookahead == '-') ADVANCE(964); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 908: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(965); + if (lookahead == '-') ADVANCE(1227); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 909: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1230); + if (lookahead == '-') ADVANCE(1439); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1154); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 910: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1444); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1156); + if (lookahead == '-') ADVANCE(932); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 911: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(933); + if (lookahead == '-') ADVANCE(1039); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 912: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1040); + if (lookahead == '-') ADVANCE(1183); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 913: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1186); + if (lookahead == '-') ADVANCE(1065); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 914: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1067); + if (lookahead == '-') ADVANCE(1272); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1635); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 915: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1275); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1646); + if (lookahead == '-') ADVANCE(1272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 916: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1275); + if (lookahead == '-') ADVANCE(1393); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 917: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1397); + if (lookahead == '-') ADVANCE(1276); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 918: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1279); + if (lookahead == '-') ADVANCE(973); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 919: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(974); + if (lookahead == '-') ADVANCE(1533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 920: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1538); + if (lookahead == '-') ADVANCE(1273); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 921: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1276); + if (lookahead == '-') ADVANCE(1473); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1723); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 922: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1478); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1734); + if (lookahead == '-') ADVANCE(1249); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 923: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1252); + if (lookahead == '-') ADVANCE(1230); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 924: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1233); + if (lookahead == '-') ADVANCE(1299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 925: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1302); + if (lookahead == '-') ADVANCE(1371); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 926: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1375); + if (lookahead == '-') ADVANCE(1228); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 927: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1231); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); - END_STATE(); - case 928: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(950); + if (lookahead == 'C') ADVANCE(949); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1428); + lookahead == 'e') ADVANCE(1423); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(983); + lookahead == 'h') ADVANCE(982); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1195); + lookahead == 'i') ADVANCE(1192); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1544); + lookahead == 'o') ADVANCE(1539); if (lookahead == 'T' || - lookahead == 't') ADVANCE(977); + lookahead == 't') ADVANCE(976); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1024); + lookahead == 'u') ADVANCE(1023); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 929: + case 928: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(1696); - if (lookahead == 'd') ADVANCE(1696); + if (lookahead == 'D') ADVANCE(1685); + if (lookahead == 'd') ADVANCE(1685); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 930: + case 929: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(957); - if (lookahead == 'e') ADVANCE(1525); + if (lookahead == 'E') ADVANCE(956); + if (lookahead == 'e') ADVANCE(1520); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1389); + lookahead == 'a') ADVANCE(1385); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1353); + lookahead == 'i') ADVANCE(1349); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 931: + case 930: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(1660); - if (lookahead == 'e') ADVANCE(1660); + if (lookahead == 'E') ADVANCE(1649); + if (lookahead == 'e') ADVANCE(1649); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 932: + case 931: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(955); - if (lookahead == 'e') ADVANCE(1458); + if (lookahead == 'E') ADVANCE(954); + if (lookahead == 'e') ADVANCE(1453); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1363); + lookahead == 'l') ADVANCE(1359); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(984); + lookahead == 'w') ADVANCE(983); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 933: + case 932: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(956); + if (lookahead == 'E') ADVANCE(955); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 934: + case 933: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(1666); + if (lookahead == 'G') ADVANCE(1655); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 935: + case 934: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(944); - if (lookahead == 'h') ADVANCE(1366); + if (lookahead == 'H') ADVANCE(943); + if (lookahead == 'h') ADVANCE(1362); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 936: + case 935: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(938); - if (lookahead == 'i') ADVANCE(1259); + if (lookahead == 'I') ADVANCE(937); + if (lookahead == 'i') ADVANCE(1256); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1025); + lookahead == 'a') ADVANCE(1024); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1625); + lookahead == 'e') ADVANCE(1614); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1022); + lookahead == 'o') ADVANCE(1021); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1624); + lookahead == 't') ADVANCE(1613); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); + END_STATE(); + case 936: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I') ADVANCE(940); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1582); END_STATE(); case 937: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(941); + if (lookahead == 'K') ADVANCE(930); + if (lookahead == 'k') ADVANCE(1086); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 938: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K') ADVANCE(931); - if (lookahead == 'k') ADVANCE(1088); + if (lookahead == 'L') ADVANCE(936); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 939: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(937); + if (lookahead == 'L') ADVANCE(938); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 940: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(939); + if (lookahead == 'N') ADVANCE(933); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 941: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(934); + if (lookahead == 'O') ADVANCE(905); + if (lookahead == 'o') ADVANCE(906); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1616); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1294); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 942: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(906); - if (lookahead == 'o') ADVANCE(907); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1627); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1297); + if (lookahead == 'O') ADVANCE(939); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 943: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(940); + if (lookahead == 'O') ADVANCE(928); + if (lookahead == 'o') ADVANCE(1059); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 944: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(929); - if (lookahead == 'o') ADVANCE(1060); + if (lookahead == 'O') ADVANCE(951); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 945: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(952); + if (lookahead == 'O') ADVANCE(950); + if (lookahead == 'o') ADVANCE(1410); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 946: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(951); - if (lookahead == 'o') ADVANCE(1415); + if (lookahead == 'O') ADVANCE(910); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1616); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 947: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(911); + if (lookahead == 'O') ADVANCE(910); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1627); + lookahead == 'e') ADVANCE(1615); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 948: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(911); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1626); + if (lookahead == 'O') ADVANCE(910); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 949: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(911); + if (lookahead == 'R') ADVANCE(942); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 950: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(943); + if (lookahead == 'R') ADVANCE(1749); + if (lookahead == 'r') ADVANCE(1749); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 951: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1760); - if (lookahead == 'r') ADVANCE(1760); + if (lookahead == 'R') ADVANCE(1700); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 952: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1711); + if (lookahead == 'R') ADVANCE(944); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 953: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R') ADVANCE(945); + if (lookahead == 'r') ADVANCE(1374); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 954: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(946); - if (lookahead == 'r') ADVANCE(1378); + if (lookahead == 'R') ADVANCE(953); + if (lookahead == 'r') ADVANCE(1446); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 955: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(954); - if (lookahead == 'r') ADVANCE(1451); + if (lookahead == 'R') ADVANCE(952); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 956: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(953); + if (lookahead == 'T') ADVANCE(934); + if (lookahead == 't') ADVANCE(1208); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 957: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(935); - if (lookahead == 't') ADVANCE(1211); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); - END_STATE(); - case 958: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y') ADVANCE(1763); - if (lookahead == 'y') ADVANCE(1763); + if (lookahead == 'Y') ADVANCE(1752); + if (lookahead == 'y') ADVANCE(1752); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1194); + lookahead == 'e') ADVANCE(1191); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1314); + lookahead == 'i') ADVANCE(1311); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1123); + lookahead == 'r') ADVANCE(1121); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1184); + lookahead == 'u') ADVANCE(1181); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 959: + case 958: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1025); + lookahead == 'a') ADVANCE(1024); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1625); + lookahead == 'e') ADVANCE(1614); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1259); + lookahead == 'i') ADVANCE(1256); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1022); + lookahead == 'o') ADVANCE(1021); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1624); + lookahead == 't') ADVANCE(1613); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 960: + case 959: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1389); + lookahead == 'a') ADVANCE(1385); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1525); + lookahead == 'e') ADVANCE(1520); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1353); + lookahead == 'i') ADVANCE(1349); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 961: + case 960: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1051); + lookahead == 'a') ADVANCE(1050); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(972); + lookahead == 'l') ADVANCE(971); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1260); + lookahead == 'o') ADVANCE(1257); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 962: + case 961: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1036); + lookahead == 'a') ADVANCE(1035); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1205); + lookahead == 'c') ADVANCE(1202); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1475); + lookahead == 'l') ADVANCE(1470); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1057); + lookahead == 'n') ADVANCE(1056); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1628); + lookahead == 'q') ADVANCE(1617); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1427); + lookahead == 'r') ADVANCE(1422); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1168); + lookahead == 'v') ADVANCE(1166); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1031); + lookahead == 'x') ADVANCE(1030); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 963: + case 962: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1196); + lookahead == 'a') ADVANCE(1193); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1452); + lookahead == 'o') ADVANCE(1447); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1217); + lookahead == 'r') ADVANCE(1214); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1023); + lookahead == 'u') ADVANCE(1022); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 964: + case 963: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(910); + lookahead == 'a') ADVANCE(909); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 965: + case 964: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1566); + lookahead == 'a') ADVANCE(1561); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1365); + lookahead == 'c') ADVANCE(1361); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(966); + lookahead == 'm') ADVANCE(965); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1383); + lookahead == 't') ADVANCE(1379); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 966: + case 965: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1577); + lookahead == 'a') ADVANCE(1572); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1354); + lookahead == 'i') ADVANCE(1350); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 967: + case 966: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1473); + lookahead == 'a') ADVANCE(1468); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(973); + lookahead == 'l') ADVANCE(972); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1582); + END_STATE(); + case 967: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1252); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 968: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1255); + lookahead == 'a') ADVANCE(1502); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1180); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1740); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 969: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1507); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1183); + lookahead == 'a') ADVANCE(1297); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1751); + lookahead == 'o') ADVANCE(1287); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 970: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1300); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1290); + lookahead == 'a') ADVANCE(1297); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 971: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1300); + lookahead == 'a') ADVANCE(1465); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1474); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 972: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1470); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1479); + lookahead == 'a') ADVANCE(1465); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 973: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1470); + lookahead == 'a') ADVANCE(1189); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 974: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1192); + lookahead == 'a') ADVANCE(1025); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 975: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1026); + lookahead == 'a') ADVANCE(1418); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1301); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1129); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1725); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(981); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 976: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1423); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1304); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1131); + lookahead == 'a') ADVANCE(1505); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1736); + lookahead == 'o') ADVANCE(1386); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(982); + lookahead == 'r') ADVANCE(1139); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 977: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1510); + lookahead == 'a') ADVANCE(1405); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1390); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1141); + lookahead == 'o') ADVANCE(1218); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 978: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1410); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1221); + lookahead == 'a') ADVANCE(1259); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 979: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1262); + lookahead == 'a') ADVANCE(1260); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 980: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1263); + lookahead == 'a') ADVANCE(1288); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 981: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1291); + lookahead == 'a') ADVANCE(1324); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 982: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1327); + lookahead == 'a') ADVANCE(1428); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 983: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1433); + lookahead == 'a') ADVANCE(1231); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 984: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1234); + lookahead == 'a') ADVANCE(1261); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 985: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1264); + lookahead == 'a') ADVANCE(1521); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 986: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1526); + lookahead == 'a') ADVANCE(1516); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 987: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1521); + lookahead == 'a') ADVANCE(1420); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1674); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 988: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1425); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1685); + lookahead == 'a') ADVANCE(1275); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 989: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1278); + lookahead == 'a') ADVANCE(1490); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 990: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1495); + lookahead == 'a') ADVANCE(1264); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 991: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1267); + lookahead == 'a') ADVANCE(1335); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 992: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1338); + lookahead == 'a') ADVANCE(1425); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 993: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1430); + lookahead == 'a') ADVANCE(1519); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 994: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1524); + lookahead == 'a') ADVANCE(1504); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1437); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 995: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1509); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1442); + lookahead == 'a') ADVANCE(1395); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 996: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1027); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 997: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1028); + lookahead == 'a') ADVANCE(1229); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 998: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1232); + lookahead == 'a') ADVANCE(1298); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 999: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1301); + lookahead == 'a') ADVANCE(1195); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1000: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1198); + lookahead == 'a') ADVANCE(1271); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1001: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1274); + lookahead == 'a') ADVANCE(1233); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1002: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1236); + lookahead == 'a') ADVANCE(1517); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1003: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1522); + lookahead == 'a') ADVANCE(1464); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1004: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1469); + lookahead == 'a') ADVANCE(1045); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1005: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1046); + lookahead == 'a') ADVANCE(1469); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(972); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1006: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1474); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(973); + lookahead == 'a') ADVANCE(1197); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1007: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1200); + lookahead == 'a') ADVANCE(1515); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1008: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1520); + lookahead == 'a') ADVANCE(1475); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1009: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1480); + lookahead == 'a') ADVANCE(1198); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1010: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1201); + lookahead == 'a') ADVANCE(1049); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1011: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1050); + lookahead == 'a') ADVANCE(1450); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1012: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1455); + lookahead == 'a') ADVANCE(1028); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1013: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1029); + lookahead == 'a') ADVANCE(1528); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1014: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1533); + lookahead == 'a') ADVANCE(1029); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1015: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1030); + lookahead == 'a') ADVANCE(1531); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1016: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1536); + lookahead == 'a') ADVANCE(1532); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1017: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1537); + lookahead == 'a') ADVANCE(1054); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1018: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1055); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); - END_STATE(); - case 1019: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1574); + lookahead == 'a') ADVANCE(1569); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1353); + lookahead == 'i') ADVANCE(1349); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 1020: + case 1019: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1472); + lookahead == 'b') ADVANCE(1467); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1056); + lookahead == 'n') ADVANCE(1055); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1400); + lookahead == 'p') ADVANCE(1396); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1659); + lookahead == 's') ADVANCE(1648); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1136); + lookahead == 'v') ADVANCE(1134); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 1021: + case 1020: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1562); + lookahead == 'b') ADVANCE(1557); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1358); + lookahead == 'd') ADVANCE(1354); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1407); + lookahead == 'i') ADVANCE(1403); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1582); + END_STATE(); + case 1021: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(913); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1022: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(914); + lookahead == 'b') ADVANCE(1284); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1023: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1287); + lookahead == 'b') ADVANCE(907); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1024: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(908); + lookahead == 'b') ADVANCE(1126); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1063); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1482); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1025: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1128); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1065); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1487); + lookahead == 'b') ADVANCE(1143); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1026: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1145); + lookahead == 'b') ADVANCE(979); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1027: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(980); + lookahead == 'b') ADVANCE(1279); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1028: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1282); + lookahead == 'b') ADVANCE(1280); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1029: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1283); + lookahead == 'b') ADVANCE(1281); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1030: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1284); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1131); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1170); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1031: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1133); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1172); + lookahead == 'c') ADVANCE(1636); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1032: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1647); + lookahead == 'c') ADVANCE(1639); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1033: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1650); + lookahead == 'c') ADVANCE(1358); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1184); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1034: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1362); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1187); + lookahead == 'c') ADVANCE(1253); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1035: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1256); + lookahead == 'c') ADVANCE(1199); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1036: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1202); + lookahead == 'c') ADVANCE(1254); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1037: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1257); + lookahead == 'c') ADVANCE(1200); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1038: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1203); + lookahead == 'c') ADVANCE(1255); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1039: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1258); + lookahead == 'c') ADVANCE(1360); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1040: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1364); + lookahead == 'c') ADVANCE(1137); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(994); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1163); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1041: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1139); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(995); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1165); + lookahead == 'c') ADVANCE(1137); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1042: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1139); + lookahead == 'c') ADVANCE(995); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1043: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(996); + lookahead == 'c') ADVANCE(1267); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1044: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1270); + lookahead == 'c') ADVANCE(1095); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1045: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1097); + lookahead == 'c') ADVANCE(1495); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1046: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1500); + lookahead == 'c') ADVANCE(1523); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1047: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1528); + lookahead == 'c') ADVANCE(1146); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1048: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1148); + lookahead == 'c') ADVANCE(1111); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1049: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1113); + lookahead == 'c') ADVANCE(1114); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1050: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1116); + lookahead == 'c') ADVANCE(1204); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1087); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1037); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1051: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1207); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1089); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1038); + lookahead == 'c') ADVANCE(1507); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1052: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1512); + lookahead == 'c') ADVANCE(1206); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1053: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1209); + lookahead == 'c') ADVANCE(1518); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1054: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1523); + lookahead == 'c') ADVANCE(1530); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1055: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1535); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1757); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1565); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1056: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1768); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1570); + lookahead == 'd') ADVANCE(1585); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1057: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1590); + lookahead == 'd') ADVANCE(1625); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1058: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1636); + lookahead == 'd') ADVANCE(1772); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1059: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1783); + lookahead == 'd') ADVANCE(1685); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1060: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1696); + lookahead == 'd') ADVANCE(1721); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1061: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1732); + lookahead == 'd') ADVANCE(1638); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1062: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1649); + lookahead == 'd') ADVANCE(1712); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1063: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1723); + lookahead == 'd') ADVANCE(1466); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1064: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(905); + lookahead == 'd') ADVANCE(1354); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1065: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1471); + lookahead == 'd') ADVANCE(1232); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1066: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1358); + lookahead == 'd') ADVANCE(922); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1067: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1235); + lookahead == 'd') ADVANCE(1463); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1068: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(923); + lookahead == 'd') ADVANCE(1175); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1069: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1468); + lookahead == 'd') ADVANCE(1102); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1070: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1177); + lookahead == 'd') ADVANCE(1119); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1071: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1104); + lookahead == 'd') ADVANCE(1122); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1072: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1121); + lookahead == 'd') ADVANCE(1128); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1073: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1124); + lookahead == 'd') ADVANCE(1196); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1074: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1130); + lookahead == 'd') ADVANCE(1282); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1075: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1199); + lookahead == 'd') ADVANCE(1554); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1076: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1285); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1191); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1311); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1121); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1181); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1752); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1077: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1559); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1191); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1078: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1194); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1314); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1123); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1184); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1763); + lookahead == 'e') ADVANCE(1614); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1613); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1079: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1194); + lookahead == 'e') ADVANCE(1616); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(906); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1294); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1080: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1625); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1624); + lookahead == 'e') ADVANCE(1616); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1081: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1627); + lookahead == 'e') ADVANCE(1423); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(982); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1192); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(907); + lookahead == 'o') ADVANCE(1539); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(976); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1297); + lookahead == 'u') ADVANCE(1023); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1082: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1627); + lookahead == 'e') ADVANCE(1620); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1357); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1618); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1083: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1428); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(983); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1195); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1544); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(977); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1024); + lookahead == 'e') ADVANCE(1269); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(978); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1471); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1084: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1631); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1361); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1629); + lookahead == 'e') ADVANCE(1269); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1085: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1272); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(979); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1476); + lookahead == 'e') ADVANCE(1313); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1278); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1086: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1272); + lookahead == 'e') ADVANCE(1649); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1087: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1316); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1281); + lookahead == 'e') ADVANCE(1741); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1088: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1660); + lookahead == 'e') ADVANCE(1664); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1089: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1752); + lookahead == 'e') ADVANCE(921); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1090: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1675); + lookahead == 'e') ADVANCE(1653); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1091: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(922); + lookahead == 'e') ADVANCE(1705); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1092: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1664); + lookahead == 'e') ADVANCE(1604); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1093: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1716); + lookahead == 'e') ADVANCE(1744); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1094: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1615); + lookahead == 'e') ADVANCE(1666); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1095: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1755); + lookahead == 'e') ADVANCE(1716); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1096: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1677); + lookahead == 'e') ADVANCE(1642); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1097: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1727); + lookahead == 'e') ADVANCE(1774); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1098: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1653); + lookahead == 'e') ADVANCE(1760); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1099: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1785); + lookahead == 'e') ADVANCE(1718); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1100: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1771); + lookahead == 'e') ADVANCE(1637); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1101: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1729); + lookahead == 'e') ADVANCE(1777); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1102: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1648); + lookahead == 'e') ADVANCE(1678); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1103: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1788); + lookahead == 'e') ADVANCE(1645); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1104: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1689); + lookahead == 'e') ADVANCE(1719); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1105: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1656); + lookahead == 'e') ADVANCE(1684); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1106: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1730); + lookahead == 'e') ADVANCE(1743); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1107: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1695); + lookahead == 'e') ADVANCE(1724); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1108: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1754); + lookahead == 'e') ADVANCE(1668); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1109: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1735); + lookahead == 'e') ADVANCE(1652); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1110: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1679); + lookahead == 'e') ADVANCE(1765); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1111: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1663); + lookahead == 'e') ADVANCE(1778); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1112: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1776); + lookahead == 'e') ADVANCE(1640); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1113: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1789); + lookahead == 'e') ADVANCE(1704); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1114: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1651); + lookahead == 'e') ADVANCE(1676); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1115: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1715); + lookahead == 'e') ADVANCE(1615); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1116: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1687); + lookahead == 'e') ADVANCE(1619); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1618); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1117: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1626); + lookahead == 'e') ADVANCE(1180); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1740); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1118: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1630); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1629); + lookahead == 'e') ADVANCE(914); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1119: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1183); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1751); + lookahead == 'e') ADVANCE(1566); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1120: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(915); + lookahead == 'e') ADVANCE(1399); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1121: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1571); + lookahead == 'e') ADVANCE(967); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1122: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1403); + lookahead == 'e') ADVANCE(1567); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1123: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(968); + lookahead == 'e') ADVANCE(1389); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1124: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1572); + lookahead == 'e') ADVANCE(1562); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(906); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1125: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1393); + lookahead == 'e') ADVANCE(1562); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1126: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1567); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(907); + lookahead == 'e') ADVANCE(1258); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1127: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1567); + lookahead == 'e') ADVANCE(1123); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1128: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1261); + lookahead == 'e') ADVANCE(1568); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1129: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1125); + lookahead == 'e') ADVANCE(1312); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1356); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1130: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1573); + lookahead == 'e') ADVANCE(908); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1322); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1131: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1315); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1360); + lookahead == 'e') ADVANCE(1391); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1538); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1132: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(909); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1325); + lookahead == 'e') ADVANCE(1571); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1133: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1395); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1543); + lookahead == 'e') ADVANCE(1458); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1134: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1576); + lookahead == 'e') ADVANCE(1430); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1135: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1463); + lookahead == 'e') ADVANCE(1286); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1136: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1435); + lookahead == 'e') ADVANCE(1328); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1137: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1289); + lookahead == 'e') ADVANCE(1075); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1138: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1331); + lookahead == 'e') ADVANCE(1433); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1139: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1077); + lookahead == 'e') ADVANCE(980); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1140: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1438); + lookahead == 'e') ADVANCE(1460); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1141: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(981); + lookahead == 'e') ADVANCE(1406); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1483); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1142: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1465); + lookahead == 'e') ADVANCE(1406); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1143: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1411); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1488); + lookahead == 'e') ADVANCE(1262); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1144: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1411); + lookahead == 'e') ADVANCE(920); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1145: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1265); + lookahead == 'e') ADVANCE(1061); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1146: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(921); + lookahead == 'e') ADVANCE(925); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1147: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1062); + lookahead == 'e') ADVANCE(1462); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1148: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(926); + lookahead == 'e') ADVANCE(1062); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1149: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1467); + lookahead == 'e') ADVANCE(1453); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1359); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(983); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1150: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1063); + lookahead == 'e') ADVANCE(1419); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1151: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1458); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1363); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(984); + lookahead == 'e') ADVANCE(1341); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1152: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1424); + lookahead == 'e') ADVANCE(1491); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1153: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1345); + lookahead == 'e') ADVANCE(1451); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1154: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1496); + lookahead == 'e') ADVANCE(1494); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1155: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1456); + lookahead == 'e') ADVANCE(1408); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1156: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1499); + lookahead == 'e') ADVANCE(1526); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1157: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1413); + lookahead == 'e') ADVANCE(1411); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1158: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1531); + lookahead == 'e') ADVANCE(1412); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1159: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1416); + lookahead == 'e') ADVANCE(1510); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1160: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1417); + lookahead == 'e') ADVANCE(1426); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1161: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1515); + lookahead == 'e') ADVANCE(1301); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1162: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1431); + lookahead == 'e') ADVANCE(1283); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1163: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1304); + lookahead == 'e') ADVANCE(1053); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1164: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1286); + lookahead == 'e') ADVANCE(1478); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1165: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1054); + lookahead == 'e') ADVANCE(1435); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1166: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1483); + lookahead == 'e') ADVANCE(1327); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1167: ACCEPT_TOKEN(sym_identifier); @@ -16451,3463 +15864,3453 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1168: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1330); + lookahead == 'e') ADVANCE(915); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1169: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1445); + lookahead == 'e') ADVANCE(1305); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1170: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(916); + lookahead == 'e') ADVANCE(1334); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1171: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1308); + lookahead == 'e') ADVANCE(989); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1172: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1337); + lookahead == 'e') ADVANCE(1340); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1173: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(990); + lookahead == 'e') ADVANCE(1443); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1174: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1344); + lookahead == 'e') ADVANCE(1436); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1175: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1448); + lookahead == 'e') ADVANCE(923); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1176: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1441); + lookahead == 'e') ADVANCE(926); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1322); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1177: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(924); + lookahead == 'e') ADVANCE(1454); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1178: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(927); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1325); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1756); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1726); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1209); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1503); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1138); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1179: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1459); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1756); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1180: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1767); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1737); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(904); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1212); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1508); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1140); + lookahead == 'f') ADVANCE(1644); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1181: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1767); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1737); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1212); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1508); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1140); + lookahead == 'f') ADVANCE(1186); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1182: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1767); + lookahead == 'f') ADVANCE(1010); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1183: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1655); + lookahead == 'f') ADVANCE(1236); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1184: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1189); + lookahead == 'f') ADVANCE(1153); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1013); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1171); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1417); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1185: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1011); + lookahead == 'f') ADVANCE(1376); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1186: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1239); + lookahead == 'f') ADVANCE(1155); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1187: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1155); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1014); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1173); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1422); + lookahead == 'f') ADVANCE(1173); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1188: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1380); + lookahead == 'f') ADVANCE(1187); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1189: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1157); + lookahead == 'f') ADVANCE(1527); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1190: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1175); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1689); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1191: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1190); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1223); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1192: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1532); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1330); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1193: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1700); + lookahead == 'g') ADVANCE(1089); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(998); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1194: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1226); + lookahead == 'g') ADVANCE(1152); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1195: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1333); + lookahead == 'g') ADVANCE(1098); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1196: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1091); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(999); + lookahead == 'g') ADVANCE(1159); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1197: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1154); + lookahead == 'g') ADVANCE(1110); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1198: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1100); + lookahead == 'g') ADVANCE(1147); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1199: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1161); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1753); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1200: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1112); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1758); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1201: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1149); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1692); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1202: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1764); + lookahead == 'h') ADVANCE(1353); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1203: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1769); + lookahead == 'h') ADVANCE(1085); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1424); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1204: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1703); + lookahead == 'h') ADVANCE(1090); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1205: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1357); + lookahead == 'h') ADVANCE(1238); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1206: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1087); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1429); + lookahead == 'h') ADVANCE(1133); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1207: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1092); + lookahead == 'h') ADVANCE(991); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1208: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1241); + lookahead == 'h') ADVANCE(1362); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1209: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1135); + lookahead == 'h') ADVANCE(1150); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1210: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(992); + lookahead == 'h') ADVANCE(1167); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1211: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1366); + lookahead == 'h') ADVANCE(1174); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1212: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1152); + lookahead == 'h') ADVANCE(1011); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1213: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1169); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1083); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1404); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(969); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1321); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1214: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1176); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1300); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1040); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1215: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1012); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1581); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1216: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1085); + lookahead == 'i') ADVANCE(1560); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1409); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(970); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1324); + lookahead == 'o') ADVANCE(1511); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1217: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1303); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1041); + lookahead == 'i') ADVANCE(1580); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1218: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1586); + lookahead == 'i') ADVANCE(1057); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1219: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1565); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1516); + lookahead == 'i') ADVANCE(1295); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1220: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1585); + lookahead == 'i') ADVANCE(1031); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1221: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1058); + lookahead == 'i') ADVANCE(1322); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1222: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1298); + lookahead == 'i') ADVANCE(1032); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1223: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1032); + lookahead == 'i') ADVANCE(1325); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1224: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1325); + lookahead == 'i') ADVANCE(1000); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1225: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1033); + lookahead == 'i') ADVANCE(1073); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1226: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1328); + lookahead == 'i') ADVANCE(1368); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1227: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1001); + lookahead == 'i') ADVANCE(1343); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1225); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1228: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1075); + lookahead == 'i') ADVANCE(1343); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1229: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1372); + lookahead == 'i') ADVANCE(1331); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1230: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1347); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1228); + lookahead == 'i') ADVANCE(1323); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1231: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1347); + lookahead == 'i') ADVANCE(1492); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1232: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1334); + lookahead == 'i') ADVANCE(1409); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1233: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1326); + lookahead == 'i') ADVANCE(1496); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1234: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1497); + lookahead == 'i') ADVANCE(1444); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1235: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1414); + lookahead == 'i') ADVANCE(1140); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1236: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1501); + lookahead == 'i') ADVANCE(1162); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1237: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1449); + lookahead == 'i') ADVANCE(1559); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1238: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1142); + lookahead == 'i') ADVANCE(1278); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1239: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1164); + lookahead == 'i') ADVANCE(1069); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1240: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1564); + lookahead == 'i') ADVANCE(1347); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1404); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1321); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1241: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1281); + lookahead == 'i') ADVANCE(1369); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1242: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1071); + lookahead == 'i') ADVANCE(1084); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(970); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1243: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1351); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1409); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1324); + lookahead == 'i') ADVANCE(1084); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1244: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1373); + lookahead == 'i') ADVANCE(1476); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1245: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1086); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(971); + lookahead == 'i') ADVANCE(1370); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1246: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1086); + lookahead == 'i') ADVANCE(1372); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1247: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1481); + lookahead == 'i') ADVANCE(1373); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1248: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1374); + lookahead == 'i') ADVANCE(1302); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1249: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1376); + lookahead == 'i') ADVANCE(1346); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1250: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1377); + lookahead == 'i') ADVANCE(1303); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1251: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1305); + lookahead == 'i') ADVANCE(1304); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1252: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1350); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1751); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1253: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1306); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1745); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1254: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1307); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1746); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1255: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1762); + lookahead == 'k') ADVANCE(1747); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1256: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1756); + lookahead == 'k') ADVANCE(1086); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1257: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1757); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1285); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1480); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1326); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1258: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1758); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1629); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1259: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1088); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1698); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1260: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1288); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1485); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1329); + lookahead == 'l') ADVANCE(1634); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1261: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1640); + lookahead == 'l') ADVANCE(1769); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1262: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1709); + lookahead == 'l') ADVANCE(1630); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1263: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1645); + lookahead == 'l') ADVANCE(1696); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1264: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1780); + lookahead == 'l') ADVANCE(1764); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1265: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1641); + lookahead == 'l') ADVANCE(1470); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1056); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1266: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1707); + lookahead == 'l') ADVANCE(1470); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1267: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1775); + lookahead == 'l') ADVANCE(1538); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1268: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1475); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1057); + lookahead == 'l') ADVANCE(1576); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1269: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1475); + lookahead == 'l') ADVANCE(1058); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1270: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1543); + lookahead == 'l') ADVANCE(1579); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1271: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1581); + lookahead == 'l') ADVANCE(1215); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1272: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1059); + lookahead == 'l') ADVANCE(1363); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1273: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1584); + lookahead == 'l') ADVANCE(1364); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1274: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1218); + lookahead == 'l') ADVANCE(1169); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1275: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1367); + lookahead == 'l') ADVANCE(1268); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1276: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1368); + lookahead == 'l') ADVANCE(974); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1277: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1171); + lookahead == 'l') ADVANCE(972); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1278: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1271); + lookahead == 'l') ADVANCE(1094); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1279: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(975); + lookahead == 'l') ADVANCE(1103); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1280: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(973); + lookahead == 'l') ADVANCE(1109); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1281: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1096); + lookahead == 'l') ADVANCE(1112); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1282: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1105); + lookahead == 'l') ADVANCE(1113); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1283: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1111); + lookahead == 'l') ADVANCE(1067); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1284: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1114); + lookahead == 'l') ADVANCE(1222); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1285: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1115); + lookahead == 'l') ADVANCE(986); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1296); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1286: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1069); + lookahead == 'l') ADVANCE(1015); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1287: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1225); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1690); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1288: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(987); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1299); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1703); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1289: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1016); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1762); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1290: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1701); + lookahead == 'm') ADVANCE(1763); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1291: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1714); + lookahead == 'm') ADVANCE(1767); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1292: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1773); + lookahead == 'm') ADVANCE(1768); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1293: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1774); + lookahead == 'm') ADVANCE(1387); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1294: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1778); + lookahead == 'm') ADVANCE(911); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1295: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1779); + lookahead == 'm') ADVANCE(1537); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1296: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1391); + lookahead == 'm') ADVANCE(1329); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1297: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(912); + lookahead == 'm') ADVANCE(1092); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1298: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1542); + lookahead == 'm') ADVANCE(1156); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1299: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1332); + lookahead == 'm') ADVANCE(1164); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1300: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1094); + lookahead == 'm') ADVANCE(992); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1002); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1301: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1158); + lookahead == 'm') ADVANCE(1390); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1302: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1166); + lookahead == 'm') ADVANCE(1540); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1303: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(993); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1003); + lookahead == 'm') ADVANCE(1541); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1304: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1394); + lookahead == 'm') ADVANCE(1542); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1305: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1545); + lookahead == 'm') ADVANCE(1172); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1306: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1546); + lookahead == 'm') ADVANCE(1016); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1307: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1547); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1056); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1308: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1726); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1503); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1309: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1017); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1726); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1310: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1057); + lookahead == 'n') ADVANCE(1020); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1130); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1311: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1737); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1508); + lookahead == 'n') ADVANCE(987); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1312: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1737); + lookahead == 'n') ADVANCE(1663); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1313: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1021); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1132); + lookahead == 'n') ADVANCE(1742); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1093); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1314: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(988); + lookahead == 'n') ADVANCE(1670); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1315: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1674); + lookahead == 'n') ADVANCE(1672); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1316: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1753); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1095); + lookahead == 'n') ADVANCE(1738); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1317: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1681); + lookahead == 'n') ADVANCE(1687); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1318: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1683); + lookahead == 'n') ADVANCE(1656); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1319: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1749); + lookahead == 'n') ADVANCE(1397); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1320: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1698); + lookahead == 'n') ADVANCE(1669); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1321: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1667); + lookahead == 'n') ADVANCE(1051); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1322: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1401); + lookahead == 'n') ADVANCE(1190); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1323: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1185); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1324: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1052); + lookahead == 'n') ADVANCE(1479); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1325: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1193); + lookahead == 'n') ADVANCE(1457); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1326: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1188); + lookahead == 'n') ADVANCE(1484); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1327: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1484); + lookahead == 'n') ADVANCE(1485); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1328: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1462); + lookahead == 'n') ADVANCE(1060); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1329: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1489); + lookahead == 'n') ADVANCE(917); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1330: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1490); + lookahead == 'n') ADVANCE(985); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1331: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1061); + lookahead == 'n') ADVANCE(1459); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1332: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(918); + lookahead == 'n') ADVANCE(912); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1333: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(986); + lookahead == 'n') ADVANCE(1270); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1334: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1464); + lookahead == 'n') ADVANCE(1488); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1335: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(913); + lookahead == 'n') ADVANCE(1074); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1336: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1273); + lookahead == 'n') ADVANCE(1064); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1221); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1337: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1493); + lookahead == 'n') ADVANCE(1064); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1338: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1076); + lookahead == 'n') ADVANCE(1096); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1339: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1066); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1224); + lookahead == 'n') ADVANCE(1497); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1340: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1066); + lookahead == 'n') ADVANCE(1508); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1341: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1064); + lookahead == 'n') ADVANCE(1047); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1342: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1098); + lookahead == 'n') ADVANCE(1400); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1343: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1502); + lookahead == 'n') ADVANCE(1070); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1344: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1513); + lookahead == 'n') ADVANCE(1398); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1345: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1048); + lookahead == 'n') ADVANCE(1509); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1346: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1404); + lookahead == 'n') ADVANCE(1071); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1347: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1072); + lookahead == 'n') ADVANCE(988); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1348: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1402); + lookahead == 'n') ADVANCE(1072); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1349: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1514); + lookahead == 'n') ADVANCE(1248); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1350: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1073); + lookahead == 'n') ADVANCE(1251); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1351: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(989); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1740); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1352: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1074); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1218); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1353: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1251); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1708); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1354: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1254); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1728); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1355: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1751); + lookahead == 'o') ADVANCE(1404); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1356: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1221); + lookahead == 'o') ADVANCE(1563); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1357: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1719); + lookahead == 'o') ADVANCE(1026); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1358: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1739); + lookahead == 'o') ADVANCE(1068); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1359: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1409); + lookahead == 'o') ADVANCE(1034); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1360: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1568); + lookahead == 'o') ADVANCE(1392); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1361: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1027); + lookahead == 'o') ADVANCE(1553); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1362: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1070); + lookahead == 'o') ADVANCE(1059); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1363: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1035); + lookahead == 'o') ADVANCE(1036); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1364: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1396); + lookahead == 'o') ADVANCE(1038); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1365: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1558); + lookahead == 'o') ADVANCE(1263); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1366: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1060); + lookahead == 'o') ADVANCE(1407); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1367: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1037); + lookahead == 'o') ADVANCE(1365); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1368: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1039); + lookahead == 'o') ADVANCE(1315); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1369: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1266); + lookahead == 'o') ADVANCE(1332); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1370: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1412); + lookahead == 'o') ADVANCE(1316); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1371: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1369); + lookahead == 'o') ADVANCE(1333); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1372: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1318); + lookahead == 'o') ADVANCE(1317); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1373: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1335); + lookahead == 'o') ADVANCE(1318); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1374: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1319); + lookahead == 'o') ADVANCE(1410); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1375: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1336); + lookahead == 'o') ADVANCE(1413); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1376: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1320); + lookahead == 'o') ADVANCE(1429); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1377: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1321); + lookahead == 'o') ADVANCE(1345); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1378: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1415); + lookahead == 'o') ADVANCE(1536); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1379: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1418); + lookahead == 'o') ADVANCE(1524); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1380: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1434); + lookahead == 'o') ADVANCE(1394); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1381: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1349); + lookahead == 'o') ADVANCE(1041); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1382: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1541); + lookahead == 'o') ADVANCE(1550); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1383: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1529); + lookahead == 'o') ADVANCE(1556); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1384: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1398); + lookahead == 'o') ADVANCE(1525); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1385: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1042); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1710); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1052); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1219); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1386: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1555); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1735); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1387: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1561); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1274); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1388: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1530); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1543); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1389: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1721); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1053); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1222); + lookahead == 'p') ADVANCE(924); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1390: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1746); + lookahead == 'p') ADVANCE(919); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1391: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1277); + lookahead == 'p') ADVANCE(1487); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1392: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1548); + lookahead == 'p') ADVANCE(1235); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1393: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(925); + lookahead == 'p') ADVANCE(1367); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1394: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(920); + lookahead == 'p') ADVANCE(918); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1395: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1492); + lookahead == 'p') ADVANCE(1104); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1396: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1238); + lookahead == 'p') ADVANCE(1136); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1397: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1371); + lookahead == 'p') ADVANCE(1545); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1160); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1398: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(919); + lookahead == 'p') ADVANCE(1545); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1399: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1106); + lookahead == 'p') ADVANCE(1171); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1547); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1400: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1138); + lookahead == 'p') ADVANCE(1546); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1401: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1550); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1162); + lookahead == 'p') ADVANCE(1548); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1402: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1550); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1617); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1403: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1173); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1552); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1544); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1404: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1551); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1651); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1405: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1553); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1646); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1406: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1628); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1573); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1407: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1549); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1727); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1408: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(904); + lookahead == 'r') ADVANCE(1650); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1409: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1662); + lookahead == 'r') ADVANCE(1706); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1410: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1657); + lookahead == 'r') ADVANCE(1749); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1411: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1578); + lookahead == 'r') ADVANCE(1671); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1412: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1738); + lookahead == 'r') ADVANCE(1737); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1413: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1661); + lookahead == 'r') ADVANCE(1693); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1414: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1717); + lookahead == 'r') ADVANCE(1121); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1752); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1415: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1760); + lookahead == 'r') ADVANCE(981); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1416: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1682); + lookahead == 'r') ADVANCE(1216); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1022); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1417: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1748); + lookahead == 'r') ADVANCE(1574); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1431); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1418: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1704); + lookahead == 'r') ADVANCE(1194); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1419: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1123); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1763); + lookahead == 'r') ADVANCE(1564); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1420: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(982); + lookahead == 'r') ADVANCE(1575); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1421: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1219); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1023); + lookahead == 'r') ADVANCE(1044); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1422: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1579); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1436); + lookahead == 'r') ADVANCE(1366); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1423: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1197); + lookahead == 'r') ADVANCE(1224); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1681); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1424: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1569); + lookahead == 'r') ADVANCE(1066); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1425: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1580); + lookahead == 'r') ADVANCE(1577); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1426: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1045); + lookahead == 'r') ADVANCE(1182); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1427: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1370); + lookahead == 'r') ADVANCE(1552); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1428: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1227); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1692); + lookahead == 'r') ADVANCE(1118); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1429: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1068); + lookahead == 'r') ADVANCE(1306); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1430: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1582); + lookahead == 'r') ADVANCE(999); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1431: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1185); + lookahead == 'r') ADVANCE(1314); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1432: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1557); + lookahead == 'r') ADVANCE(1004); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1433: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1120); + lookahead == 'r') ADVANCE(1445); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1434: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1309); + lookahead == 'r') ADVANCE(1381); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1435: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1000); + lookahead == 'r') ADVANCE(1493); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1436: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1317); + lookahead == 'r') ADVANCE(1093); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1437: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1005); + lookahead == 'r') ADVANCE(1506); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1438: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1450); + lookahead == 'r') ADVANCE(1320); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1439: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1385); + lookahead == 'r') ADVANCE(1135); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1382); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1440: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1498); + lookahead == 'r') ADVANCE(1101); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1441: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1095); + lookahead == 'r') ADVANCE(1105); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1442: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1511); + lookahead == 'r') ADVANCE(1108); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1443: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1323); + lookahead == 'r') ADVANCE(1148); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1444: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1137); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1386); + lookahead == 'r') ADVANCE(1471); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1445: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1103); + lookahead == 'r') ADVANCE(1239); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1446: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1107); + lookahead == 'r') ADVANCE(1374); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1447: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1110); + lookahead == 'r') ADVANCE(1512); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1448: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1150); + lookahead == 'r') ADVANCE(970); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1449: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1476); + lookahead == 'r') ADVANCE(1001); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1450: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1242); + lookahead == 'r') ADVANCE(1168); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1451: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1378); + lookahead == 'r') ADVANCE(1151); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1452: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1517); + lookahead == 'r') ADVANCE(1048); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1453: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(971); + lookahead == 'r') ADVANCE(1446); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1454: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1002); + lookahead == 'r') ADVANCE(1006); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1455: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1170); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1648); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1456: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1153); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1626); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1457: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1049); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1621); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1458: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1451); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1622); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1459: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1007); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1623); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1460: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1659); + lookahead == 's') ADVANCE(1717); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1461: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1637); + lookahead == 's') ADVANCE(1695); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1462: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1632); + lookahead == 's') ADVANCE(1722); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1463: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1633); + lookahead == 's') ADVANCE(1688); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1464: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1634); + lookahead == 's') ADVANCE(1482); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1465: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1728); + lookahead == 's') ADVANCE(1456); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1466: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1706); + lookahead == 's') ADVANCE(1042); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1467: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1733); + lookahead == 's') ADVANCE(1522); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1468: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1699); + lookahead == 's') ADVANCE(1087); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1037); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1469: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1487); + lookahead == 's') ADVANCE(1087); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1470: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1461); + lookahead == 's') ADVANCE(1088); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1471: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1043); + lookahead == 's') ADVANCE(1486); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1472: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1527); + lookahead == 's') ADVANCE(1237); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1473: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1089); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1038); + lookahead == 's') ADVANCE(1217); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1474: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1089); + lookahead == 's') ADVANCE(1091); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1475: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1090); + lookahead == 's') ADVANCE(1154); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1476: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1491); + lookahead == 's') ADVANCE(1106); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1477: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1240); + lookahead == 's') ADVANCE(1176); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1478: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1220); + lookahead == 's') ADVANCE(1481); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1479: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1093); + lookahead == 's') ADVANCE(1017); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1480: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1156); + lookahead == 's') ADVANCE(1513); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(997); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1165); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1481: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1108); + lookahead == 's') ADVANCE(1009); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1482: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1178); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1755); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1483: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1486); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1736); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1484: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1018); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1761); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1485: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1518); if (lookahead == 'T' || - lookahead == 't') ADVANCE(998); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1167); + lookahead == 't') ADVANCE(1683); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1486: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1010); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1754); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1487: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1766); + lookahead == 't') ADVANCE(1659); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1488: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1747); + lookahead == 't') ADVANCE(1679); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1489: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1772); + lookahead == 't') ADVANCE(1661); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1490: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1694); + lookahead == 't') ADVANCE(1667); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1491: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1765); + lookahead == 't') ADVANCE(1715); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1492: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1670); + lookahead == 't') ADVANCE(1748); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1493: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1690); + lookahead == 't') ADVANCE(1714); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1494: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1672); + lookahead == 't') ADVANCE(1673); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1495: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1678); + lookahead == 't') ADVANCE(1677); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1496: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1726); + lookahead == 't') ADVANCE(1720); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1497: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1759); + lookahead == 't') ADVANCE(1766); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1498: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1725); + lookahead == 't') ADVANCE(1601); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1499: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1684); + lookahead == 't') ADVANCE(1602); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1500: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1688); + lookahead == 't') ADVANCE(1662); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1501: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1731); + lookahead == 't') ADVANCE(1730); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1502: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1777); + lookahead == 't') ADVANCE(963); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1503: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1612); + lookahead == 't') ADVANCE(1388); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1504: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1613); + lookahead == 't') ADVANCE(1201); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1505: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1673); + lookahead == 't') ADVANCE(1220); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1506: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1741); + lookahead == 't') ADVANCE(1578); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1507: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(964); + lookahead == 't') ADVANCE(1226); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1508: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1392); + lookahead == 't') ADVANCE(1461); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1509: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1204); + lookahead == 't') ADVANCE(997); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1510: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1223); + lookahead == 't') ADVANCE(916); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1511: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1583); + lookahead == 't') ADVANCE(1163); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1512: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1229); + lookahead == 't') ADVANCE(1449); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1513: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1466); + lookahead == 't') ADVANCE(1427); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1514: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(998); + lookahead == 't') ADVANCE(1380); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1515: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(917); + lookahead == 't') ADVANCE(1008); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1516: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1165); + lookahead == 't') ADVANCE(1099); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1517: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1454); + lookahead == 't') ADVANCE(1100); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1518: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1432); + lookahead == 't') ADVANCE(1145); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1519: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1384); + lookahead == 't') ADVANCE(1052); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1520: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1009); + lookahead == 't') ADVANCE(1208); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1521: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1101); + lookahead == 't') ADVANCE(1551); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1522: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1102); + lookahead == 't') ADVANCE(1432); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1523: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1147); + lookahead == 't') ADVANCE(1375); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1524: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1053); + lookahead == 't') ADVANCE(984); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1525: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1211); + lookahead == 't') ADVANCE(990); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1526: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1556); + lookahead == 't') ADVANCE(1157); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1527: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1437); + lookahead == 't') ADVANCE(1158); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1528: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1379); + lookahead == 't') ADVANCE(1241); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1529: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(985); + lookahead == 't') ADVANCE(1401); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1530: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(991); + lookahead == 't') ADVANCE(1245); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1531: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1159); + lookahead == 't') ADVANCE(1246); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1532: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1160); + lookahead == 't') ADVANCE(1247); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1533: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1244); + lookahead == 't') ADVANCE(1012); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1534: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1405); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1141); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1535: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1248); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1503); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1536: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1249); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1326); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1537: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1250); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1289); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1538: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1013); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1472); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1539: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1143); + lookahead == 'u') ADVANCE(1421); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1540: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1508); + lookahead == 'u') ADVANCE(1290); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1541: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1329); + lookahead == 'u') ADVANCE(1291); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1542: ACCEPT_TOKEN(sym_identifier); @@ -19916,446 +19319,401 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1543: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1477); + lookahead == 'u') ADVANCE(1489); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1544: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1426); + lookahead == 'u') ADVANCE(1097); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1545: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1293); + lookahead == 'u') ADVANCE(1498); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1546: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1294); + lookahead == 'u') ADVANCE(1499); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1547: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1295); + lookahead == 'u') ADVANCE(1438); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1548: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1494); + lookahead == 'u') ADVANCE(1500); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1549: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1099); + lookahead == 'u') ADVANCE(1023); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1550: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1503); + lookahead == 'u') ADVANCE(1452); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1551: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1504); + lookahead == 'u') ADVANCE(1441); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1552: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1443); + lookahead == 'u') ADVANCE(1046); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1553: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1505); + lookahead == 'u') ADVANCE(1339); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1554: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1024); + lookahead == 'u') ADVANCE(1442); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1555: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1457); + lookahead == 'u') ADVANCE(1142); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1556: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1446); + lookahead == 'u') ADVANCE(1529); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1557: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1047); + lookahead == 'u') ADVANCE(1188); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1558: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1343); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1134); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1559: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1447); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1144); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1560: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1144); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1002); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1561: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1534); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1177); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1562: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1191); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1633); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1563: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1136); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1733); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1564: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1146); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1244); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1565: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1003); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1210); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1566: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1179); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1750); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1567: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1644); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1775); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1568: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1744); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1776); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1569: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1247); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1219); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1570: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1213); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1043); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1571: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1761); + lookahead == 'x') ADVANCE(1501); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1572: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1786); + lookahead == 'x') ADVANCE(1250); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1573: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1787); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1657); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1574: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1222); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1731); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1575: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1044); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1707); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1576: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1506); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1759); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1577: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1253); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1773); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1578: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1668); + lookahead == 'y') ADVANCE(1682); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1579: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1742); + lookahead == 'y') ADVANCE(1771); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); case 1580: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1718); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); - END_STATE(); - case 1581: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1770); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); - END_STATE(); - case 1582: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1784); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); - END_STATE(); - case 1583: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1693); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); - END_STATE(); - case 1584: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1782); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); - END_STATE(); - case 1585: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1109); + lookahead == 'z') ADVANCE(1107); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 1586: + case 1581: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1015); + lookahead == 'z') ADVANCE(1014); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 1587: + case 1582: ACCEPT_TOKEN(sym_identifier); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 1588: + case 1583: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 1589: + case 1584: ACCEPT_TOKEN(sym__terminator); END_STATE(); - case 1590: + case 1585: ACCEPT_TOKEN(aux_sym__block_terminator_token1); END_STATE(); - case 1591: + case 1586: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 1592: + case 1587: ACCEPT_TOKEN(sym_null_expression); END_STATE(); - case 1593: + case 1588: ACCEPT_TOKEN(sym__integer_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1588); END_STATE(); - case 1594: + case 1589: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 1595: + case 1590: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); - if (lookahead == '*') ADVANCE(892); - if (lookahead == '/') ADVANCE(883); + if (lookahead == '*') ADVANCE(893); + if (lookahead == '/') ADVANCE(884); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1597); + lookahead != '\\') ADVANCE(1592); END_STATE(); - case 1596: + case 1591: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); - if (lookahead == '/') ADVANCE(1595); - if (lookahead == '\\') ADVANCE(13); - if (lookahead == '{') ADVANCE(899); + if (lookahead == '/') ADVANCE(1590); + if (lookahead == '\\') ADVANCE(14); + if (lookahead == '{') ADVANCE(900); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -20363,35 +19721,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1596); + lookahead == 65279) ADVANCE(1591); if (lookahead != 0 && - lookahead != '"') ADVANCE(1597); + lookahead != '"') ADVANCE(1592); END_STATE(); - case 1597: + case 1592: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1597); + lookahead != '\\') ADVANCE(1592); END_STATE(); - case 1598: + case 1593: ACCEPT_TOKEN(aux_sym_double_quoted_string_token2); END_STATE(); - case 1599: + case 1594: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1600: + case 1595: ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); - if (lookahead == '*') ADVANCE(893); - if (lookahead == '/') ADVANCE(884); + if (lookahead == '*') ADVANCE(894); + if (lookahead == '/') ADVANCE(885); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(1602); + lookahead != '\\') ADVANCE(1597); END_STATE(); - case 1601: + case 1596: ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); - if (lookahead == '/') ADVANCE(1600); - if (lookahead == '\\') ADVANCE(14); - if (lookahead == '{') ADVANCE(900); + if (lookahead == '/') ADVANCE(1595); + if (lookahead == '\\') ADVANCE(13); + if (lookahead == '{') ADVANCE(901); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -20399,608 +19757,590 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1601); + lookahead == 65279) ADVANCE(1596); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1602); + lookahead != '\'') ADVANCE(1597); END_STATE(); - case 1602: + case 1597: ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(1602); + lookahead != '\\') ADVANCE(1597); END_STATE(); - case 1603: + case 1598: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 1604: + case 1599: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 1605: - ACCEPT_TOKEN(aux_sym__logical_operator_token1); - END_STATE(); - case 1606: - ACCEPT_TOKEN(aux_sym__logical_operator_token2); - END_STATE(); - case 1607: - ACCEPT_TOKEN(aux_sym__logical_operator_token3); - END_STATE(); - case 1608: - ACCEPT_TOKEN(aux_sym__logical_operator_token4); - END_STATE(); - case 1609: - ACCEPT_TOKEN(aux_sym__logical_operator_token5); - END_STATE(); - case 1610: - ACCEPT_TOKEN(aux_sym__logical_operator_token6); - END_STATE(); - case 1611: + case 1600: ACCEPT_TOKEN(aux_sym_unary_expression_token1); END_STATE(); - case 1612: + case 1601: ACCEPT_TOKEN(aux_sym_input_expression_token1); END_STATE(); - case 1613: + case 1602: ACCEPT_TOKEN(aux_sym_input_expression_token1); - if (lookahead == '-') ADVANCE(1387); + if (lookahead == '-') ADVANCE(1383); END_STATE(); - case 1614: + case 1603: ACCEPT_TOKEN(aux_sym_input_expression_token1); - if (lookahead == '-') ADVANCE(654); + if (lookahead == '-') ADVANCE(649); END_STATE(); - case 1615: + case 1604: ACCEPT_TOKEN(aux_sym_input_expression_token2); END_STATE(); - case 1616: + case 1605: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 1617: + case 1606: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 1618: + case 1607: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1619); - if (lookahead == '>') ADVANCE(1620); + if (lookahead == '=') ADVANCE(1608); + if (lookahead == '>') ADVANCE(1609); END_STATE(); - case 1619: + case 1608: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 1620: + case 1609: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 1621: + case 1610: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 1622: + case 1611: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1623); + if (lookahead == '=') ADVANCE(1612); END_STATE(); - case 1623: + case 1612: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 1624: + case 1613: ACCEPT_TOKEN(aux_sym__comparison_operator_token1); END_STATE(); - case 1625: + case 1614: ACCEPT_TOKEN(aux_sym__comparison_operator_token2); END_STATE(); - case 1626: + case 1615: ACCEPT_TOKEN(aux_sym__comparison_operator_token3); END_STATE(); - case 1627: + case 1616: ACCEPT_TOKEN(aux_sym__comparison_operator_token3); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1644); + lookahead == 'w') ADVANCE(1633); END_STATE(); - case 1628: + case 1617: ACCEPT_TOKEN(aux_sym__comparison_operator_token4); END_STATE(); - case 1629: + case 1618: ACCEPT_TOKEN(aux_sym__comparison_operator_token5); END_STATE(); - case 1630: + case 1619: ACCEPT_TOKEN(aux_sym__comparison_operator_token6); END_STATE(); - case 1631: + case 1620: ACCEPT_TOKEN(aux_sym__comparison_operator_token6); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1691); + lookahead == 't') ADVANCE(1680); END_STATE(); - case 1632: + case 1621: ACCEPT_TOKEN(aux_sym__comparison_operator_token7); END_STATE(); - case 1633: + case 1622: ACCEPT_TOKEN(aux_sym__comparison_operator_token8); END_STATE(); - case 1634: + case 1623: ACCEPT_TOKEN(aux_sym__comparison_operator_token9); END_STATE(); - case 1635: + case 1624: ACCEPT_TOKEN(aux_sym_include_argument_token1); END_STATE(); - case 1636: + case 1625: ACCEPT_TOKEN(aux_sym_primitive_type_token1); END_STATE(); - case 1637: + case 1626: ACCEPT_TOKEN(aux_sym_primitive_type_token19); END_STATE(); - case 1638: + case 1627: ACCEPT_TOKEN(aux_sym_variable_tuning_token1); END_STATE(); - case 1639: + case 1628: ACCEPT_TOKEN(aux_sym_variable_tuning_token2); END_STATE(); - case 1640: + case 1629: ACCEPT_TOKEN(aux_sym_variable_tuning_token3); END_STATE(); - case 1641: + case 1630: ACCEPT_TOKEN(aux_sym_variable_tuning_token4); END_STATE(); - case 1642: + case 1631: ACCEPT_TOKEN(aux_sym_variable_tuning_token5); END_STATE(); - case 1643: + case 1632: ACCEPT_TOKEN(aux_sym_variable_tuning_token6); END_STATE(); - case 1644: + case 1633: ACCEPT_TOKEN(aux_sym_scope_tuning_token1); END_STATE(); - case 1645: + case 1634: ACCEPT_TOKEN(aux_sym_scope_tuning_token2); END_STATE(); - case 1646: + case 1635: ACCEPT_TOKEN(aux_sym_scope_tuning_token3); END_STATE(); - case 1647: + case 1636: ACCEPT_TOKEN(aux_sym_scope_tuning_token4); END_STATE(); - case 1648: + case 1637: ACCEPT_TOKEN(aux_sym_access_tuning_token1); END_STATE(); - case 1649: + case 1638: ACCEPT_TOKEN(aux_sym_access_tuning_token2); END_STATE(); - case 1650: + case 1639: ACCEPT_TOKEN(aux_sym_access_tuning_token3); END_STATE(); - case 1651: + case 1640: ACCEPT_TOKEN(aux_sym_serialization_tuning_token1); END_STATE(); - case 1652: + case 1641: ACCEPT_TOKEN(aux_sym_serialization_tuning_token2); END_STATE(); - case 1653: + case 1642: ACCEPT_TOKEN(aux_sym_variable_definition_token1); END_STATE(); - case 1654: + case 1643: ACCEPT_TOKEN(aux_sym_variable_definition_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(607); + lookahead == 'i') ADVANCE(601); END_STATE(); - case 1655: + case 1644: ACCEPT_TOKEN(aux_sym_variable_definition_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1342); + lookahead == 'i') ADVANCE(1338); END_STATE(); - case 1656: + case 1645: ACCEPT_TOKEN(aux_sym_variable_definition_token3); END_STATE(); - case 1657: + case 1646: ACCEPT_TOKEN(aux_sym_variable_definition_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(997); + lookahead == 'i') ADVANCE(996); END_STATE(); - case 1658: + case 1647: ACCEPT_TOKEN(aux_sym_variable_definition_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(219); + lookahead == 'i') ADVANCE(215); END_STATE(); - case 1659: + case 1648: ACCEPT_TOKEN(aux_sym_variable_definition_token5); END_STATE(); - case 1660: + case 1649: ACCEPT_TOKEN(aux_sym_variable_definition_token6); END_STATE(); - case 1661: + case 1650: ACCEPT_TOKEN(aux_sym_buffer_definition_token1); END_STATE(); - case 1662: + case 1651: ACCEPT_TOKEN(aux_sym_buffer_definition_token2); END_STATE(); - case 1663: + case 1652: ACCEPT_TOKEN(aux_sym_buffer_definition_token3); END_STATE(); - case 1664: + case 1653: ACCEPT_TOKEN(aux_sym_query_definition_tuning_token1); END_STATE(); - case 1665: + case 1654: ACCEPT_TOKEN(anon_sym_SCROLLING); END_STATE(); - case 1666: + case 1655: ACCEPT_TOKEN(anon_sym_SCROLLING); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 1667: + case 1656: ACCEPT_TOKEN(aux_sym_query_definition_tuning_token2); END_STATE(); - case 1668: + case 1657: ACCEPT_TOKEN(aux_sym_query_definition_token1); END_STATE(); - case 1669: + case 1658: ACCEPT_TOKEN(aux_sym_query_definition_token2); END_STATE(); - case 1670: + case 1659: ACCEPT_TOKEN(aux_sym_query_definition_token3); END_STATE(); - case 1671: + case 1660: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 1672: + case 1661: ACCEPT_TOKEN(aux_sym_argument_mode_token1); END_STATE(); - case 1673: + case 1662: ACCEPT_TOKEN(aux_sym_argument_mode_token2); END_STATE(); - case 1674: + case 1663: ACCEPT_TOKEN(aux_sym_if_statement_token2); END_STATE(); - case 1675: + case 1664: ACCEPT_TOKEN(aux_sym_else_if_statement_token1); END_STATE(); - case 1676: + case 1665: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 1677: + case 1666: ACCEPT_TOKEN(aux_sym_while_phrase_token1); END_STATE(); - case 1678: + case 1667: ACCEPT_TOKEN(aux_sym_repeat_statement_token1); END_STATE(); - case 1679: + case 1668: ACCEPT_TOKEN(aux_sym__procedure_terminator_token1); END_STATE(); - case 1680: + case 1669: ACCEPT_TOKEN(aux_sym_procedure_parameter_definition_token1); END_STATE(); - case 1681: + case 1670: ACCEPT_TOKEN(aux_sym_procedure_parameter_definition_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1686); + lookahead == 's') ADVANCE(1675); END_STATE(); - case 1682: + case 1671: ACCEPT_TOKEN(aux_sym_procedure_parameter_definition_token2); END_STATE(); - case 1683: + case 1672: ACCEPT_TOKEN(aux_sym__function_terminator_token1); END_STATE(); - case 1684: + case 1673: ACCEPT_TOKEN(aux_sym_function_parameter_token1); END_STATE(); - case 1685: + case 1674: ACCEPT_TOKEN(aux_sym_function_parameter_token2); END_STATE(); - case 1686: + case 1675: ACCEPT_TOKEN(aux_sym_function_statement_token1); END_STATE(); - case 1687: + case 1676: ACCEPT_TOKEN(aux_sym_interface_statement_token1); END_STATE(); - case 1688: + case 1677: ACCEPT_TOKEN(aux_sym_property_type_token1); END_STATE(); - case 1689: + case 1678: ACCEPT_TOKEN(aux_sym_property_type_token2); END_STATE(); - case 1690: + case 1679: ACCEPT_TOKEN(aux_sym_property_tuning_token1); END_STATE(); - case 1691: + case 1680: ACCEPT_TOKEN(aux_sym_getter_token1); END_STATE(); - case 1692: + case 1681: ACCEPT_TOKEN(aux_sym_setter_token1); END_STATE(); - case 1693: + case 1682: ACCEPT_TOKEN(aux_sym_property_definition_token1); END_STATE(); - case 1694: + case 1683: ACCEPT_TOKEN(aux_sym_event_definition_token1); END_STATE(); - case 1695: + case 1684: ACCEPT_TOKEN(aux_sym_event_definition_token2); END_STATE(); - case 1696: + case 1685: ACCEPT_TOKEN(aux_sym_method_definition_token1); END_STATE(); - case 1697: + case 1686: ACCEPT_TOKEN(anon_sym_METHOD); END_STATE(); - case 1698: + case 1687: ACCEPT_TOKEN(aux_sym_data_relation_token1); END_STATE(); - case 1699: + case 1688: ACCEPT_TOKEN(aux_sym_data_relation_token2); END_STATE(); - case 1700: + case 1689: ACCEPT_TOKEN(aux_sym_using_statement_token1); END_STATE(); - case 1701: + case 1690: ACCEPT_TOKEN(aux_sym_using_statement_token2); END_STATE(); - case 1702: + case 1691: ACCEPT_TOKEN(aux_sym_using_statement_token3); END_STATE(); - case 1703: + case 1692: ACCEPT_TOKEN(aux_sym_using_statement_token4); END_STATE(); - case 1704: + case 1693: ACCEPT_TOKEN(aux_sym_constructor_definition_token1); END_STATE(); - case 1705: + case 1694: ACCEPT_TOKEN(aux_sym_inherits_token1); END_STATE(); - case 1706: + case 1695: ACCEPT_TOKEN(aux_sym_implements_token1); END_STATE(); - case 1707: + case 1696: ACCEPT_TOKEN(aux_sym_use_widget_pool_token1); END_STATE(); - case 1708: + case 1697: ACCEPT_TOKEN(aux_sym_final_token1); END_STATE(); - case 1709: + case 1698: ACCEPT_TOKEN(aux_sym_final_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1581); + lookahead == 'l') ADVANCE(1576); END_STATE(); - case 1710: + case 1699: ACCEPT_TOKEN(anon_sym_NO_DASHERROR); END_STATE(); - case 1711: + case 1700: ACCEPT_TOKEN(anon_sym_NO_DASHERROR); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1587); + lookahead == '|') ADVANCE(1582); END_STATE(); - case 1712: + case 1701: ACCEPT_TOKEN(aux_sym_stream_definition_token1); END_STATE(); - case 1713: + case 1702: ACCEPT_TOKEN(aux_sym_stream_definition_token1); - if (lookahead == '-') ADVANCE(458); + if (lookahead == '-') ADVANCE(452); END_STATE(); - case 1714: + case 1703: ACCEPT_TOKEN(aux_sym_stream_definition_token1); - if (lookahead == '-') ADVANCE(1210); + if (lookahead == '-') ADVANCE(1207); END_STATE(); - case 1715: + case 1704: ACCEPT_TOKEN(aux_sym_input_close_statement_token1); END_STATE(); - case 1716: + case 1705: ACCEPT_TOKEN(aux_sym_input_close_statement_token2); END_STATE(); - case 1717: + case 1706: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token1); END_STATE(); - case 1718: + case 1707: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token2); END_STATE(); - case 1719: + case 1708: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token3); END_STATE(); - case 1720: + case 1709: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token4); END_STATE(); - case 1721: + case 1710: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token5); END_STATE(); - case 1722: + case 1711: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token6); END_STATE(); - case 1723: + case 1712: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token7); END_STATE(); - case 1724: + case 1713: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token8); END_STATE(); - case 1725: + case 1714: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token9); END_STATE(); - case 1726: + case 1715: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token10); END_STATE(); - case 1727: + case 1716: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token11); END_STATE(); - case 1728: + case 1717: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token1); END_STATE(); - case 1729: + case 1718: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token2); END_STATE(); - case 1730: + case 1719: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token3); END_STATE(); - case 1731: + case 1720: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token4); END_STATE(); - case 1732: + case 1721: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token5); END_STATE(); - case 1733: + case 1722: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token6); END_STATE(); - case 1734: + case 1723: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token7); END_STATE(); - case 1735: + case 1724: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token8); END_STATE(); - case 1736: + case 1725: ACCEPT_TOKEN(aux_sym_output_stream_statement_token1); END_STATE(); - case 1737: + case 1726: ACCEPT_TOKEN(aux_sym_on_error_phrase_token1); END_STATE(); - case 1738: + case 1727: ACCEPT_TOKEN(aux_sym_on_error_phrase_token2); END_STATE(); - case 1739: + case 1728: ACCEPT_TOKEN(aux_sym_on_error_phrase_token3); END_STATE(); - case 1740: + case 1729: ACCEPT_TOKEN(aux_sym_on_error_phrase_token4); END_STATE(); - case 1741: + case 1730: ACCEPT_TOKEN(aux_sym_on_error_phrase_token5); END_STATE(); - case 1742: + case 1731: ACCEPT_TOKEN(aux_sym_on_error_phrase_token6); END_STATE(); - case 1743: + case 1732: ACCEPT_TOKEN(aux_sym_on_error_phrase_token7); END_STATE(); - case 1744: + case 1733: ACCEPT_TOKEN(aux_sym_on_error_phrase_token8); END_STATE(); - case 1745: + case 1734: ACCEPT_TOKEN(aux_sym_on_stop_phrase_token1); END_STATE(); - case 1746: + case 1735: ACCEPT_TOKEN(aux_sym_on_stop_phrase_token1); - if (lookahead == '-') ADVANCE(974); + if (lookahead == '-') ADVANCE(973); END_STATE(); - case 1747: + case 1736: ACCEPT_TOKEN(aux_sym_on_quit_phrase_token1); END_STATE(); - case 1748: + case 1737: ACCEPT_TOKEN(aux_sym_stop_after_phrase_token1); END_STATE(); - case 1749: + case 1738: ACCEPT_TOKEN(aux_sym_do_tuning_token1); END_STATE(); - case 1750: + case 1739: ACCEPT_TOKEN(anon_sym_BY); END_STATE(); - case 1751: + case 1740: ACCEPT_TOKEN(aux_sym_do_block_token1); END_STATE(); - case 1752: + case 1741: ACCEPT_TOKEN(aux_sym__case_terminator_token1); END_STATE(); - case 1753: + case 1742: ACCEPT_TOKEN(aux_sym_case_when_branch_token1); END_STATE(); - case 1754: + case 1743: ACCEPT_TOKEN(aux_sym_case_otherwise_branch_token1); END_STATE(); - case 1755: + case 1744: ACCEPT_TOKEN(aux_sym_where_clause_token1); END_STATE(); - case 1756: + case 1745: ACCEPT_TOKEN(aux_sym_query_tuning_token1); END_STATE(); - case 1757: + case 1746: ACCEPT_TOKEN(aux_sym_query_tuning_token2); END_STATE(); - case 1758: + case 1747: ACCEPT_TOKEN(aux_sym_query_tuning_token3); END_STATE(); - case 1759: + case 1748: ACCEPT_TOKEN(aux_sym_query_tuning_token4); END_STATE(); - case 1760: + case 1749: ACCEPT_TOKEN(aux_sym_query_tuning_token5); END_STATE(); - case 1761: + case 1750: ACCEPT_TOKEN(aux_sym_query_tuning_token6); END_STATE(); - case 1762: + case 1751: ACCEPT_TOKEN(aux_sym_sort_clause_token1); END_STATE(); - case 1763: + case 1752: ACCEPT_TOKEN(aux_sym_sort_clause_token2); END_STATE(); - case 1764: + case 1753: ACCEPT_TOKEN(aux_sym_for_phrase_token1); END_STATE(); - case 1765: + case 1754: ACCEPT_TOKEN(aux_sym_for_phrase_token2); END_STATE(); - case 1766: + case 1755: ACCEPT_TOKEN(aux_sym_for_phrase_token3); END_STATE(); - case 1767: + case 1756: ACCEPT_TOKEN(aux_sym_of_token1); END_STATE(); - case 1768: + case 1757: ACCEPT_TOKEN(aux_sym__using_and_token1); END_STATE(); - case 1769: + case 1758: ACCEPT_TOKEN(aux_sym_catch_statement_token1); END_STATE(); - case 1770: + case 1759: ACCEPT_TOKEN(aux_sym_finally_statement_token1); END_STATE(); - case 1771: + case 1760: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token1); END_STATE(); - case 1772: + case 1761: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token2); END_STATE(); - case 1773: + case 1762: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token3); END_STATE(); - case 1774: + case 1763: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token4); END_STATE(); - case 1775: + case 1764: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token5); END_STATE(); - case 1776: + case 1765: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token6); END_STATE(); - case 1777: + case 1766: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token7); END_STATE(); - case 1778: + case 1767: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token8); END_STATE(); - case 1779: + case 1768: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token9); END_STATE(); - case 1780: + case 1769: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token10); END_STATE(); - case 1781: + case 1770: ACCEPT_TOKEN(anon_sym_); - if (lookahead == ' ') ADVANCE(1781); + if (lookahead == ' ') ADVANCE(1770); END_STATE(); - case 1782: + case 1771: ACCEPT_TOKEN(aux_sym_temp_table_tuning_token1); END_STATE(); - case 1783: + case 1772: ACCEPT_TOKEN(aux_sym_field_definition_token1); END_STATE(); - case 1784: + case 1773: ACCEPT_TOKEN(aux_sym_index_tuning_token2); END_STATE(); - case 1785: + case 1774: ACCEPT_TOKEN(aux_sym_index_tuning_token3); END_STATE(); - case 1786: + case 1775: ACCEPT_TOKEN(aux_sym_index_tuning_token4); END_STATE(); - case 1787: + case 1776: ACCEPT_TOKEN(aux_sym_index_definition_token1); END_STATE(); - case 1788: + case 1777: ACCEPT_TOKEN(aux_sym_on_statement_token1); END_STATE(); - case 1789: + case 1778: ACCEPT_TOKEN(aux_sym_data_source_definition_token1); END_STATE(); default: @@ -21852,4680 +21192,4701 @@ 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 = 877}, - [2] = {.lex_state = 875, .external_lex_state = 2}, - [3] = {.lex_state = 875, .external_lex_state = 2}, - [4] = {.lex_state = 875, .external_lex_state = 2}, - [5] = {.lex_state = 44}, - [6] = {.lex_state = 44}, - [7] = {.lex_state = 44}, - [8] = {.lex_state = 44}, - [9] = {.lex_state = 44}, - [10] = {.lex_state = 44, .external_lex_state = 2}, - [11] = {.lex_state = 44}, - [12] = {.lex_state = 44}, - [13] = {.lex_state = 875, .external_lex_state = 1}, - [14] = {.lex_state = 44, .external_lex_state = 3}, - [15] = {.lex_state = 44, .external_lex_state = 3}, - [16] = {.lex_state = 875, .external_lex_state = 1}, - [17] = {.lex_state = 44, .external_lex_state = 3}, - [18] = {.lex_state = 44}, - [19] = {.lex_state = 44}, - [20] = {.lex_state = 44}, - [21] = {.lex_state = 44}, - [22] = {.lex_state = 44}, - [23] = {.lex_state = 44}, - [24] = {.lex_state = 44}, - [25] = {.lex_state = 44}, - [26] = {.lex_state = 875, .external_lex_state = 2}, - [27] = {.lex_state = 44}, - [28] = {.lex_state = 44}, - [29] = {.lex_state = 44}, - [30] = {.lex_state = 44}, - [31] = {.lex_state = 44}, - [32] = {.lex_state = 44}, - [33] = {.lex_state = 44}, - [34] = {.lex_state = 44}, - [35] = {.lex_state = 44}, - [36] = {.lex_state = 44}, - [37] = {.lex_state = 44}, - [38] = {.lex_state = 44}, - [39] = {.lex_state = 44}, - [40] = {.lex_state = 875, .external_lex_state = 2}, - [41] = {.lex_state = 44}, - [42] = {.lex_state = 44}, - [43] = {.lex_state = 44}, - [44] = {.lex_state = 44}, - [45] = {.lex_state = 875}, - [46] = {.lex_state = 875}, - [47] = {.lex_state = 875}, - [48] = {.lex_state = 875}, - [49] = {.lex_state = 875}, - [50] = {.lex_state = 875}, - [51] = {.lex_state = 875}, - [52] = {.lex_state = 875}, - [53] = {.lex_state = 875}, - [54] = {.lex_state = 875}, - [55] = {.lex_state = 46}, - [56] = {.lex_state = 46}, - [57] = {.lex_state = 104}, - [58] = {.lex_state = 104}, - [59] = {.lex_state = 104}, - [60] = {.lex_state = 104}, - [61] = {.lex_state = 104}, - [62] = {.lex_state = 104}, - [63] = {.lex_state = 104}, - [64] = {.lex_state = 104}, - [65] = {.lex_state = 104}, - [66] = {.lex_state = 104}, - [67] = {.lex_state = 104}, - [68] = {.lex_state = 104}, - [69] = {.lex_state = 104}, - [70] = {.lex_state = 104}, - [71] = {.lex_state = 104}, - [72] = {.lex_state = 104}, - [73] = {.lex_state = 104}, - [74] = {.lex_state = 104}, - [75] = {.lex_state = 104}, - [76] = {.lex_state = 104}, - [77] = {.lex_state = 104}, - [78] = {.lex_state = 104}, - [79] = {.lex_state = 49}, - [80] = {.lex_state = 104}, - [81] = {.lex_state = 104}, - [82] = {.lex_state = 49}, - [83] = {.lex_state = 104}, - [84] = {.lex_state = 49}, - [85] = {.lex_state = 104}, - [86] = {.lex_state = 104}, - [87] = {.lex_state = 49}, - [88] = {.lex_state = 104}, - [89] = {.lex_state = 104}, - [90] = {.lex_state = 104}, - [91] = {.lex_state = 104}, - [92] = {.lex_state = 104}, - [93] = {.lex_state = 104}, - [94] = {.lex_state = 104}, - [95] = {.lex_state = 104}, - [96] = {.lex_state = 104}, - [97] = {.lex_state = 104}, - [98] = {.lex_state = 104}, - [99] = {.lex_state = 104}, - [100] = {.lex_state = 104}, - [101] = {.lex_state = 104}, - [102] = {.lex_state = 104}, - [103] = {.lex_state = 104}, - [104] = {.lex_state = 104}, - [105] = {.lex_state = 104}, - [106] = {.lex_state = 104}, - [107] = {.lex_state = 104}, - [108] = {.lex_state = 104}, - [109] = {.lex_state = 104}, - [110] = {.lex_state = 104}, - [111] = {.lex_state = 104}, - [112] = {.lex_state = 104}, - [113] = {.lex_state = 104}, - [114] = {.lex_state = 104}, - [115] = {.lex_state = 104}, - [116] = {.lex_state = 104}, - [117] = {.lex_state = 104}, - [118] = {.lex_state = 104}, - [119] = {.lex_state = 104}, - [120] = {.lex_state = 104}, - [121] = {.lex_state = 104}, - [122] = {.lex_state = 104}, - [123] = {.lex_state = 104}, - [124] = {.lex_state = 104}, - [125] = {.lex_state = 104}, - [126] = {.lex_state = 104}, - [127] = {.lex_state = 104}, - [128] = {.lex_state = 104}, - [129] = {.lex_state = 104}, - [130] = {.lex_state = 104}, - [131] = {.lex_state = 104}, - [132] = {.lex_state = 104}, - [133] = {.lex_state = 104}, - [134] = {.lex_state = 104}, - [135] = {.lex_state = 104}, - [136] = {.lex_state = 104}, - [137] = {.lex_state = 49}, - [138] = {.lex_state = 104}, - [139] = {.lex_state = 104}, - [140] = {.lex_state = 104}, - [141] = {.lex_state = 104}, - [142] = {.lex_state = 104}, - [143] = {.lex_state = 104}, - [144] = {.lex_state = 104}, - [145] = {.lex_state = 104}, - [146] = {.lex_state = 104}, - [147] = {.lex_state = 104}, - [148] = {.lex_state = 104}, - [149] = {.lex_state = 104}, - [150] = {.lex_state = 104}, - [151] = {.lex_state = 104}, - [152] = {.lex_state = 104}, - [153] = {.lex_state = 104}, - [154] = {.lex_state = 104}, - [155] = {.lex_state = 104}, - [156] = {.lex_state = 104}, - [157] = {.lex_state = 104}, - [158] = {.lex_state = 104}, - [159] = {.lex_state = 104}, - [160] = {.lex_state = 104}, - [161] = {.lex_state = 104}, - [162] = {.lex_state = 104}, - [163] = {.lex_state = 104}, - [164] = {.lex_state = 104}, - [165] = {.lex_state = 104}, - [166] = {.lex_state = 104}, - [167] = {.lex_state = 104}, - [168] = {.lex_state = 104}, - [169] = {.lex_state = 104}, - [170] = {.lex_state = 104}, - [171] = {.lex_state = 104}, - [172] = {.lex_state = 104}, - [173] = {.lex_state = 104}, - [174] = {.lex_state = 104}, - [175] = {.lex_state = 104}, - [176] = {.lex_state = 104}, - [177] = {.lex_state = 104}, - [178] = {.lex_state = 104}, - [179] = {.lex_state = 104}, - [180] = {.lex_state = 104}, - [181] = {.lex_state = 104}, - [182] = {.lex_state = 104}, - [183] = {.lex_state = 104}, - [184] = {.lex_state = 104}, - [185] = {.lex_state = 104}, - [186] = {.lex_state = 104}, - [187] = {.lex_state = 104}, - [188] = {.lex_state = 104}, - [189] = {.lex_state = 104}, - [190] = {.lex_state = 104}, - [191] = {.lex_state = 104}, - [192] = {.lex_state = 104}, - [193] = {.lex_state = 104}, - [194] = {.lex_state = 104}, - [195] = {.lex_state = 104}, - [196] = {.lex_state = 104}, - [197] = {.lex_state = 104}, - [198] = {.lex_state = 104}, - [199] = {.lex_state = 104}, - [200] = {.lex_state = 104}, - [201] = {.lex_state = 104}, - [202] = {.lex_state = 104}, - [203] = {.lex_state = 104}, - [204] = {.lex_state = 104}, - [205] = {.lex_state = 104}, - [206] = {.lex_state = 104}, - [207] = {.lex_state = 104}, - [208] = {.lex_state = 104}, - [209] = {.lex_state = 104}, - [210] = {.lex_state = 104}, - [211] = {.lex_state = 104}, - [212] = {.lex_state = 104}, - [213] = {.lex_state = 104}, - [214] = {.lex_state = 104}, - [215] = {.lex_state = 104}, - [216] = {.lex_state = 104}, - [217] = {.lex_state = 104}, - [218] = {.lex_state = 104}, - [219] = {.lex_state = 104}, - [220] = {.lex_state = 104}, - [221] = {.lex_state = 104}, - [222] = {.lex_state = 104}, - [223] = {.lex_state = 104}, - [224] = {.lex_state = 104}, - [225] = {.lex_state = 104}, - [226] = {.lex_state = 104}, - [227] = {.lex_state = 104}, - [228] = {.lex_state = 104}, - [229] = {.lex_state = 104}, - [230] = {.lex_state = 104}, - [231] = {.lex_state = 104}, - [232] = {.lex_state = 104}, - [233] = {.lex_state = 104}, - [234] = {.lex_state = 104}, - [235] = {.lex_state = 104}, - [236] = {.lex_state = 104}, - [237] = {.lex_state = 104}, - [238] = {.lex_state = 104}, - [239] = {.lex_state = 104}, - [240] = {.lex_state = 104}, - [241] = {.lex_state = 104}, - [242] = {.lex_state = 104}, - [243] = {.lex_state = 50, .external_lex_state = 2}, - [244] = {.lex_state = 50, .external_lex_state = 2}, - [245] = {.lex_state = 50, .external_lex_state = 2}, - [246] = {.lex_state = 104}, - [247] = {.lex_state = 104}, - [248] = {.lex_state = 104}, - [249] = {.lex_state = 104}, - [250] = {.lex_state = 50, .external_lex_state = 2}, - [251] = {.lex_state = 104}, - [252] = {.lex_state = 50, .external_lex_state = 2}, - [253] = {.lex_state = 104}, - [254] = {.lex_state = 50, .external_lex_state = 2}, - [255] = {.lex_state = 104}, - [256] = {.lex_state = 104}, - [257] = {.lex_state = 104}, - [258] = {.lex_state = 50, .external_lex_state = 2}, - [259] = {.lex_state = 104}, - [260] = {.lex_state = 104}, - [261] = {.lex_state = 104}, - [262] = {.lex_state = 50, .external_lex_state = 2}, - [263] = {.lex_state = 104}, - [264] = {.lex_state = 50, .external_lex_state = 2}, - [265] = {.lex_state = 50, .external_lex_state = 2}, - [266] = {.lex_state = 50, .external_lex_state = 2}, - [267] = {.lex_state = 50, .external_lex_state = 2}, - [268] = {.lex_state = 104}, - [269] = {.lex_state = 104}, - [270] = {.lex_state = 50, .external_lex_state = 2}, - [271] = {.lex_state = 50, .external_lex_state = 2}, - [272] = {.lex_state = 877}, - [273] = {.lex_state = 104}, - [274] = {.lex_state = 877}, - [275] = {.lex_state = 104}, - [276] = {.lex_state = 50}, - [277] = {.lex_state = 50}, - [278] = {.lex_state = 50}, - [279] = {.lex_state = 50}, - [280] = {.lex_state = 50}, - [281] = {.lex_state = 50}, - [282] = {.lex_state = 50}, - [283] = {.lex_state = 50}, - [284] = {.lex_state = 50}, - [285] = {.lex_state = 50}, - [286] = {.lex_state = 50}, - [287] = {.lex_state = 50}, - [288] = {.lex_state = 50}, - [289] = {.lex_state = 50}, - [290] = {.lex_state = 51}, - [291] = {.lex_state = 51}, - [292] = {.lex_state = 51}, - [293] = {.lex_state = 51}, - [294] = {.lex_state = 51}, - [295] = {.lex_state = 51}, - [296] = {.lex_state = 51}, - [297] = {.lex_state = 51}, - [298] = {.lex_state = 51}, - [299] = {.lex_state = 51}, - [300] = {.lex_state = 51}, - [301] = {.lex_state = 51}, - [302] = {.lex_state = 51}, - [303] = {.lex_state = 51}, - [304] = {.lex_state = 51}, - [305] = {.lex_state = 51}, - [306] = {.lex_state = 51}, - [307] = {.lex_state = 51}, - [308] = {.lex_state = 52, .external_lex_state = 3}, - [309] = {.lex_state = 52, .external_lex_state = 3}, - [310] = {.lex_state = 52, .external_lex_state = 3}, - [311] = {.lex_state = 52, .external_lex_state = 3}, - [312] = {.lex_state = 52, .external_lex_state = 3}, - [313] = {.lex_state = 51}, - [314] = {.lex_state = 30}, - [315] = {.lex_state = 30, .external_lex_state = 1}, - [316] = {.lex_state = 30}, - [317] = {.lex_state = 30, .external_lex_state = 1}, - [318] = {.lex_state = 30}, - [319] = {.lex_state = 30}, - [320] = {.lex_state = 30}, - [321] = {.lex_state = 30}, - [322] = {.lex_state = 30}, - [323] = {.lex_state = 30}, - [324] = {.lex_state = 30}, - [325] = {.lex_state = 30}, - [326] = {.lex_state = 30}, - [327] = {.lex_state = 105}, - [328] = {.lex_state = 52}, - [329] = {.lex_state = 52}, - [330] = {.lex_state = 105}, - [331] = {.lex_state = 52}, - [332] = {.lex_state = 52}, - [333] = {.lex_state = 105}, - [334] = {.lex_state = 52}, - [335] = {.lex_state = 105}, - [336] = {.lex_state = 52}, - [337] = {.lex_state = 105}, - [338] = {.lex_state = 52}, - [339] = {.lex_state = 105}, - [340] = {.lex_state = 52}, - [341] = {.lex_state = 30, .external_lex_state = 3}, - [342] = {.lex_state = 105}, - [343] = {.lex_state = 52}, - [344] = {.lex_state = 30, .external_lex_state = 2}, - [345] = {.lex_state = 52}, - [346] = {.lex_state = 30, .external_lex_state = 2}, - [347] = {.lex_state = 105}, - [348] = {.lex_state = 30, .external_lex_state = 2}, - [349] = {.lex_state = 52}, - [350] = {.lex_state = 30, .external_lex_state = 2}, - [351] = {.lex_state = 30, .external_lex_state = 3}, - [352] = {.lex_state = 52}, - [353] = {.lex_state = 52}, - [354] = {.lex_state = 875}, - [355] = {.lex_state = 52}, - [356] = {.lex_state = 52}, - [357] = {.lex_state = 52}, - [358] = {.lex_state = 52}, - [359] = {.lex_state = 52}, - [360] = {.lex_state = 52}, - [361] = {.lex_state = 52}, - [362] = {.lex_state = 52}, - [363] = {.lex_state = 52}, - [364] = {.lex_state = 52}, - [365] = {.lex_state = 52}, - [366] = {.lex_state = 52}, - [367] = {.lex_state = 30, .external_lex_state = 2}, - [368] = {.lex_state = 52}, - [369] = {.lex_state = 52}, - [370] = {.lex_state = 52}, - [371] = {.lex_state = 52}, - [372] = {.lex_state = 875}, + [1] = {.lex_state = 878}, + [2] = {.lex_state = 876, .external_lex_state = 1}, + [3] = {.lex_state = 876, .external_lex_state = 1}, + [4] = {.lex_state = 876, .external_lex_state = 2}, + [5] = {.lex_state = 876, .external_lex_state = 2}, + [6] = {.lex_state = 876, .external_lex_state = 2}, + [7] = {.lex_state = 876, .external_lex_state = 2}, + [8] = {.lex_state = 876, .external_lex_state = 3}, + [9] = {.lex_state = 876, .external_lex_state = 3}, + [10] = {.lex_state = 876, .external_lex_state = 2}, + [11] = {.lex_state = 876, .external_lex_state = 2}, + [12] = {.lex_state = 876, .external_lex_state = 3}, + [13] = {.lex_state = 876, .external_lex_state = 4}, + [14] = {.lex_state = 876, .external_lex_state = 4}, + [15] = {.lex_state = 876, .external_lex_state = 4}, + [16] = {.lex_state = 876, .external_lex_state = 4}, + [17] = {.lex_state = 876, .external_lex_state = 4}, + [18] = {.lex_state = 876, .external_lex_state = 4}, + [19] = {.lex_state = 876, .external_lex_state = 4}, + [20] = {.lex_state = 876, .external_lex_state = 4}, + [21] = {.lex_state = 876, .external_lex_state = 4}, + [22] = {.lex_state = 876, .external_lex_state = 4}, + [23] = {.lex_state = 876, .external_lex_state = 4}, + [24] = {.lex_state = 876, .external_lex_state = 4}, + [25] = {.lex_state = 876, .external_lex_state = 4}, + [26] = {.lex_state = 876, .external_lex_state = 4}, + [27] = {.lex_state = 876, .external_lex_state = 4}, + [28] = {.lex_state = 876, .external_lex_state = 4}, + [29] = {.lex_state = 876, .external_lex_state = 4}, + [30] = {.lex_state = 876, .external_lex_state = 4}, + [31] = {.lex_state = 876, .external_lex_state = 4}, + [32] = {.lex_state = 876, .external_lex_state = 4}, + [33] = {.lex_state = 876, .external_lex_state = 4}, + [34] = {.lex_state = 876, .external_lex_state = 4}, + [35] = {.lex_state = 876, .external_lex_state = 4}, + [36] = {.lex_state = 876, .external_lex_state = 4}, + [37] = {.lex_state = 876, .external_lex_state = 4}, + [38] = {.lex_state = 876, .external_lex_state = 4}, + [39] = {.lex_state = 876, .external_lex_state = 4}, + [40] = {.lex_state = 876, .external_lex_state = 4}, + [41] = {.lex_state = 876, .external_lex_state = 4}, + [42] = {.lex_state = 876, .external_lex_state = 4}, + [43] = {.lex_state = 876, .external_lex_state = 4}, + [44] = {.lex_state = 876, .external_lex_state = 4}, + [45] = {.lex_state = 876, .external_lex_state = 4}, + [46] = {.lex_state = 876, .external_lex_state = 4}, + [47] = {.lex_state = 876, .external_lex_state = 4}, + [48] = {.lex_state = 876, .external_lex_state = 4}, + [49] = {.lex_state = 876, .external_lex_state = 4}, + [50] = {.lex_state = 90}, + [51] = {.lex_state = 90}, + [52] = {.lex_state = 90}, + [53] = {.lex_state = 90}, + [54] = {.lex_state = 876, .external_lex_state = 4}, + [55] = {.lex_state = 876, .external_lex_state = 4}, + [56] = {.lex_state = 90}, + [57] = {.lex_state = 876, .external_lex_state = 4}, + [58] = {.lex_state = 876, .external_lex_state = 4}, + [59] = {.lex_state = 90}, + [60] = {.lex_state = 90}, + [61] = {.lex_state = 90}, + [62] = {.lex_state = 876, .external_lex_state = 4}, + [63] = {.lex_state = 90}, + [64] = {.lex_state = 90}, + [65] = {.lex_state = 90}, + [66] = {.lex_state = 90}, + [67] = {.lex_state = 90}, + [68] = {.lex_state = 90}, + [69] = {.lex_state = 90}, + [70] = {.lex_state = 90}, + [71] = {.lex_state = 90}, + [72] = {.lex_state = 90}, + [73] = {.lex_state = 90}, + [74] = {.lex_state = 90}, + [75] = {.lex_state = 90}, + [76] = {.lex_state = 90}, + [77] = {.lex_state = 90}, + [78] = {.lex_state = 90}, + [79] = {.lex_state = 90}, + [80] = {.lex_state = 90}, + [81] = {.lex_state = 90}, + [82] = {.lex_state = 90}, + [83] = {.lex_state = 90}, + [84] = {.lex_state = 90}, + [85] = {.lex_state = 90}, + [86] = {.lex_state = 90}, + [87] = {.lex_state = 90}, + [88] = {.lex_state = 27}, + [89] = {.lex_state = 90}, + [90] = {.lex_state = 27}, + [91] = {.lex_state = 90}, + [92] = {.lex_state = 90}, + [93] = {.lex_state = 90}, + [94] = {.lex_state = 90}, + [95] = {.lex_state = 90}, + [96] = {.lex_state = 90}, + [97] = {.lex_state = 90}, + [98] = {.lex_state = 90}, + [99] = {.lex_state = 90}, + [100] = {.lex_state = 90}, + [101] = {.lex_state = 90}, + [102] = {.lex_state = 90}, + [103] = {.lex_state = 90}, + [104] = {.lex_state = 90}, + [105] = {.lex_state = 90}, + [106] = {.lex_state = 90}, + [107] = {.lex_state = 90}, + [108] = {.lex_state = 90}, + [109] = {.lex_state = 90}, + [110] = {.lex_state = 90}, + [111] = {.lex_state = 90}, + [112] = {.lex_state = 90}, + [113] = {.lex_state = 90}, + [114] = {.lex_state = 90}, + [115] = {.lex_state = 90}, + [116] = {.lex_state = 90}, + [117] = {.lex_state = 90}, + [118] = {.lex_state = 90}, + [119] = {.lex_state = 90}, + [120] = {.lex_state = 90}, + [121] = {.lex_state = 90}, + [122] = {.lex_state = 90}, + [123] = {.lex_state = 90}, + [124] = {.lex_state = 90}, + [125] = {.lex_state = 90}, + [126] = {.lex_state = 90}, + [127] = {.lex_state = 90}, + [128] = {.lex_state = 90}, + [129] = {.lex_state = 27}, + [130] = {.lex_state = 90}, + [131] = {.lex_state = 90}, + [132] = {.lex_state = 90}, + [133] = {.lex_state = 90}, + [134] = {.lex_state = 90}, + [135] = {.lex_state = 90}, + [136] = {.lex_state = 90}, + [137] = {.lex_state = 90}, + [138] = {.lex_state = 90}, + [139] = {.lex_state = 90}, + [140] = {.lex_state = 90}, + [141] = {.lex_state = 90}, + [142] = {.lex_state = 90}, + [143] = {.lex_state = 90}, + [144] = {.lex_state = 90}, + [145] = {.lex_state = 90}, + [146] = {.lex_state = 90}, + [147] = {.lex_state = 90}, + [148] = {.lex_state = 90}, + [149] = {.lex_state = 90}, + [150] = {.lex_state = 90}, + [151] = {.lex_state = 90}, + [152] = {.lex_state = 90}, + [153] = {.lex_state = 90}, + [154] = {.lex_state = 90}, + [155] = {.lex_state = 90}, + [156] = {.lex_state = 90}, + [157] = {.lex_state = 90}, + [158] = {.lex_state = 90}, + [159] = {.lex_state = 90}, + [160] = {.lex_state = 90}, + [161] = {.lex_state = 27}, + [162] = {.lex_state = 90}, + [163] = {.lex_state = 90}, + [164] = {.lex_state = 90}, + [165] = {.lex_state = 90}, + [166] = {.lex_state = 90}, + [167] = {.lex_state = 90}, + [168] = {.lex_state = 90}, + [169] = {.lex_state = 90}, + [170] = {.lex_state = 90}, + [171] = {.lex_state = 90}, + [172] = {.lex_state = 90}, + [173] = {.lex_state = 90}, + [174] = {.lex_state = 90}, + [175] = {.lex_state = 90}, + [176] = {.lex_state = 90}, + [177] = {.lex_state = 90}, + [178] = {.lex_state = 90}, + [179] = {.lex_state = 90}, + [180] = {.lex_state = 90}, + [181] = {.lex_state = 90}, + [182] = {.lex_state = 90}, + [183] = {.lex_state = 90}, + [184] = {.lex_state = 90}, + [185] = {.lex_state = 90}, + [186] = {.lex_state = 90}, + [187] = {.lex_state = 90}, + [188] = {.lex_state = 90}, + [189] = {.lex_state = 90}, + [190] = {.lex_state = 90}, + [191] = {.lex_state = 90}, + [192] = {.lex_state = 90}, + [193] = {.lex_state = 90}, + [194] = {.lex_state = 90}, + [195] = {.lex_state = 90}, + [196] = {.lex_state = 90}, + [197] = {.lex_state = 90}, + [198] = {.lex_state = 90}, + [199] = {.lex_state = 90}, + [200] = {.lex_state = 90}, + [201] = {.lex_state = 90}, + [202] = {.lex_state = 27}, + [203] = {.lex_state = 90}, + [204] = {.lex_state = 90}, + [205] = {.lex_state = 90}, + [206] = {.lex_state = 90}, + [207] = {.lex_state = 90}, + [208] = {.lex_state = 90}, + [209] = {.lex_state = 90}, + [210] = {.lex_state = 90}, + [211] = {.lex_state = 90}, + [212] = {.lex_state = 90}, + [213] = {.lex_state = 90}, + [214] = {.lex_state = 90}, + [215] = {.lex_state = 90}, + [216] = {.lex_state = 90}, + [217] = {.lex_state = 90}, + [218] = {.lex_state = 90}, + [219] = {.lex_state = 90}, + [220] = {.lex_state = 90}, + [221] = {.lex_state = 90}, + [222] = {.lex_state = 90}, + [223] = {.lex_state = 90}, + [224] = {.lex_state = 90}, + [225] = {.lex_state = 90}, + [226] = {.lex_state = 90}, + [227] = {.lex_state = 90}, + [228] = {.lex_state = 90}, + [229] = {.lex_state = 90}, + [230] = {.lex_state = 90}, + [231] = {.lex_state = 90}, + [232] = {.lex_state = 90}, + [233] = {.lex_state = 90}, + [234] = {.lex_state = 90}, + [235] = {.lex_state = 90}, + [236] = {.lex_state = 90}, + [237] = {.lex_state = 90}, + [238] = {.lex_state = 90}, + [239] = {.lex_state = 90}, + [240] = {.lex_state = 90}, + [241] = {.lex_state = 90}, + [242] = {.lex_state = 28, .external_lex_state = 5}, + [243] = {.lex_state = 28, .external_lex_state = 5}, + [244] = {.lex_state = 28, .external_lex_state = 5}, + [245] = {.lex_state = 28, .external_lex_state = 5}, + [246] = {.lex_state = 28, .external_lex_state = 5}, + [247] = {.lex_state = 90}, + [248] = {.lex_state = 28, .external_lex_state = 5}, + [249] = {.lex_state = 90}, + [250] = {.lex_state = 90}, + [251] = {.lex_state = 90}, + [252] = {.lex_state = 90}, + [253] = {.lex_state = 28, .external_lex_state = 5}, + [254] = {.lex_state = 90}, + [255] = {.lex_state = 90}, + [256] = {.lex_state = 90}, + [257] = {.lex_state = 28, .external_lex_state = 5}, + [258] = {.lex_state = 90}, + [259] = {.lex_state = 90}, + [260] = {.lex_state = 28, .external_lex_state = 5}, + [261] = {.lex_state = 28, .external_lex_state = 5}, + [262] = {.lex_state = 28, .external_lex_state = 5}, + [263] = {.lex_state = 90}, + [264] = {.lex_state = 28, .external_lex_state = 5}, + [265] = {.lex_state = 28, .external_lex_state = 5}, + [266] = {.lex_state = 90}, + [267] = {.lex_state = 90}, + [268] = {.lex_state = 90}, + [269] = {.lex_state = 28, .external_lex_state = 5}, + [270] = {.lex_state = 36, .external_lex_state = 4}, + [271] = {.lex_state = 90}, + [272] = {.lex_state = 878}, + [273] = {.lex_state = 878}, + [274] = {.lex_state = 36, .external_lex_state = 4}, + [275] = {.lex_state = 90}, + [276] = {.lex_state = 28}, + [277] = {.lex_state = 28}, + [278] = {.lex_state = 28}, + [279] = {.lex_state = 28}, + [280] = {.lex_state = 28}, + [281] = {.lex_state = 28}, + [282] = {.lex_state = 28}, + [283] = {.lex_state = 28}, + [284] = {.lex_state = 28}, + [285] = {.lex_state = 28}, + [286] = {.lex_state = 28}, + [287] = {.lex_state = 28}, + [288] = {.lex_state = 28}, + [289] = {.lex_state = 28}, + [290] = {.lex_state = 29}, + [291] = {.lex_state = 29}, + [292] = {.lex_state = 29}, + [293] = {.lex_state = 29}, + [294] = {.lex_state = 29}, + [295] = {.lex_state = 29}, + [296] = {.lex_state = 29}, + [297] = {.lex_state = 29}, + [298] = {.lex_state = 29}, + [299] = {.lex_state = 29}, + [300] = {.lex_state = 29}, + [301] = {.lex_state = 29}, + [302] = {.lex_state = 29}, + [303] = {.lex_state = 29}, + [304] = {.lex_state = 29}, + [305] = {.lex_state = 29}, + [306] = {.lex_state = 29}, + [307] = {.lex_state = 29}, + [308] = {.lex_state = 29}, + [309] = {.lex_state = 29}, + [310] = {.lex_state = 32, .external_lex_state = 6}, + [311] = {.lex_state = 32, .external_lex_state = 6}, + [312] = {.lex_state = 32, .external_lex_state = 6}, + [313] = {.lex_state = 32, .external_lex_state = 6}, + [314] = {.lex_state = 32, .external_lex_state = 6}, + [315] = {.lex_state = 29}, + [316] = {.lex_state = 91}, + [317] = {.lex_state = 32}, + [318] = {.lex_state = 32}, + [319] = {.lex_state = 32}, + [320] = {.lex_state = 32}, + [321] = {.lex_state = 32}, + [322] = {.lex_state = 91}, + [323] = {.lex_state = 32}, + [324] = {.lex_state = 91}, + [325] = {.lex_state = 91}, + [326] = {.lex_state = 32}, + [327] = {.lex_state = 91}, + [328] = {.lex_state = 37, .external_lex_state = 5}, + [329] = {.lex_state = 32}, + [330] = {.lex_state = 91}, + [331] = {.lex_state = 91}, + [332] = {.lex_state = 32}, + [333] = {.lex_state = 37, .external_lex_state = 5}, + [334] = {.lex_state = 32}, + [335] = {.lex_state = 32}, + [336] = {.lex_state = 91}, + [337] = {.lex_state = 32}, + [338] = {.lex_state = 32}, + [339] = {.lex_state = 32}, + [340] = {.lex_state = 32}, + [341] = {.lex_state = 32}, + [342] = {.lex_state = 32}, + [343] = {.lex_state = 32}, + [344] = {.lex_state = 32}, + [345] = {.lex_state = 32}, + [346] = {.lex_state = 32}, + [347] = {.lex_state = 32}, + [348] = {.lex_state = 32}, + [349] = {.lex_state = 32}, + [350] = {.lex_state = 32}, + [351] = {.lex_state = 32}, + [352] = {.lex_state = 32}, + [353] = {.lex_state = 32}, + [354] = {.lex_state = 32}, + [355] = {.lex_state = 32}, + [356] = {.lex_state = 32}, + [357] = {.lex_state = 32}, + [358] = {.lex_state = 32}, + [359] = {.lex_state = 32}, + [360] = {.lex_state = 32}, + [361] = {.lex_state = 32}, + [362] = {.lex_state = 32}, + [363] = {.lex_state = 32}, + [364] = {.lex_state = 32}, + [365] = {.lex_state = 32}, + [366] = {.lex_state = 32}, + [367] = {.lex_state = 32}, + [368] = {.lex_state = 32}, + [369] = {.lex_state = 32}, + [370] = {.lex_state = 32}, + [371] = {.lex_state = 32}, + [372] = {.lex_state = 32}, [373] = {.lex_state = 32}, - [374] = {.lex_state = 52}, - [375] = {.lex_state = 52}, - [376] = {.lex_state = 52}, - [377] = {.lex_state = 52}, - [378] = {.lex_state = 52}, - [379] = {.lex_state = 52}, - [380] = {.lex_state = 52}, - [381] = {.lex_state = 52}, - [382] = {.lex_state = 875}, - [383] = {.lex_state = 52}, - [384] = {.lex_state = 52}, - [385] = {.lex_state = 52}, - [386] = {.lex_state = 52}, - [387] = {.lex_state = 52}, - [388] = {.lex_state = 875}, - [389] = {.lex_state = 52}, - [390] = {.lex_state = 52}, - [391] = {.lex_state = 52}, - [392] = {.lex_state = 52}, - [393] = {.lex_state = 52}, - [394] = {.lex_state = 52}, - [395] = {.lex_state = 52}, - [396] = {.lex_state = 52}, - [397] = {.lex_state = 52}, - [398] = {.lex_state = 52}, - [399] = {.lex_state = 52}, - [400] = {.lex_state = 52}, - [401] = {.lex_state = 875}, - [402] = {.lex_state = 30, .external_lex_state = 2}, - [403] = {.lex_state = 52}, - [404] = {.lex_state = 52}, - [405] = {.lex_state = 875}, - [406] = {.lex_state = 52}, - [407] = {.lex_state = 52}, - [408] = {.lex_state = 875}, - [409] = {.lex_state = 52}, - [410] = {.lex_state = 52}, - [411] = {.lex_state = 52}, - [412] = {.lex_state = 52}, - [413] = {.lex_state = 52}, - [414] = {.lex_state = 52}, - [415] = {.lex_state = 52}, - [416] = {.lex_state = 52}, - [417] = {.lex_state = 52}, - [418] = {.lex_state = 52}, - [419] = {.lex_state = 52}, - [420] = {.lex_state = 52}, - [421] = {.lex_state = 52}, - [422] = {.lex_state = 52}, - [423] = {.lex_state = 52}, - [424] = {.lex_state = 52}, - [425] = {.lex_state = 52}, - [426] = {.lex_state = 52}, - [427] = {.lex_state = 52}, - [428] = {.lex_state = 52}, - [429] = {.lex_state = 52}, - [430] = {.lex_state = 52}, - [431] = {.lex_state = 52}, - [432] = {.lex_state = 52}, - [433] = {.lex_state = 52}, - [434] = {.lex_state = 52}, - [435] = {.lex_state = 52}, - [436] = {.lex_state = 52}, - [437] = {.lex_state = 52}, - [438] = {.lex_state = 52}, - [439] = {.lex_state = 52}, - [440] = {.lex_state = 52}, - [441] = {.lex_state = 52}, - [442] = {.lex_state = 52}, - [443] = {.lex_state = 52}, - [444] = {.lex_state = 52}, - [445] = {.lex_state = 52}, - [446] = {.lex_state = 52}, - [447] = {.lex_state = 52}, - [448] = {.lex_state = 52}, - [449] = {.lex_state = 52}, - [450] = {.lex_state = 52}, - [451] = {.lex_state = 52}, - [452] = {.lex_state = 52}, - [453] = {.lex_state = 52}, - [454] = {.lex_state = 52}, - [455] = {.lex_state = 52}, - [456] = {.lex_state = 52}, - [457] = {.lex_state = 52}, - [458] = {.lex_state = 30, .external_lex_state = 3}, - [459] = {.lex_state = 52}, - [460] = {.lex_state = 52}, - [461] = {.lex_state = 52}, - [462] = {.lex_state = 52}, - [463] = {.lex_state = 52}, - [464] = {.lex_state = 52}, - [465] = {.lex_state = 52}, - [466] = {.lex_state = 52}, - [467] = {.lex_state = 52}, - [468] = {.lex_state = 52}, - [469] = {.lex_state = 52}, - [470] = {.lex_state = 52}, - [471] = {.lex_state = 52}, - [472] = {.lex_state = 52}, - [473] = {.lex_state = 52}, - [474] = {.lex_state = 52}, - [475] = {.lex_state = 52}, - [476] = {.lex_state = 52}, - [477] = {.lex_state = 52}, - [478] = {.lex_state = 52}, - [479] = {.lex_state = 52}, - [480] = {.lex_state = 52}, - [481] = {.lex_state = 52}, - [482] = {.lex_state = 52}, - [483] = {.lex_state = 52}, - [484] = {.lex_state = 52}, - [485] = {.lex_state = 52}, - [486] = {.lex_state = 875}, - [487] = {.lex_state = 52}, - [488] = {.lex_state = 52}, - [489] = {.lex_state = 52}, + [374] = {.lex_state = 32}, + [375] = {.lex_state = 32}, + [376] = {.lex_state = 32}, + [377] = {.lex_state = 32}, + [378] = {.lex_state = 32}, + [379] = {.lex_state = 32}, + [380] = {.lex_state = 32}, + [381] = {.lex_state = 32}, + [382] = {.lex_state = 32}, + [383] = {.lex_state = 32}, + [384] = {.lex_state = 32}, + [385] = {.lex_state = 32}, + [386] = {.lex_state = 32}, + [387] = {.lex_state = 32}, + [388] = {.lex_state = 32}, + [389] = {.lex_state = 32}, + [390] = {.lex_state = 32}, + [391] = {.lex_state = 32}, + [392] = {.lex_state = 32}, + [393] = {.lex_state = 32}, + [394] = {.lex_state = 32}, + [395] = {.lex_state = 32}, + [396] = {.lex_state = 32}, + [397] = {.lex_state = 32}, + [398] = {.lex_state = 32}, + [399] = {.lex_state = 32}, + [400] = {.lex_state = 32}, + [401] = {.lex_state = 32}, + [402] = {.lex_state = 32}, + [403] = {.lex_state = 32}, + [404] = {.lex_state = 32}, + [405] = {.lex_state = 32}, + [406] = {.lex_state = 32}, + [407] = {.lex_state = 32}, + [408] = {.lex_state = 32}, + [409] = {.lex_state = 32}, + [410] = {.lex_state = 32}, + [411] = {.lex_state = 32}, + [412] = {.lex_state = 32}, + [413] = {.lex_state = 32}, + [414] = {.lex_state = 32}, + [415] = {.lex_state = 32}, + [416] = {.lex_state = 32}, + [417] = {.lex_state = 32}, + [418] = {.lex_state = 32}, + [419] = {.lex_state = 32}, + [420] = {.lex_state = 32}, + [421] = {.lex_state = 32}, + [422] = {.lex_state = 32}, + [423] = {.lex_state = 32}, + [424] = {.lex_state = 32}, + [425] = {.lex_state = 32}, + [426] = {.lex_state = 32}, + [427] = {.lex_state = 32}, + [428] = {.lex_state = 32}, + [429] = {.lex_state = 32}, + [430] = {.lex_state = 32}, + [431] = {.lex_state = 32}, + [432] = {.lex_state = 32}, + [433] = {.lex_state = 32}, + [434] = {.lex_state = 32}, + [435] = {.lex_state = 32}, + [436] = {.lex_state = 32}, + [437] = {.lex_state = 32}, + [438] = {.lex_state = 32}, + [439] = {.lex_state = 32}, + [440] = {.lex_state = 32}, + [441] = {.lex_state = 32}, + [442] = {.lex_state = 32}, + [443] = {.lex_state = 32}, + [444] = {.lex_state = 32}, + [445] = {.lex_state = 32}, + [446] = {.lex_state = 32}, + [447] = {.lex_state = 32}, + [448] = {.lex_state = 32}, + [449] = {.lex_state = 32}, + [450] = {.lex_state = 32}, + [451] = {.lex_state = 32}, + [452] = {.lex_state = 32}, + [453] = {.lex_state = 32}, + [454] = {.lex_state = 32}, + [455] = {.lex_state = 32}, + [456] = {.lex_state = 32}, + [457] = {.lex_state = 32}, + [458] = {.lex_state = 32}, + [459] = {.lex_state = 37, .external_lex_state = 5}, + [460] = {.lex_state = 32}, + [461] = {.lex_state = 32}, + [462] = {.lex_state = 32}, + [463] = {.lex_state = 32}, + [464] = {.lex_state = 32}, + [465] = {.lex_state = 32}, + [466] = {.lex_state = 32}, + [467] = {.lex_state = 32}, + [468] = {.lex_state = 32}, + [469] = {.lex_state = 32}, + [470] = {.lex_state = 32}, + [471] = {.lex_state = 32}, + [472] = {.lex_state = 32}, + [473] = {.lex_state = 32}, + [474] = {.lex_state = 32}, + [475] = {.lex_state = 32}, + [476] = {.lex_state = 32}, + [477] = {.lex_state = 32}, + [478] = {.lex_state = 32}, + [479] = {.lex_state = 32}, + [480] = {.lex_state = 32}, + [481] = {.lex_state = 32}, + [482] = {.lex_state = 32}, + [483] = {.lex_state = 32}, + [484] = {.lex_state = 32}, + [485] = {.lex_state = 32}, + [486] = {.lex_state = 32}, + [487] = {.lex_state = 32}, + [488] = {.lex_state = 32}, + [489] = {.lex_state = 32}, [490] = {.lex_state = 32}, - [491] = {.lex_state = 52}, - [492] = {.lex_state = 52}, - [493] = {.lex_state = 52}, - [494] = {.lex_state = 875}, - [495] = {.lex_state = 52}, - [496] = {.lex_state = 52}, - [497] = {.lex_state = 52}, - [498] = {.lex_state = 52}, - [499] = {.lex_state = 52}, - [500] = {.lex_state = 52}, - [501] = {.lex_state = 52}, - [502] = {.lex_state = 52}, - [503] = {.lex_state = 52}, - [504] = {.lex_state = 52}, - [505] = {.lex_state = 52}, - [506] = {.lex_state = 52}, - [507] = {.lex_state = 52}, - [508] = {.lex_state = 52}, - [509] = {.lex_state = 52}, - [510] = {.lex_state = 52}, - [511] = {.lex_state = 52}, - [512] = {.lex_state = 52}, - [513] = {.lex_state = 52}, - [514] = {.lex_state = 52}, - [515] = {.lex_state = 52}, - [516] = {.lex_state = 52}, - [517] = {.lex_state = 52}, - [518] = {.lex_state = 52}, - [519] = {.lex_state = 52}, - [520] = {.lex_state = 52}, - [521] = {.lex_state = 52}, - [522] = {.lex_state = 52}, - [523] = {.lex_state = 52}, - [524] = {.lex_state = 875}, - [525] = {.lex_state = 52}, - [526] = {.lex_state = 52}, - [527] = {.lex_state = 52}, - [528] = {.lex_state = 52}, - [529] = {.lex_state = 52}, - [530] = {.lex_state = 52}, - [531] = {.lex_state = 52}, - [532] = {.lex_state = 52}, - [533] = {.lex_state = 52}, - [534] = {.lex_state = 52}, - [535] = {.lex_state = 52}, - [536] = {.lex_state = 52}, - [537] = {.lex_state = 52}, - [538] = {.lex_state = 52}, - [539] = {.lex_state = 52}, - [540] = {.lex_state = 52}, - [541] = {.lex_state = 52}, - [542] = {.lex_state = 52}, - [543] = {.lex_state = 52}, - [544] = {.lex_state = 52}, - [545] = {.lex_state = 52}, - [546] = {.lex_state = 52}, - [547] = {.lex_state = 52}, - [548] = {.lex_state = 52}, - [549] = {.lex_state = 52}, - [550] = {.lex_state = 52}, - [551] = {.lex_state = 52}, - [552] = {.lex_state = 52}, - [553] = {.lex_state = 52}, - [554] = {.lex_state = 30}, - [555] = {.lex_state = 30}, - [556] = {.lex_state = 875}, - [557] = {.lex_state = 30}, - [558] = {.lex_state = 30}, - [559] = {.lex_state = 30}, - [560] = {.lex_state = 30}, - [561] = {.lex_state = 30}, - [562] = {.lex_state = 30}, - [563] = {.lex_state = 30}, - [564] = {.lex_state = 30}, - [565] = {.lex_state = 30}, - [566] = {.lex_state = 30}, - [567] = {.lex_state = 30}, - [568] = {.lex_state = 30}, - [569] = {.lex_state = 30}, - [570] = {.lex_state = 30}, - [571] = {.lex_state = 30}, - [572] = {.lex_state = 30}, - [573] = {.lex_state = 30}, - [574] = {.lex_state = 30}, - [575] = {.lex_state = 30}, - [576] = {.lex_state = 30}, - [577] = {.lex_state = 30}, - [578] = {.lex_state = 30}, - [579] = {.lex_state = 30}, - [580] = {.lex_state = 30}, - [581] = {.lex_state = 30}, - [582] = {.lex_state = 30}, - [583] = {.lex_state = 30}, - [584] = {.lex_state = 30}, - [585] = {.lex_state = 30}, - [586] = {.lex_state = 30}, - [587] = {.lex_state = 875}, - [588] = {.lex_state = 875}, - [589] = {.lex_state = 875}, - [590] = {.lex_state = 875}, - [591] = {.lex_state = 875}, - [592] = {.lex_state = 34, .external_lex_state = 1}, - [593] = {.lex_state = 875}, - [594] = {.lex_state = 875}, - [595] = {.lex_state = 875}, - [596] = {.lex_state = 875}, - [597] = {.lex_state = 875}, - [598] = {.lex_state = 875}, - [599] = {.lex_state = 875}, - [600] = {.lex_state = 34, .external_lex_state = 1}, - [601] = {.lex_state = 875}, - [602] = {.lex_state = 875}, - [603] = {.lex_state = 875}, - [604] = {.lex_state = 875}, - [605] = {.lex_state = 875}, - [606] = {.lex_state = 34}, - [607] = {.lex_state = 34}, - [608] = {.lex_state = 34}, - [609] = {.lex_state = 34}, - [610] = {.lex_state = 34}, - [611] = {.lex_state = 34}, - [612] = {.lex_state = 34}, - [613] = {.lex_state = 34}, - [614] = {.lex_state = 34}, - [615] = {.lex_state = 34}, - [616] = {.lex_state = 34}, - [617] = {.lex_state = 34, .external_lex_state = 3}, - [618] = {.lex_state = 34, .external_lex_state = 3}, - [619] = {.lex_state = 875}, - [620] = {.lex_state = 875, .external_lex_state = 1}, - [621] = {.lex_state = 34, .external_lex_state = 2}, - [622] = {.lex_state = 34, .external_lex_state = 2}, - [623] = {.lex_state = 875}, - [624] = {.lex_state = 34, .external_lex_state = 2}, - [625] = {.lex_state = 875}, - [626] = {.lex_state = 875}, - [627] = {.lex_state = 875}, - [628] = {.lex_state = 875}, - [629] = {.lex_state = 875}, - [630] = {.lex_state = 875}, - [631] = {.lex_state = 875}, - [632] = {.lex_state = 875, .external_lex_state = 1}, - [633] = {.lex_state = 34, .external_lex_state = 2}, - [634] = {.lex_state = 875}, - [635] = {.lex_state = 34, .external_lex_state = 3}, - [636] = {.lex_state = 875}, - [637] = {.lex_state = 875}, - [638] = {.lex_state = 875}, - [639] = {.lex_state = 34}, - [640] = {.lex_state = 875}, - [641] = {.lex_state = 875}, - [642] = {.lex_state = 875}, - [643] = {.lex_state = 875}, - [644] = {.lex_state = 34}, - [645] = {.lex_state = 34}, - [646] = {.lex_state = 875}, - [647] = {.lex_state = 875}, - [648] = {.lex_state = 875}, - [649] = {.lex_state = 875}, - [650] = {.lex_state = 875}, - [651] = {.lex_state = 875}, - [652] = {.lex_state = 875}, - [653] = {.lex_state = 875}, - [654] = {.lex_state = 34, .external_lex_state = 2}, - [655] = {.lex_state = 875}, - [656] = {.lex_state = 875}, - [657] = {.lex_state = 875}, - [658] = {.lex_state = 875}, - [659] = {.lex_state = 875}, - [660] = {.lex_state = 34}, - [661] = {.lex_state = 875}, - [662] = {.lex_state = 34, .external_lex_state = 2}, - [663] = {.lex_state = 875}, - [664] = {.lex_state = 875}, - [665] = {.lex_state = 34}, - [666] = {.lex_state = 34}, - [667] = {.lex_state = 34}, - [668] = {.lex_state = 34}, - [669] = {.lex_state = 34}, - [670] = {.lex_state = 36}, - [671] = {.lex_state = 36}, - [672] = {.lex_state = 34}, - [673] = {.lex_state = 34}, - [674] = {.lex_state = 34}, - [675] = {.lex_state = 34}, - [676] = {.lex_state = 34}, - [677] = {.lex_state = 34}, - [678] = {.lex_state = 34}, - [679] = {.lex_state = 34}, - [680] = {.lex_state = 34}, - [681] = {.lex_state = 34}, - [682] = {.lex_state = 34}, - [683] = {.lex_state = 34}, - [684] = {.lex_state = 36}, - [685] = {.lex_state = 34}, - [686] = {.lex_state = 34}, - [687] = {.lex_state = 875}, - [688] = {.lex_state = 34}, - [689] = {.lex_state = 34}, - [690] = {.lex_state = 34}, - [691] = {.lex_state = 36}, - [692] = {.lex_state = 34}, - [693] = {.lex_state = 36}, - [694] = {.lex_state = 34}, - [695] = {.lex_state = 34}, - [696] = {.lex_state = 34}, - [697] = {.lex_state = 36}, - [698] = {.lex_state = 34}, - [699] = {.lex_state = 875}, - [700] = {.lex_state = 34}, - [701] = {.lex_state = 34}, - [702] = {.lex_state = 36}, - [703] = {.lex_state = 36}, - [704] = {.lex_state = 36}, - [705] = {.lex_state = 36}, - [706] = {.lex_state = 36}, - [707] = {.lex_state = 875, .external_lex_state = 3}, - [708] = {.lex_state = 34}, - [709] = {.lex_state = 36}, - [710] = {.lex_state = 36}, - [711] = {.lex_state = 875}, - [712] = {.lex_state = 875, .external_lex_state = 3}, - [713] = {.lex_state = 36}, - [714] = {.lex_state = 36}, - [715] = {.lex_state = 875, .external_lex_state = 2}, - [716] = {.lex_state = 875, .external_lex_state = 3}, - [717] = {.lex_state = 875}, - [718] = {.lex_state = 875, .external_lex_state = 2}, - [719] = {.lex_state = 875}, - [720] = {.lex_state = 875}, - [721] = {.lex_state = 875, .external_lex_state = 2}, - [722] = {.lex_state = 875}, - [723] = {.lex_state = 875}, - [724] = {.lex_state = 875}, - [725] = {.lex_state = 875}, - [726] = {.lex_state = 875}, - [727] = {.lex_state = 875}, - [728] = {.lex_state = 875}, - [729] = {.lex_state = 875}, - [730] = {.lex_state = 875}, - [731] = {.lex_state = 875}, - [732] = {.lex_state = 875}, - [733] = {.lex_state = 875}, - [734] = {.lex_state = 875}, - [735] = {.lex_state = 875}, - [736] = {.lex_state = 875}, - [737] = {.lex_state = 875}, - [738] = {.lex_state = 875}, - [739] = {.lex_state = 875}, - [740] = {.lex_state = 875}, - [741] = {.lex_state = 875}, - [742] = {.lex_state = 875}, - [743] = {.lex_state = 875}, - [744] = {.lex_state = 875}, - [745] = {.lex_state = 44, .external_lex_state = 1}, - [746] = {.lex_state = 44, .external_lex_state = 1}, - [747] = {.lex_state = 875}, - [748] = {.lex_state = 875}, - [749] = {.lex_state = 875}, - [750] = {.lex_state = 875}, - [751] = {.lex_state = 875}, - [752] = {.lex_state = 875}, - [753] = {.lex_state = 875}, - [754] = {.lex_state = 875}, - [755] = {.lex_state = 875}, - [756] = {.lex_state = 875}, - [757] = {.lex_state = 875}, - [758] = {.lex_state = 875}, - [759] = {.lex_state = 44}, - [760] = {.lex_state = 44}, - [761] = {.lex_state = 36, .external_lex_state = 1}, - [762] = {.lex_state = 44}, - [763] = {.lex_state = 44}, - [764] = {.lex_state = 44}, - [765] = {.lex_state = 44}, - [766] = {.lex_state = 36, .external_lex_state = 1}, - [767] = {.lex_state = 44}, - [768] = {.lex_state = 44}, - [769] = {.lex_state = 44}, - [770] = {.lex_state = 44}, - [771] = {.lex_state = 44}, - [772] = {.lex_state = 50, .external_lex_state = 2}, - [773] = {.lex_state = 38, .external_lex_state = 1}, - [774] = {.lex_state = 36}, - [775] = {.lex_state = 875}, - [776] = {.lex_state = 36}, - [777] = {.lex_state = 50, .external_lex_state = 2}, - [778] = {.lex_state = 36}, - [779] = {.lex_state = 38, .external_lex_state = 1}, - [780] = {.lex_state = 36}, - [781] = {.lex_state = 36}, - [782] = {.lex_state = 36}, - [783] = {.lex_state = 36}, - [784] = {.lex_state = 36}, - [785] = {.lex_state = 36}, - [786] = {.lex_state = 36}, - [787] = {.lex_state = 36}, - [788] = {.lex_state = 38}, - [789] = {.lex_state = 40, .external_lex_state = 1}, - [790] = {.lex_state = 50, .external_lex_state = 2}, - [791] = {.lex_state = 875}, - [792] = {.lex_state = 36, .external_lex_state = 3}, - [793] = {.lex_state = 875}, - [794] = {.lex_state = 44, .external_lex_state = 2}, - [795] = {.lex_state = 38}, - [796] = {.lex_state = 38}, - [797] = {.lex_state = 38}, - [798] = {.lex_state = 44, .external_lex_state = 2}, - [799] = {.lex_state = 58}, - [800] = {.lex_state = 38}, - [801] = {.lex_state = 875}, - [802] = {.lex_state = 38}, - [803] = {.lex_state = 38}, - [804] = {.lex_state = 38}, - [805] = {.lex_state = 40, .external_lex_state = 1}, - [806] = {.lex_state = 44, .external_lex_state = 2}, - [807] = {.lex_state = 36, .external_lex_state = 3}, - [808] = {.lex_state = 38}, - [809] = {.lex_state = 38}, - [810] = {.lex_state = 875}, - [811] = {.lex_state = 38}, - [812] = {.lex_state = 875}, - [813] = {.lex_state = 44, .external_lex_state = 2}, - [814] = {.lex_state = 875}, - [815] = {.lex_state = 40}, - [816] = {.lex_state = 44, .external_lex_state = 2}, - [817] = {.lex_state = 38, .external_lex_state = 3}, - [818] = {.lex_state = 36, .external_lex_state = 2}, - [819] = {.lex_state = 40}, - [820] = {.lex_state = 40}, - [821] = {.lex_state = 40}, - [822] = {.lex_state = 38, .external_lex_state = 3}, - [823] = {.lex_state = 36, .external_lex_state = 2}, - [824] = {.lex_state = 40}, - [825] = {.lex_state = 875}, - [826] = {.lex_state = 36, .external_lex_state = 3}, - [827] = {.lex_state = 40}, - [828] = {.lex_state = 40}, - [829] = {.lex_state = 40}, - [830] = {.lex_state = 40}, - [831] = {.lex_state = 40}, - [832] = {.lex_state = 36, .external_lex_state = 2}, - [833] = {.lex_state = 36, .external_lex_state = 2}, - [834] = {.lex_state = 40}, - [835] = {.lex_state = 36, .external_lex_state = 2}, - [836] = {.lex_state = 42}, - [837] = {.lex_state = 36}, - [838] = {.lex_state = 40, .external_lex_state = 3}, - [839] = {.lex_state = 42}, - [840] = {.lex_state = 38, .external_lex_state = 2}, - [841] = {.lex_state = 38, .external_lex_state = 2}, - [842] = {.lex_state = 875}, - [843] = {.lex_state = 875}, - [844] = {.lex_state = 875}, - [845] = {.lex_state = 36}, - [846] = {.lex_state = 38, .external_lex_state = 2}, - [847] = {.lex_state = 38, .external_lex_state = 2}, - [848] = {.lex_state = 38, .external_lex_state = 3}, - [849] = {.lex_state = 875}, - [850] = {.lex_state = 40, .external_lex_state = 3}, - [851] = {.lex_state = 36, .external_lex_state = 2}, - [852] = {.lex_state = 875}, - [853] = {.lex_state = 36}, - [854] = {.lex_state = 875, .external_lex_state = 1}, - [855] = {.lex_state = 875}, - [856] = {.lex_state = 875, .external_lex_state = 1}, - [857] = {.lex_state = 875}, - [858] = {.lex_state = 875, .external_lex_state = 1}, - [859] = {.lex_state = 875}, - [860] = {.lex_state = 875}, - [861] = {.lex_state = 875}, - [862] = {.lex_state = 875, .external_lex_state = 1}, - [863] = {.lex_state = 875}, - [864] = {.lex_state = 875}, - [865] = {.lex_state = 875}, - [866] = {.lex_state = 875}, - [867] = {.lex_state = 875}, - [868] = {.lex_state = 875}, - [869] = {.lex_state = 875}, - [870] = {.lex_state = 875}, - [871] = {.lex_state = 875}, - [872] = {.lex_state = 875}, - [873] = {.lex_state = 36}, - [874] = {.lex_state = 36}, - [875] = {.lex_state = 36}, - [876] = {.lex_state = 36}, - [877] = {.lex_state = 875, .external_lex_state = 1}, - [878] = {.lex_state = 875}, - [879] = {.lex_state = 875}, - [880] = {.lex_state = 875}, - [881] = {.lex_state = 875}, - [882] = {.lex_state = 875}, - [883] = {.lex_state = 875}, - [884] = {.lex_state = 875}, - [885] = {.lex_state = 875}, - [886] = {.lex_state = 875}, - [887] = {.lex_state = 875}, - [888] = {.lex_state = 875}, - [889] = {.lex_state = 875}, - [890] = {.lex_state = 875}, - [891] = {.lex_state = 875}, - [892] = {.lex_state = 875}, - [893] = {.lex_state = 875}, - [894] = {.lex_state = 875}, - [895] = {.lex_state = 875}, - [896] = {.lex_state = 876}, - [897] = {.lex_state = 36}, - [898] = {.lex_state = 36}, - [899] = {.lex_state = 36}, - [900] = {.lex_state = 36}, - [901] = {.lex_state = 875}, - [902] = {.lex_state = 875}, - [903] = {.lex_state = 875}, - [904] = {.lex_state = 58}, - [905] = {.lex_state = 875}, - [906] = {.lex_state = 875}, - [907] = {.lex_state = 40}, - [908] = {.lex_state = 40}, - [909] = {.lex_state = 876}, - [910] = {.lex_state = 36}, - [911] = {.lex_state = 36}, - [912] = {.lex_state = 36}, - [913] = {.lex_state = 40, .external_lex_state = 3}, - [914] = {.lex_state = 38, .external_lex_state = 2}, - [915] = {.lex_state = 36}, - [916] = {.lex_state = 103}, - [917] = {.lex_state = 103}, - [918] = {.lex_state = 38}, - [919] = {.lex_state = 103}, - [920] = {.lex_state = 36}, - [921] = {.lex_state = 36}, - [922] = {.lex_state = 36}, - [923] = {.lex_state = 40, .external_lex_state = 2}, - [924] = {.lex_state = 36}, - [925] = {.lex_state = 36}, - [926] = {.lex_state = 40, .external_lex_state = 2}, - [927] = {.lex_state = 40, .external_lex_state = 2}, - [928] = {.lex_state = 36}, - [929] = {.lex_state = 36}, - [930] = {.lex_state = 876}, - [931] = {.lex_state = 38, .external_lex_state = 2}, - [932] = {.lex_state = 38}, - [933] = {.lex_state = 36}, - [934] = {.lex_state = 36}, - [935] = {.lex_state = 875}, - [936] = {.lex_state = 40, .external_lex_state = 2}, - [937] = {.lex_state = 36}, - [938] = {.lex_state = 36}, - [939] = {.lex_state = 36}, - [940] = {.lex_state = 36}, - [941] = {.lex_state = 36}, - [942] = {.lex_state = 36}, - [943] = {.lex_state = 36}, - [944] = {.lex_state = 36}, - [945] = {.lex_state = 38}, - [946] = {.lex_state = 40}, - [947] = {.lex_state = 40, .external_lex_state = 2}, - [948] = {.lex_state = 38}, - [949] = {.lex_state = 38}, - [950] = {.lex_state = 38}, - [951] = {.lex_state = 38}, - [952] = {.lex_state = 40}, - [953] = {.lex_state = 38}, - [954] = {.lex_state = 38}, - [955] = {.lex_state = 38}, - [956] = {.lex_state = 38}, - [957] = {.lex_state = 38}, - [958] = {.lex_state = 38}, - [959] = {.lex_state = 40, .external_lex_state = 2}, - [960] = {.lex_state = 38}, - [961] = {.lex_state = 38}, - [962] = {.lex_state = 38}, - [963] = {.lex_state = 38}, - [964] = {.lex_state = 38}, - [965] = {.lex_state = 38}, - [966] = {.lex_state = 38}, - [967] = {.lex_state = 38}, - [968] = {.lex_state = 38}, - [969] = {.lex_state = 38}, - [970] = {.lex_state = 38}, - [971] = {.lex_state = 38}, - [972] = {.lex_state = 38}, - [973] = {.lex_state = 38}, - [974] = {.lex_state = 38}, - [975] = {.lex_state = 38}, - [976] = {.lex_state = 38}, - [977] = {.lex_state = 38}, - [978] = {.lex_state = 38}, - [979] = {.lex_state = 40}, - [980] = {.lex_state = 40}, - [981] = {.lex_state = 40}, - [982] = {.lex_state = 40}, - [983] = {.lex_state = 40}, - [984] = {.lex_state = 40}, - [985] = {.lex_state = 40}, - [986] = {.lex_state = 40}, - [987] = {.lex_state = 40}, - [988] = {.lex_state = 40}, - [989] = {.lex_state = 40}, - [990] = {.lex_state = 40}, - [991] = {.lex_state = 40}, - [992] = {.lex_state = 40}, - [993] = {.lex_state = 40}, - [994] = {.lex_state = 40}, - [995] = {.lex_state = 40}, - [996] = {.lex_state = 40}, - [997] = {.lex_state = 40}, - [998] = {.lex_state = 40}, - [999] = {.lex_state = 40}, - [1000] = {.lex_state = 40}, - [1001] = {.lex_state = 40}, - [1002] = {.lex_state = 40}, - [1003] = {.lex_state = 40}, - [1004] = {.lex_state = 40}, - [1005] = {.lex_state = 40}, - [1006] = {.lex_state = 40}, - [1007] = {.lex_state = 40}, - [1008] = {.lex_state = 40}, - [1009] = {.lex_state = 40}, - [1010] = {.lex_state = 40}, - [1011] = {.lex_state = 103}, - [1012] = {.lex_state = 103}, - [1013] = {.lex_state = 876}, - [1014] = {.lex_state = 876}, - [1015] = {.lex_state = 876}, - [1016] = {.lex_state = 876}, - [1017] = {.lex_state = 876}, - [1018] = {.lex_state = 876}, - [1019] = {.lex_state = 876}, - [1020] = {.lex_state = 876}, - [1021] = {.lex_state = 876}, - [1022] = {.lex_state = 876}, - [1023] = {.lex_state = 103}, - [1024] = {.lex_state = 876}, - [1025] = {.lex_state = 876}, - [1026] = {.lex_state = 876}, - [1027] = {.lex_state = 876}, - [1028] = {.lex_state = 876}, - [1029] = {.lex_state = 103}, - [1030] = {.lex_state = 876}, - [1031] = {.lex_state = 876}, - [1032] = {.lex_state = 876}, - [1033] = {.lex_state = 876}, - [1034] = {.lex_state = 876}, - [1035] = {.lex_state = 876}, - [1036] = {.lex_state = 876}, - [1037] = {.lex_state = 876}, - [1038] = {.lex_state = 876}, - [1039] = {.lex_state = 876}, - [1040] = {.lex_state = 876}, - [1041] = {.lex_state = 876}, - [1042] = {.lex_state = 876}, - [1043] = {.lex_state = 876}, - [1044] = {.lex_state = 876}, - [1045] = {.lex_state = 876}, - [1046] = {.lex_state = 876}, - [1047] = {.lex_state = 876}, - [1048] = {.lex_state = 876}, - [1049] = {.lex_state = 876}, - [1050] = {.lex_state = 876}, - [1051] = {.lex_state = 876}, - [1052] = {.lex_state = 876}, - [1053] = {.lex_state = 876}, - [1054] = {.lex_state = 876}, - [1055] = {.lex_state = 103}, - [1056] = {.lex_state = 876}, - [1057] = {.lex_state = 876}, - [1058] = {.lex_state = 103}, - [1059] = {.lex_state = 103}, - [1060] = {.lex_state = 876}, - [1061] = {.lex_state = 876}, - [1062] = {.lex_state = 876}, - [1063] = {.lex_state = 876}, - [1064] = {.lex_state = 103}, - [1065] = {.lex_state = 103}, - [1066] = {.lex_state = 876}, - [1067] = {.lex_state = 876}, - [1068] = {.lex_state = 876}, - [1069] = {.lex_state = 876}, - [1070] = {.lex_state = 876}, - [1071] = {.lex_state = 876}, - [1072] = {.lex_state = 876}, - [1073] = {.lex_state = 876}, - [1074] = {.lex_state = 876}, - [1075] = {.lex_state = 876}, - [1076] = {.lex_state = 876}, - [1077] = {.lex_state = 876}, - [1078] = {.lex_state = 103}, - [1079] = {.lex_state = 103}, - [1080] = {.lex_state = 103}, - [1081] = {.lex_state = 103}, - [1082] = {.lex_state = 103}, - [1083] = {.lex_state = 103}, - [1084] = {.lex_state = 876}, - [1085] = {.lex_state = 876}, - [1086] = {.lex_state = 876}, - [1087] = {.lex_state = 876}, - [1088] = {.lex_state = 876}, - [1089] = {.lex_state = 876}, - [1090] = {.lex_state = 876}, - [1091] = {.lex_state = 876}, - [1092] = {.lex_state = 876}, - [1093] = {.lex_state = 876}, - [1094] = {.lex_state = 876}, - [1095] = {.lex_state = 876}, - [1096] = {.lex_state = 876}, - [1097] = {.lex_state = 876}, - [1098] = {.lex_state = 876}, - [1099] = {.lex_state = 876}, - [1100] = {.lex_state = 876}, - [1101] = {.lex_state = 876}, - [1102] = {.lex_state = 103}, - [1103] = {.lex_state = 103}, - [1104] = {.lex_state = 103}, - [1105] = {.lex_state = 103}, - [1106] = {.lex_state = 103}, - [1107] = {.lex_state = 876}, - [1108] = {.lex_state = 876}, - [1109] = {.lex_state = 876}, - [1110] = {.lex_state = 103}, - [1111] = {.lex_state = 876}, - [1112] = {.lex_state = 876}, - [1113] = {.lex_state = 876}, - [1114] = {.lex_state = 876}, - [1115] = {.lex_state = 876}, - [1116] = {.lex_state = 876}, - [1117] = {.lex_state = 876}, - [1118] = {.lex_state = 876}, - [1119] = {.lex_state = 876}, - [1120] = {.lex_state = 876}, - [1121] = {.lex_state = 103}, - [1122] = {.lex_state = 103}, - [1123] = {.lex_state = 103}, - [1124] = {.lex_state = 876}, - [1125] = {.lex_state = 103}, - [1126] = {.lex_state = 103}, - [1127] = {.lex_state = 103}, - [1128] = {.lex_state = 103}, - [1129] = {.lex_state = 103}, - [1130] = {.lex_state = 876}, - [1131] = {.lex_state = 876}, - [1132] = {.lex_state = 876}, - [1133] = {.lex_state = 876}, - [1134] = {.lex_state = 876}, - [1135] = {.lex_state = 876}, - [1136] = {.lex_state = 876}, - [1137] = {.lex_state = 876}, - [1138] = {.lex_state = 876}, - [1139] = {.lex_state = 876}, - [1140] = {.lex_state = 876}, - [1141] = {.lex_state = 876}, - [1142] = {.lex_state = 876}, - [1143] = {.lex_state = 103}, - [1144] = {.lex_state = 103}, - [1145] = {.lex_state = 103}, - [1146] = {.lex_state = 876}, - [1147] = {.lex_state = 103}, - [1148] = {.lex_state = 103}, - [1149] = {.lex_state = 103}, - [1150] = {.lex_state = 103}, - [1151] = {.lex_state = 103}, - [1152] = {.lex_state = 103}, - [1153] = {.lex_state = 103}, - [1154] = {.lex_state = 103}, - [1155] = {.lex_state = 103}, - [1156] = {.lex_state = 103}, - [1157] = {.lex_state = 103}, - [1158] = {.lex_state = 103}, - [1159] = {.lex_state = 876}, - [1160] = {.lex_state = 103}, - [1161] = {.lex_state = 876}, - [1162] = {.lex_state = 876}, - [1163] = {.lex_state = 876}, - [1164] = {.lex_state = 876}, - [1165] = {.lex_state = 876}, - [1166] = {.lex_state = 876}, - [1167] = {.lex_state = 876}, - [1168] = {.lex_state = 876}, - [1169] = {.lex_state = 876}, - [1170] = {.lex_state = 103}, - [1171] = {.lex_state = 103}, - [1172] = {.lex_state = 103}, - [1173] = {.lex_state = 876}, - [1174] = {.lex_state = 103}, - [1175] = {.lex_state = 103}, - [1176] = {.lex_state = 103}, - [1177] = {.lex_state = 103}, - [1178] = {.lex_state = 103}, - [1179] = {.lex_state = 103}, - [1180] = {.lex_state = 876}, - [1181] = {.lex_state = 103}, - [1182] = {.lex_state = 103}, - [1183] = {.lex_state = 103}, - [1184] = {.lex_state = 876}, - [1185] = {.lex_state = 103}, - [1186] = {.lex_state = 876}, - [1187] = {.lex_state = 103}, - [1188] = {.lex_state = 103}, - [1189] = {.lex_state = 103}, - [1190] = {.lex_state = 103}, - [1191] = {.lex_state = 103}, - [1192] = {.lex_state = 103}, - [1193] = {.lex_state = 103}, - [1194] = {.lex_state = 103}, - [1195] = {.lex_state = 103}, - [1196] = {.lex_state = 103}, - [1197] = {.lex_state = 103}, - [1198] = {.lex_state = 103}, - [1199] = {.lex_state = 103}, - [1200] = {.lex_state = 103}, - [1201] = {.lex_state = 103}, - [1202] = {.lex_state = 103}, - [1203] = {.lex_state = 103}, - [1204] = {.lex_state = 103}, - [1205] = {.lex_state = 103}, - [1206] = {.lex_state = 103}, - [1207] = {.lex_state = 103}, - [1208] = {.lex_state = 103}, - [1209] = {.lex_state = 103}, - [1210] = {.lex_state = 103}, - [1211] = {.lex_state = 103}, - [1212] = {.lex_state = 103}, - [1213] = {.lex_state = 103}, - [1214] = {.lex_state = 103}, - [1215] = {.lex_state = 103}, - [1216] = {.lex_state = 103}, - [1217] = {.lex_state = 103}, - [1218] = {.lex_state = 103}, - [1219] = {.lex_state = 103}, - [1220] = {.lex_state = 103}, - [1221] = {.lex_state = 103}, - [1222] = {.lex_state = 103}, - [1223] = {.lex_state = 103}, - [1224] = {.lex_state = 103}, - [1225] = {.lex_state = 103}, - [1226] = {.lex_state = 876}, - [1227] = {.lex_state = 103}, - [1228] = {.lex_state = 103}, - [1229] = {.lex_state = 103}, - [1230] = {.lex_state = 103}, - [1231] = {.lex_state = 103}, - [1232] = {.lex_state = 876}, - [1233] = {.lex_state = 103}, - [1234] = {.lex_state = 103}, - [1235] = {.lex_state = 876}, - [1236] = {.lex_state = 103}, - [1237] = {.lex_state = 103}, - [1238] = {.lex_state = 103}, - [1239] = {.lex_state = 103}, - [1240] = {.lex_state = 103}, - [1241] = {.lex_state = 58}, - [1242] = {.lex_state = 103}, - [1243] = {.lex_state = 103}, - [1244] = {.lex_state = 103}, - [1245] = {.lex_state = 103}, - [1246] = {.lex_state = 876}, - [1247] = {.lex_state = 876}, - [1248] = {.lex_state = 876}, - [1249] = {.lex_state = 876}, - [1250] = {.lex_state = 876}, - [1251] = {.lex_state = 103}, - [1252] = {.lex_state = 103}, - [1253] = {.lex_state = 103}, - [1254] = {.lex_state = 103}, - [1255] = {.lex_state = 103}, - [1256] = {.lex_state = 103}, - [1257] = {.lex_state = 103}, - [1258] = {.lex_state = 103}, - [1259] = {.lex_state = 103}, - [1260] = {.lex_state = 103}, - [1261] = {.lex_state = 103}, - [1262] = {.lex_state = 103}, - [1263] = {.lex_state = 103}, - [1264] = {.lex_state = 103}, - [1265] = {.lex_state = 103}, - [1266] = {.lex_state = 876}, - [1267] = {.lex_state = 876}, - [1268] = {.lex_state = 876}, - [1269] = {.lex_state = 876}, - [1270] = {.lex_state = 876}, - [1271] = {.lex_state = 876}, - [1272] = {.lex_state = 876}, - [1273] = {.lex_state = 876}, - [1274] = {.lex_state = 876}, - [1275] = {.lex_state = 103}, - [1276] = {.lex_state = 103}, - [1277] = {.lex_state = 103}, - [1278] = {.lex_state = 103}, - [1279] = {.lex_state = 103}, - [1280] = {.lex_state = 103}, - [1281] = {.lex_state = 103}, - [1282] = {.lex_state = 877}, - [1283] = {.lex_state = 104}, - [1284] = {.lex_state = 875, .external_lex_state = 2}, - [1285] = {.lex_state = 877}, - [1286] = {.lex_state = 877}, - [1287] = {.lex_state = 877}, - [1288] = {.lex_state = 877}, - [1289] = {.lex_state = 877}, - [1290] = {.lex_state = 877}, - [1291] = {.lex_state = 877}, - [1292] = {.lex_state = 877}, - [1293] = {.lex_state = 877}, - [1294] = {.lex_state = 877}, - [1295] = {.lex_state = 877}, - [1296] = {.lex_state = 877}, - [1297] = {.lex_state = 877}, - [1298] = {.lex_state = 877}, - [1299] = {.lex_state = 877}, - [1300] = {.lex_state = 877}, - [1301] = {.lex_state = 877}, - [1302] = {.lex_state = 877}, - [1303] = {.lex_state = 875, .external_lex_state = 2}, - [1304] = {.lex_state = 877}, - [1305] = {.lex_state = 877}, - [1306] = {.lex_state = 877}, - [1307] = {.lex_state = 877}, - [1308] = {.lex_state = 877}, - [1309] = {.lex_state = 877}, - [1310] = {.lex_state = 877}, - [1311] = {.lex_state = 877}, - [1312] = {.lex_state = 877}, - [1313] = {.lex_state = 875, .external_lex_state = 2}, - [1314] = {.lex_state = 877}, - [1315] = {.lex_state = 877}, - [1316] = {.lex_state = 877}, - [1317] = {.lex_state = 877}, - [1318] = {.lex_state = 877}, - [1319] = {.lex_state = 877}, - [1320] = {.lex_state = 877}, - [1321] = {.lex_state = 877}, - [1322] = {.lex_state = 877}, - [1323] = {.lex_state = 877}, - [1324] = {.lex_state = 877}, - [1325] = {.lex_state = 877}, - [1326] = {.lex_state = 877}, - [1327] = {.lex_state = 877}, - [1328] = {.lex_state = 877}, - [1329] = {.lex_state = 877}, - [1330] = {.lex_state = 877}, - [1331] = {.lex_state = 877}, - [1332] = {.lex_state = 877}, - [1333] = {.lex_state = 877}, - [1334] = {.lex_state = 877}, - [1335] = {.lex_state = 877}, - [1336] = {.lex_state = 877}, - [1337] = {.lex_state = 877}, - [1338] = {.lex_state = 877}, - [1339] = {.lex_state = 877}, - [1340] = {.lex_state = 877}, - [1341] = {.lex_state = 877}, - [1342] = {.lex_state = 106}, - [1343] = {.lex_state = 877}, - [1344] = {.lex_state = 877}, - [1345] = {.lex_state = 877}, - [1346] = {.lex_state = 877}, - [1347] = {.lex_state = 877}, - [1348] = {.lex_state = 877}, - [1349] = {.lex_state = 875, .external_lex_state = 2}, - [1350] = {.lex_state = 877}, - [1351] = {.lex_state = 877}, - [1352] = {.lex_state = 877}, - [1353] = {.lex_state = 877}, - [1354] = {.lex_state = 877}, - [1355] = {.lex_state = 877}, - [1356] = {.lex_state = 877}, - [1357] = {.lex_state = 877}, - [1358] = {.lex_state = 877}, - [1359] = {.lex_state = 877}, - [1360] = {.lex_state = 877}, - [1361] = {.lex_state = 877}, - [1362] = {.lex_state = 104}, - [1363] = {.lex_state = 104}, - [1364] = {.lex_state = 877}, - [1365] = {.lex_state = 877}, - [1366] = {.lex_state = 104}, - [1367] = {.lex_state = 877}, - [1368] = {.lex_state = 877}, - [1369] = {.lex_state = 877}, - [1370] = {.lex_state = 104}, - [1371] = {.lex_state = 877}, - [1372] = {.lex_state = 875, .external_lex_state = 2}, - [1373] = {.lex_state = 104}, - [1374] = {.lex_state = 877}, - [1375] = {.lex_state = 875, .external_lex_state = 2}, - [1376] = {.lex_state = 58}, - [1377] = {.lex_state = 877}, - [1378] = {.lex_state = 104}, - [1379] = {.lex_state = 877}, - [1380] = {.lex_state = 877}, - [1381] = {.lex_state = 877}, - [1382] = {.lex_state = 877}, - [1383] = {.lex_state = 877}, - [1384] = {.lex_state = 104}, - [1385] = {.lex_state = 104}, - [1386] = {.lex_state = 104}, - [1387] = {.lex_state = 877}, - [1388] = {.lex_state = 104}, - [1389] = {.lex_state = 877}, - [1390] = {.lex_state = 877}, - [1391] = {.lex_state = 104}, - [1392] = {.lex_state = 104}, - [1393] = {.lex_state = 104}, - [1394] = {.lex_state = 877}, - [1395] = {.lex_state = 875, .external_lex_state = 2}, - [1396] = {.lex_state = 104}, - [1397] = {.lex_state = 104}, - [1398] = {.lex_state = 104}, - [1399] = {.lex_state = 104}, - [1400] = {.lex_state = 104}, - [1401] = {.lex_state = 877}, - [1402] = {.lex_state = 877}, - [1403] = {.lex_state = 104}, - [1404] = {.lex_state = 877}, - [1405] = {.lex_state = 104}, - [1406] = {.lex_state = 877}, - [1407] = {.lex_state = 877}, - [1408] = {.lex_state = 877}, - [1409] = {.lex_state = 877}, - [1410] = {.lex_state = 877}, - [1411] = {.lex_state = 877}, - [1412] = {.lex_state = 104}, - [1413] = {.lex_state = 104}, - [1414] = {.lex_state = 877}, - [1415] = {.lex_state = 104}, - [1416] = {.lex_state = 877}, - [1417] = {.lex_state = 877}, - [1418] = {.lex_state = 877}, - [1419] = {.lex_state = 104}, - [1420] = {.lex_state = 877}, - [1421] = {.lex_state = 104}, - [1422] = {.lex_state = 104}, - [1423] = {.lex_state = 877}, - [1424] = {.lex_state = 877}, - [1425] = {.lex_state = 104}, - [1426] = {.lex_state = 877}, - [1427] = {.lex_state = 104}, - [1428] = {.lex_state = 877}, - [1429] = {.lex_state = 104}, - [1430] = {.lex_state = 104}, - [1431] = {.lex_state = 875, .external_lex_state = 2}, - [1432] = {.lex_state = 104}, - [1433] = {.lex_state = 104}, - [1434] = {.lex_state = 877}, - [1435] = {.lex_state = 104}, - [1436] = {.lex_state = 877}, - [1437] = {.lex_state = 104}, - [1438] = {.lex_state = 877}, - [1439] = {.lex_state = 104}, - [1440] = {.lex_state = 877}, - [1441] = {.lex_state = 877}, - [1442] = {.lex_state = 877}, - [1443] = {.lex_state = 104}, - [1444] = {.lex_state = 877}, - [1445] = {.lex_state = 104}, - [1446] = {.lex_state = 877}, - [1447] = {.lex_state = 877}, - [1448] = {.lex_state = 877}, - [1449] = {.lex_state = 104}, - [1450] = {.lex_state = 877}, - [1451] = {.lex_state = 877}, - [1452] = {.lex_state = 104}, - [1453] = {.lex_state = 877}, - [1454] = {.lex_state = 104}, - [1455] = {.lex_state = 104}, - [1456] = {.lex_state = 877}, - [1457] = {.lex_state = 877}, - [1458] = {.lex_state = 104}, - [1459] = {.lex_state = 104}, - [1460] = {.lex_state = 104}, - [1461] = {.lex_state = 104}, - [1462] = {.lex_state = 877}, - [1463] = {.lex_state = 104}, - [1464] = {.lex_state = 104}, - [1465] = {.lex_state = 104}, - [1466] = {.lex_state = 877}, - [1467] = {.lex_state = 877}, - [1468] = {.lex_state = 877}, - [1469] = {.lex_state = 104}, - [1470] = {.lex_state = 104}, - [1471] = {.lex_state = 104}, - [1472] = {.lex_state = 104}, - [1473] = {.lex_state = 877}, - [1474] = {.lex_state = 104}, - [1475] = {.lex_state = 877}, - [1476] = {.lex_state = 877}, - [1477] = {.lex_state = 877}, - [1478] = {.lex_state = 104}, - [1479] = {.lex_state = 104}, - [1480] = {.lex_state = 104}, - [1481] = {.lex_state = 104}, - [1482] = {.lex_state = 104}, - [1483] = {.lex_state = 877}, - [1484] = {.lex_state = 877}, - [1485] = {.lex_state = 104}, - [1486] = {.lex_state = 875, .external_lex_state = 2}, - [1487] = {.lex_state = 877}, - [1488] = {.lex_state = 104}, - [1489] = {.lex_state = 104}, - [1490] = {.lex_state = 104}, - [1491] = {.lex_state = 877}, - [1492] = {.lex_state = 104}, - [1493] = {.lex_state = 104}, - [1494] = {.lex_state = 877}, - [1495] = {.lex_state = 877}, - [1496] = {.lex_state = 104}, - [1497] = {.lex_state = 877}, - [1498] = {.lex_state = 104}, - [1499] = {.lex_state = 104}, - [1500] = {.lex_state = 877}, - [1501] = {.lex_state = 104}, - [1502] = {.lex_state = 104}, - [1503] = {.lex_state = 104}, - [1504] = {.lex_state = 877}, - [1505] = {.lex_state = 877}, - [1506] = {.lex_state = 104}, - [1507] = {.lex_state = 104}, - [1508] = {.lex_state = 104}, - [1509] = {.lex_state = 104}, - [1510] = {.lex_state = 104}, - [1511] = {.lex_state = 104}, - [1512] = {.lex_state = 104}, - [1513] = {.lex_state = 104}, - [1514] = {.lex_state = 104}, - [1515] = {.lex_state = 104}, - [1516] = {.lex_state = 104}, - [1517] = {.lex_state = 104}, - [1518] = {.lex_state = 104}, - [1519] = {.lex_state = 875, .external_lex_state = 2}, - [1520] = {.lex_state = 104}, - [1521] = {.lex_state = 877}, - [1522] = {.lex_state = 877}, - [1523] = {.lex_state = 104}, - [1524] = {.lex_state = 104}, - [1525] = {.lex_state = 104}, - [1526] = {.lex_state = 104}, - [1527] = {.lex_state = 104}, - [1528] = {.lex_state = 104}, - [1529] = {.lex_state = 877}, - [1530] = {.lex_state = 877}, - [1531] = {.lex_state = 104}, - [1532] = {.lex_state = 104}, - [1533] = {.lex_state = 104}, - [1534] = {.lex_state = 104}, - [1535] = {.lex_state = 104}, - [1536] = {.lex_state = 104}, - [1537] = {.lex_state = 104}, - [1538] = {.lex_state = 104}, - [1539] = {.lex_state = 104}, - [1540] = {.lex_state = 104}, - [1541] = {.lex_state = 104}, - [1542] = {.lex_state = 104}, - [1543] = {.lex_state = 104}, - [1544] = {.lex_state = 104}, - [1545] = {.lex_state = 104}, - [1546] = {.lex_state = 104}, - [1547] = {.lex_state = 104}, - [1548] = {.lex_state = 104}, - [1549] = {.lex_state = 877}, - [1550] = {.lex_state = 877}, - [1551] = {.lex_state = 104}, - [1552] = {.lex_state = 104}, - [1553] = {.lex_state = 104}, - [1554] = {.lex_state = 104}, - [1555] = {.lex_state = 877}, - [1556] = {.lex_state = 877}, - [1557] = {.lex_state = 877}, - [1558] = {.lex_state = 104}, - [1559] = {.lex_state = 104}, - [1560] = {.lex_state = 104}, - [1561] = {.lex_state = 104}, - [1562] = {.lex_state = 104}, - [1563] = {.lex_state = 104}, - [1564] = {.lex_state = 104}, - [1565] = {.lex_state = 104}, - [1566] = {.lex_state = 104}, - [1567] = {.lex_state = 104}, - [1568] = {.lex_state = 104}, - [1569] = {.lex_state = 104}, - [1570] = {.lex_state = 104}, - [1571] = {.lex_state = 104}, - [1572] = {.lex_state = 104}, - [1573] = {.lex_state = 877}, - [1574] = {.lex_state = 877}, - [1575] = {.lex_state = 104}, - [1576] = {.lex_state = 104}, - [1577] = {.lex_state = 104}, - [1578] = {.lex_state = 104}, - [1579] = {.lex_state = 104}, - [1580] = {.lex_state = 104}, - [1581] = {.lex_state = 104}, - [1582] = {.lex_state = 104}, - [1583] = {.lex_state = 104}, - [1584] = {.lex_state = 104}, - [1585] = {.lex_state = 104}, - [1586] = {.lex_state = 104}, - [1587] = {.lex_state = 104}, - [1588] = {.lex_state = 104}, - [1589] = {.lex_state = 104}, - [1590] = {.lex_state = 104}, - [1591] = {.lex_state = 104}, - [1592] = {.lex_state = 104}, - [1593] = {.lex_state = 104}, - [1594] = {.lex_state = 877}, - [1595] = {.lex_state = 104}, - [1596] = {.lex_state = 104}, - [1597] = {.lex_state = 104}, - [1598] = {.lex_state = 104}, - [1599] = {.lex_state = 877}, - [1600] = {.lex_state = 104}, - [1601] = {.lex_state = 104}, - [1602] = {.lex_state = 104}, - [1603] = {.lex_state = 104}, - [1604] = {.lex_state = 104}, - [1605] = {.lex_state = 104}, - [1606] = {.lex_state = 877}, - [1607] = {.lex_state = 877}, - [1608] = {.lex_state = 877}, - [1609] = {.lex_state = 104}, - [1610] = {.lex_state = 875, .external_lex_state = 2}, - [1611] = {.lex_state = 875}, - [1612] = {.lex_state = 875}, - [1613] = {.lex_state = 875}, - [1614] = {.lex_state = 875}, - [1615] = {.lex_state = 875}, - [1616] = {.lex_state = 875}, - [1617] = {.lex_state = 875}, - [1618] = {.lex_state = 58}, - [1619] = {.lex_state = 875}, - [1620] = {.lex_state = 58}, - [1621] = {.lex_state = 58}, - [1622] = {.lex_state = 875}, - [1623] = {.lex_state = 875}, - [1624] = {.lex_state = 875}, - [1625] = {.lex_state = 34}, - [1626] = {.lex_state = 34}, - [1627] = {.lex_state = 52}, - [1628] = {.lex_state = 52}, - [1629] = {.lex_state = 52}, - [1630] = {.lex_state = 875}, - [1631] = {.lex_state = 34, .external_lex_state = 2}, - [1632] = {.lex_state = 107}, - [1633] = {.lex_state = 107}, - [1634] = {.lex_state = 52}, - [1635] = {.lex_state = 107}, - [1636] = {.lex_state = 875}, - [1637] = {.lex_state = 107}, - [1638] = {.lex_state = 107}, - [1639] = {.lex_state = 875}, - [1640] = {.lex_state = 107}, - [1641] = {.lex_state = 107}, - [1642] = {.lex_state = 107}, - [1643] = {.lex_state = 875}, - [1644] = {.lex_state = 875}, - [1645] = {.lex_state = 875}, - [1646] = {.lex_state = 875}, - [1647] = {.lex_state = 107}, - [1648] = {.lex_state = 107}, - [1649] = {.lex_state = 107}, - [1650] = {.lex_state = 875}, - [1651] = {.lex_state = 107}, - [1652] = {.lex_state = 107}, - [1653] = {.lex_state = 34, .external_lex_state = 2}, - [1654] = {.lex_state = 107}, - [1655] = {.lex_state = 107}, - [1656] = {.lex_state = 107}, - [1657] = {.lex_state = 34, .external_lex_state = 2}, - [1658] = {.lex_state = 875}, - [1659] = {.lex_state = 107}, - [1660] = {.lex_state = 107}, - [1661] = {.lex_state = 107}, - [1662] = {.lex_state = 107}, - [1663] = {.lex_state = 107}, - [1664] = {.lex_state = 107}, - [1665] = {.lex_state = 107}, - [1666] = {.lex_state = 52}, - [1667] = {.lex_state = 34, .external_lex_state = 2}, - [1668] = {.lex_state = 875}, - [1669] = {.lex_state = 875}, - [1670] = {.lex_state = 875}, - [1671] = {.lex_state = 875}, - [1672] = {.lex_state = 875}, - [1673] = {.lex_state = 875}, - [1674] = {.lex_state = 875}, - [1675] = {.lex_state = 875}, - [1676] = {.lex_state = 875}, - [1677] = {.lex_state = 875}, - [1678] = {.lex_state = 875}, - [1679] = {.lex_state = 875}, - [1680] = {.lex_state = 875}, - [1681] = {.lex_state = 875}, - [1682] = {.lex_state = 875}, - [1683] = {.lex_state = 875}, - [1684] = {.lex_state = 875}, - [1685] = {.lex_state = 875}, - [1686] = {.lex_state = 875}, - [1687] = {.lex_state = 875}, - [1688] = {.lex_state = 875}, - [1689] = {.lex_state = 875}, - [1690] = {.lex_state = 34}, - [1691] = {.lex_state = 34}, - [1692] = {.lex_state = 875}, - [1693] = {.lex_state = 34}, - [1694] = {.lex_state = 875}, - [1695] = {.lex_state = 58}, - [1696] = {.lex_state = 875}, - [1697] = {.lex_state = 875}, - [1698] = {.lex_state = 875}, - [1699] = {.lex_state = 58}, - [1700] = {.lex_state = 875}, - [1701] = {.lex_state = 875}, - [1702] = {.lex_state = 34}, - [1703] = {.lex_state = 107}, - [1704] = {.lex_state = 875}, - [1705] = {.lex_state = 58}, - [1706] = {.lex_state = 875}, - [1707] = {.lex_state = 34}, - [1708] = {.lex_state = 34}, - [1709] = {.lex_state = 34}, - [1710] = {.lex_state = 875}, - [1711] = {.lex_state = 34}, - [1712] = {.lex_state = 58}, - [1713] = {.lex_state = 34}, - [1714] = {.lex_state = 34}, - [1715] = {.lex_state = 34}, - [1716] = {.lex_state = 34}, - [1717] = {.lex_state = 58}, - [1718] = {.lex_state = 875}, - [1719] = {.lex_state = 34}, - [1720] = {.lex_state = 34}, - [1721] = {.lex_state = 875}, - [1722] = {.lex_state = 875}, - [1723] = {.lex_state = 875}, - [1724] = {.lex_state = 34}, - [1725] = {.lex_state = 34}, - [1726] = {.lex_state = 875}, - [1727] = {.lex_state = 875}, - [1728] = {.lex_state = 875}, - [1729] = {.lex_state = 875}, - [1730] = {.lex_state = 58}, - [1731] = {.lex_state = 875}, - [1732] = {.lex_state = 875}, - [1733] = {.lex_state = 875}, - [1734] = {.lex_state = 875}, - [1735] = {.lex_state = 875}, - [1736] = {.lex_state = 875}, - [1737] = {.lex_state = 875}, - [1738] = {.lex_state = 875}, - [1739] = {.lex_state = 875}, - [1740] = {.lex_state = 875}, - [1741] = {.lex_state = 875}, - [1742] = {.lex_state = 875}, - [1743] = {.lex_state = 875}, - [1744] = {.lex_state = 875}, - [1745] = {.lex_state = 875}, - [1746] = {.lex_state = 875}, - [1747] = {.lex_state = 875}, - [1748] = {.lex_state = 875}, - [1749] = {.lex_state = 875}, - [1750] = {.lex_state = 875}, - [1751] = {.lex_state = 875}, - [1752] = {.lex_state = 875}, - [1753] = {.lex_state = 875}, - [1754] = {.lex_state = 875}, - [1755] = {.lex_state = 875}, - [1756] = {.lex_state = 875}, - [1757] = {.lex_state = 875}, - [1758] = {.lex_state = 875}, - [1759] = {.lex_state = 875}, - [1760] = {.lex_state = 875}, - [1761] = {.lex_state = 875}, - [1762] = {.lex_state = 875}, - [1763] = {.lex_state = 875}, - [1764] = {.lex_state = 875}, - [1765] = {.lex_state = 875}, - [1766] = {.lex_state = 875}, - [1767] = {.lex_state = 875}, - [1768] = {.lex_state = 875}, - [1769] = {.lex_state = 875}, - [1770] = {.lex_state = 875}, - [1771] = {.lex_state = 875}, - [1772] = {.lex_state = 875}, - [1773] = {.lex_state = 875}, - [1774] = {.lex_state = 875}, - [1775] = {.lex_state = 875}, - [1776] = {.lex_state = 875}, - [1777] = {.lex_state = 875}, - [1778] = {.lex_state = 875}, - [1779] = {.lex_state = 875}, - [1780] = {.lex_state = 875}, - [1781] = {.lex_state = 875}, - [1782] = {.lex_state = 875}, - [1783] = {.lex_state = 875}, - [1784] = {.lex_state = 875}, - [1785] = {.lex_state = 875}, - [1786] = {.lex_state = 875}, - [1787] = {.lex_state = 875}, - [1788] = {.lex_state = 875}, - [1789] = {.lex_state = 875}, - [1790] = {.lex_state = 875}, - [1791] = {.lex_state = 875}, - [1792] = {.lex_state = 875}, - [1793] = {.lex_state = 875}, - [1794] = {.lex_state = 875}, - [1795] = {.lex_state = 875}, - [1796] = {.lex_state = 875}, - [1797] = {.lex_state = 875}, - [1798] = {.lex_state = 875}, - [1799] = {.lex_state = 875}, - [1800] = {.lex_state = 875}, - [1801] = {.lex_state = 875}, - [1802] = {.lex_state = 875}, - [1803] = {.lex_state = 875, .external_lex_state = 2}, - [1804] = {.lex_state = 875}, - [1805] = {.lex_state = 875}, - [1806] = {.lex_state = 875}, - [1807] = {.lex_state = 875}, - [1808] = {.lex_state = 58}, - [1809] = {.lex_state = 875}, - [1810] = {.lex_state = 875}, - [1811] = {.lex_state = 875}, - [1812] = {.lex_state = 875}, - [1813] = {.lex_state = 875}, - [1814] = {.lex_state = 875}, - [1815] = {.lex_state = 875}, - [1816] = {.lex_state = 875}, - [1817] = {.lex_state = 875}, - [1818] = {.lex_state = 34, .external_lex_state = 2}, - [1819] = {.lex_state = 875, .external_lex_state = 2}, - [1820] = {.lex_state = 875, .external_lex_state = 2}, - [1821] = {.lex_state = 875, .external_lex_state = 2}, - [1822] = {.lex_state = 875, .external_lex_state = 2}, - [1823] = {.lex_state = 875}, - [1824] = {.lex_state = 875, .external_lex_state = 2}, - [1825] = {.lex_state = 58}, - [1826] = {.lex_state = 875, .external_lex_state = 2}, - [1827] = {.lex_state = 875}, - [1828] = {.lex_state = 875}, - [1829] = {.lex_state = 58}, - [1830] = {.lex_state = 875, .external_lex_state = 2}, - [1831] = {.lex_state = 58}, - [1832] = {.lex_state = 875}, - [1833] = {.lex_state = 58}, - [1834] = {.lex_state = 58}, - [1835] = {.lex_state = 34}, - [1836] = {.lex_state = 875, .external_lex_state = 2}, - [1837] = {.lex_state = 58}, - [1838] = {.lex_state = 875, .external_lex_state = 2}, - [1839] = {.lex_state = 875, .external_lex_state = 2}, - [1840] = {.lex_state = 875}, - [1841] = {.lex_state = 58}, - [1842] = {.lex_state = 875, .external_lex_state = 2}, - [1843] = {.lex_state = 875, .external_lex_state = 2}, - [1844] = {.lex_state = 875, .external_lex_state = 2}, - [1845] = {.lex_state = 875, .external_lex_state = 2}, - [1846] = {.lex_state = 875, .external_lex_state = 2}, - [1847] = {.lex_state = 56, .external_lex_state = 1}, - [1848] = {.lex_state = 875}, - [1849] = {.lex_state = 875}, - [1850] = {.lex_state = 875}, - [1851] = {.lex_state = 101}, - [1852] = {.lex_state = 875}, - [1853] = {.lex_state = 875}, - [1854] = {.lex_state = 875}, - [1855] = {.lex_state = 101}, - [1856] = {.lex_state = 875}, - [1857] = {.lex_state = 34}, - [1858] = {.lex_state = 101}, - [1859] = {.lex_state = 875}, - [1860] = {.lex_state = 875}, - [1861] = {.lex_state = 101}, - [1862] = {.lex_state = 101}, - [1863] = {.lex_state = 875}, - [1864] = {.lex_state = 875}, - [1865] = {.lex_state = 34}, - [1866] = {.lex_state = 875, .external_lex_state = 2}, - [1867] = {.lex_state = 101}, - [1868] = {.lex_state = 34}, - [1869] = {.lex_state = 875}, - [1870] = {.lex_state = 101}, - [1871] = {.lex_state = 875}, - [1872] = {.lex_state = 875}, - [1873] = {.lex_state = 101}, - [1874] = {.lex_state = 875}, - [1875] = {.lex_state = 875}, - [1876] = {.lex_state = 875}, - [1877] = {.lex_state = 875}, - [1878] = {.lex_state = 875}, - [1879] = {.lex_state = 101}, - [1880] = {.lex_state = 875}, - [1881] = {.lex_state = 875}, - [1882] = {.lex_state = 875}, - [1883] = {.lex_state = 875}, - [1884] = {.lex_state = 875}, - [1885] = {.lex_state = 875}, - [1886] = {.lex_state = 875}, - [1887] = {.lex_state = 875}, - [1888] = {.lex_state = 875}, - [1889] = {.lex_state = 101}, - [1890] = {.lex_state = 875}, - [1891] = {.lex_state = 875}, - [1892] = {.lex_state = 34}, - [1893] = {.lex_state = 34}, - [1894] = {.lex_state = 34}, - [1895] = {.lex_state = 875}, - [1896] = {.lex_state = 58}, - [1897] = {.lex_state = 875}, - [1898] = {.lex_state = 875}, - [1899] = {.lex_state = 875}, - [1900] = {.lex_state = 875}, - [1901] = {.lex_state = 875}, - [1902] = {.lex_state = 875}, - [1903] = {.lex_state = 875}, - [1904] = {.lex_state = 34}, - [1905] = {.lex_state = 34}, - [1906] = {.lex_state = 875}, - [1907] = {.lex_state = 34}, - [1908] = {.lex_state = 34}, - [1909] = {.lex_state = 875}, - [1910] = {.lex_state = 875}, - [1911] = {.lex_state = 34}, - [1912] = {.lex_state = 34}, - [1913] = {.lex_state = 875}, - [1914] = {.lex_state = 58}, - [1915] = {.lex_state = 875}, - [1916] = {.lex_state = 34}, - [1917] = {.lex_state = 875}, - [1918] = {.lex_state = 875}, - [1919] = {.lex_state = 875}, - [1920] = {.lex_state = 34}, - [1921] = {.lex_state = 34}, - [1922] = {.lex_state = 875}, - [1923] = {.lex_state = 58}, - [1924] = {.lex_state = 34}, - [1925] = {.lex_state = 34}, - [1926] = {.lex_state = 875}, - [1927] = {.lex_state = 875}, - [1928] = {.lex_state = 875}, - [1929] = {.lex_state = 57, .external_lex_state = 1}, - [1930] = {.lex_state = 875}, - [1931] = {.lex_state = 58}, - [1932] = {.lex_state = 98}, - [1933] = {.lex_state = 875}, - [1934] = {.lex_state = 875, .external_lex_state = 2}, - [1935] = {.lex_state = 58}, - [1936] = {.lex_state = 58}, - [1937] = {.lex_state = 58}, - [1938] = {.lex_state = 58}, - [1939] = {.lex_state = 98}, - [1940] = {.lex_state = 875}, - [1941] = {.lex_state = 875}, - [1942] = {.lex_state = 875}, - [1943] = {.lex_state = 875}, - [1944] = {.lex_state = 875}, - [1945] = {.lex_state = 875}, - [1946] = {.lex_state = 875}, - [1947] = {.lex_state = 875}, - [1948] = {.lex_state = 58}, - [1949] = {.lex_state = 875}, - [1950] = {.lex_state = 875}, - [1951] = {.lex_state = 56, .external_lex_state = 2}, - [1952] = {.lex_state = 875}, - [1953] = {.lex_state = 875}, - [1954] = {.lex_state = 875}, - [1955] = {.lex_state = 875}, - [1956] = {.lex_state = 875}, - [1957] = {.lex_state = 875}, - [1958] = {.lex_state = 875}, - [1959] = {.lex_state = 875}, - [1960] = {.lex_state = 875}, - [1961] = {.lex_state = 875}, - [1962] = {.lex_state = 875}, - [1963] = {.lex_state = 875}, - [1964] = {.lex_state = 875}, - [1965] = {.lex_state = 875}, - [1966] = {.lex_state = 58}, - [1967] = {.lex_state = 875}, - [1968] = {.lex_state = 875}, - [1969] = {.lex_state = 58}, - [1970] = {.lex_state = 875}, - [1971] = {.lex_state = 875}, - [1972] = {.lex_state = 875}, - [1973] = {.lex_state = 875}, - [1974] = {.lex_state = 875}, - [1975] = {.lex_state = 875}, - [1976] = {.lex_state = 875}, - [1977] = {.lex_state = 875}, - [1978] = {.lex_state = 875}, - [1979] = {.lex_state = 58}, - [1980] = {.lex_state = 875}, - [1981] = {.lex_state = 875}, - [1982] = {.lex_state = 875}, - [1983] = {.lex_state = 58}, - [1984] = {.lex_state = 58}, - [1985] = {.lex_state = 875}, - [1986] = {.lex_state = 875}, - [1987] = {.lex_state = 58}, - [1988] = {.lex_state = 875}, - [1989] = {.lex_state = 875}, - [1990] = {.lex_state = 875}, - [1991] = {.lex_state = 58}, - [1992] = {.lex_state = 875}, - [1993] = {.lex_state = 875}, - [1994] = {.lex_state = 875}, - [1995] = {.lex_state = 875}, - [1996] = {.lex_state = 56, .external_lex_state = 2}, - [1997] = {.lex_state = 875}, - [1998] = {.lex_state = 875}, - [1999] = {.lex_state = 875}, - [2000] = {.lex_state = 875}, - [2001] = {.lex_state = 875}, - [2002] = {.lex_state = 875}, - [2003] = {.lex_state = 875}, - [2004] = {.lex_state = 875}, - [2005] = {.lex_state = 875}, - [2006] = {.lex_state = 34}, - [2007] = {.lex_state = 875}, - [2008] = {.lex_state = 875}, - [2009] = {.lex_state = 875}, - [2010] = {.lex_state = 875}, - [2011] = {.lex_state = 875}, - [2012] = {.lex_state = 875}, - [2013] = {.lex_state = 875}, - [2014] = {.lex_state = 875}, - [2015] = {.lex_state = 875}, - [2016] = {.lex_state = 875}, - [2017] = {.lex_state = 875}, - [2018] = {.lex_state = 875}, - [2019] = {.lex_state = 875}, - [2020] = {.lex_state = 875}, - [2021] = {.lex_state = 875}, - [2022] = {.lex_state = 56}, - [2023] = {.lex_state = 875}, - [2024] = {.lex_state = 58}, - [2025] = {.lex_state = 56}, - [2026] = {.lex_state = 34}, - [2027] = {.lex_state = 875}, - [2028] = {.lex_state = 875}, - [2029] = {.lex_state = 34}, - [2030] = {.lex_state = 875}, - [2031] = {.lex_state = 875}, - [2032] = {.lex_state = 875}, - [2033] = {.lex_state = 875}, - [2034] = {.lex_state = 875}, - [2035] = {.lex_state = 875}, - [2036] = {.lex_state = 875}, - [2037] = {.lex_state = 875}, - [2038] = {.lex_state = 34}, - [2039] = {.lex_state = 875}, - [2040] = {.lex_state = 875}, - [2041] = {.lex_state = 875}, - [2042] = {.lex_state = 875}, - [2043] = {.lex_state = 875}, - [2044] = {.lex_state = 875}, - [2045] = {.lex_state = 875}, - [2046] = {.lex_state = 875}, - [2047] = {.lex_state = 56}, - [2048] = {.lex_state = 875}, - [2049] = {.lex_state = 34}, - [2050] = {.lex_state = 875}, - [2051] = {.lex_state = 34}, - [2052] = {.lex_state = 56}, - [2053] = {.lex_state = 875}, - [2054] = {.lex_state = 875}, - [2055] = {.lex_state = 875}, - [2056] = {.lex_state = 875}, - [2057] = {.lex_state = 34}, - [2058] = {.lex_state = 875}, - [2059] = {.lex_state = 875}, - [2060] = {.lex_state = 875}, - [2061] = {.lex_state = 875}, - [2062] = {.lex_state = 875}, - [2063] = {.lex_state = 875}, - [2064] = {.lex_state = 875}, - [2065] = {.lex_state = 875}, - [2066] = {.lex_state = 875}, - [2067] = {.lex_state = 875}, - [2068] = {.lex_state = 875}, - [2069] = {.lex_state = 875}, - [2070] = {.lex_state = 875}, - [2071] = {.lex_state = 58}, - [2072] = {.lex_state = 58}, - [2073] = {.lex_state = 875}, - [2074] = {.lex_state = 875}, - [2075] = {.lex_state = 875}, - [2076] = {.lex_state = 34}, - [2077] = {.lex_state = 875}, - [2078] = {.lex_state = 875}, - [2079] = {.lex_state = 875}, - [2080] = {.lex_state = 875}, - [2081] = {.lex_state = 875}, - [2082] = {.lex_state = 875}, - [2083] = {.lex_state = 875}, - [2084] = {.lex_state = 875}, - [2085] = {.lex_state = 875}, - [2086] = {.lex_state = 875}, - [2087] = {.lex_state = 58}, - [2088] = {.lex_state = 875}, - [2089] = {.lex_state = 875}, - [2090] = {.lex_state = 34}, - [2091] = {.lex_state = 875}, - [2092] = {.lex_state = 34}, - [2093] = {.lex_state = 56, .external_lex_state = 2}, - [2094] = {.lex_state = 34}, - [2095] = {.lex_state = 875}, - [2096] = {.lex_state = 875}, - [2097] = {.lex_state = 34}, - [2098] = {.lex_state = 875}, - [2099] = {.lex_state = 875}, - [2100] = {.lex_state = 34}, - [2101] = {.lex_state = 875}, - [2102] = {.lex_state = 875}, - [2103] = {.lex_state = 875}, - [2104] = {.lex_state = 875, .external_lex_state = 2}, - [2105] = {.lex_state = 58}, - [2106] = {.lex_state = 875}, - [2107] = {.lex_state = 34}, - [2108] = {.lex_state = 875}, - [2109] = {.lex_state = 875}, - [2110] = {.lex_state = 875, .external_lex_state = 2}, - [2111] = {.lex_state = 875}, - [2112] = {.lex_state = 875}, - [2113] = {.lex_state = 875}, - [2114] = {.lex_state = 34}, - [2115] = {.lex_state = 66}, - [2116] = {.lex_state = 875}, - [2117] = {.lex_state = 875}, - [2118] = {.lex_state = 48}, - [2119] = {.lex_state = 48}, - [2120] = {.lex_state = 875}, - [2121] = {.lex_state = 66}, - [2122] = {.lex_state = 875}, - [2123] = {.lex_state = 875}, - [2124] = {.lex_state = 875, .external_lex_state = 2}, - [2125] = {.lex_state = 66}, - [2126] = {.lex_state = 875}, - [2127] = {.lex_state = 66}, - [2128] = {.lex_state = 48}, - [2129] = {.lex_state = 48}, - [2130] = {.lex_state = 875}, - [2131] = {.lex_state = 875}, - [2132] = {.lex_state = 102}, - [2133] = {.lex_state = 66}, - [2134] = {.lex_state = 66}, - [2135] = {.lex_state = 48}, - [2136] = {.lex_state = 66}, - [2137] = {.lex_state = 875}, - [2138] = {.lex_state = 102}, - [2139] = {.lex_state = 875}, - [2140] = {.lex_state = 102}, - [2141] = {.lex_state = 48}, - [2142] = {.lex_state = 875}, - [2143] = {.lex_state = 875}, - [2144] = {.lex_state = 875}, - [2145] = {.lex_state = 875}, - [2146] = {.lex_state = 56}, - [2147] = {.lex_state = 875}, - [2148] = {.lex_state = 34}, - [2149] = {.lex_state = 34}, - [2150] = {.lex_state = 875}, - [2151] = {.lex_state = 66}, - [2152] = {.lex_state = 875}, - [2153] = {.lex_state = 875}, - [2154] = {.lex_state = 102}, - [2155] = {.lex_state = 875}, - [2156] = {.lex_state = 875}, - [2157] = {.lex_state = 875}, - [2158] = {.lex_state = 102}, - [2159] = {.lex_state = 875}, - [2160] = {.lex_state = 875}, - [2161] = {.lex_state = 57, .external_lex_state = 2}, - [2162] = {.lex_state = 34}, - [2163] = {.lex_state = 875}, - [2164] = {.lex_state = 875}, - [2165] = {.lex_state = 57, .external_lex_state = 2}, - [2166] = {.lex_state = 875}, - [2167] = {.lex_state = 102}, - [2168] = {.lex_state = 102}, - [2169] = {.lex_state = 48}, - [2170] = {.lex_state = 875}, - [2171] = {.lex_state = 875}, - [2172] = {.lex_state = 875}, - [2173] = {.lex_state = 875}, - [2174] = {.lex_state = 875}, - [2175] = {.lex_state = 875}, - [2176] = {.lex_state = 875}, - [2177] = {.lex_state = 875}, - [2178] = {.lex_state = 66}, - [2179] = {.lex_state = 56}, - [2180] = {.lex_state = 66}, - [2181] = {.lex_state = 66}, - [2182] = {.lex_state = 875}, - [2183] = {.lex_state = 875}, - [2184] = {.lex_state = 875}, - [2185] = {.lex_state = 102}, - [2186] = {.lex_state = 48}, - [2187] = {.lex_state = 102}, - [2188] = {.lex_state = 875}, - [2189] = {.lex_state = 875}, - [2190] = {.lex_state = 34}, - [2191] = {.lex_state = 66}, - [2192] = {.lex_state = 34}, - [2193] = {.lex_state = 875}, - [2194] = {.lex_state = 875}, - [2195] = {.lex_state = 875}, - [2196] = {.lex_state = 875}, - [2197] = {.lex_state = 66}, - [2198] = {.lex_state = 875}, - [2199] = {.lex_state = 66}, - [2200] = {.lex_state = 875}, - [2201] = {.lex_state = 66}, - [2202] = {.lex_state = 102}, - [2203] = {.lex_state = 875}, - [2204] = {.lex_state = 875}, - [2205] = {.lex_state = 875}, - [2206] = {.lex_state = 875}, - [2207] = {.lex_state = 875}, - [2208] = {.lex_state = 875}, - [2209] = {.lex_state = 875}, - [2210] = {.lex_state = 875}, - [2211] = {.lex_state = 875}, - [2212] = {.lex_state = 875}, - [2213] = {.lex_state = 875}, - [2214] = {.lex_state = 875}, - [2215] = {.lex_state = 875}, - [2216] = {.lex_state = 875}, - [2217] = {.lex_state = 875}, - [2218] = {.lex_state = 875}, - [2219] = {.lex_state = 875}, - [2220] = {.lex_state = 875}, - [2221] = {.lex_state = 875}, - [2222] = {.lex_state = 875}, - [2223] = {.lex_state = 875}, - [2224] = {.lex_state = 875}, - [2225] = {.lex_state = 875}, - [2226] = {.lex_state = 875}, - [2227] = {.lex_state = 875}, - [2228] = {.lex_state = 875}, - [2229] = {.lex_state = 875}, - [2230] = {.lex_state = 875}, - [2231] = {.lex_state = 875}, - [2232] = {.lex_state = 875}, - [2233] = {.lex_state = 875}, - [2234] = {.lex_state = 875}, - [2235] = {.lex_state = 875}, - [2236] = {.lex_state = 875}, - [2237] = {.lex_state = 875}, - [2238] = {.lex_state = 875}, - [2239] = {.lex_state = 875}, - [2240] = {.lex_state = 58}, - [2241] = {.lex_state = 875}, - [2242] = {.lex_state = 875}, - [2243] = {.lex_state = 875}, - [2244] = {.lex_state = 875}, - [2245] = {.lex_state = 875}, - [2246] = {.lex_state = 875}, - [2247] = {.lex_state = 875}, - [2248] = {.lex_state = 875}, - [2249] = {.lex_state = 875}, - [2250] = {.lex_state = 875}, - [2251] = {.lex_state = 875}, - [2252] = {.lex_state = 875}, - [2253] = {.lex_state = 875}, - [2254] = {.lex_state = 875}, - [2255] = {.lex_state = 875}, - [2256] = {.lex_state = 875}, - [2257] = {.lex_state = 875}, - [2258] = {.lex_state = 875}, - [2259] = {.lex_state = 875}, - [2260] = {.lex_state = 875}, - [2261] = {.lex_state = 875}, - [2262] = {.lex_state = 875}, - [2263] = {.lex_state = 875}, - [2264] = {.lex_state = 875}, - [2265] = {.lex_state = 875}, - [2266] = {.lex_state = 875}, - [2267] = {.lex_state = 875}, - [2268] = {.lex_state = 875}, - [2269] = {.lex_state = 875}, - [2270] = {.lex_state = 875}, - [2271] = {.lex_state = 875}, - [2272] = {.lex_state = 875}, - [2273] = {.lex_state = 875}, - [2274] = {.lex_state = 875}, - [2275] = {.lex_state = 875}, - [2276] = {.lex_state = 875}, - [2277] = {.lex_state = 875}, - [2278] = {.lex_state = 875}, - [2279] = {.lex_state = 875}, - [2280] = {.lex_state = 57}, - [2281] = {.lex_state = 875}, - [2282] = {.lex_state = 875}, - [2283] = {.lex_state = 875}, - [2284] = {.lex_state = 875}, - [2285] = {.lex_state = 875}, - [2286] = {.lex_state = 875}, - [2287] = {.lex_state = 875}, - [2288] = {.lex_state = 875}, - [2289] = {.lex_state = 875}, - [2290] = {.lex_state = 57}, - [2291] = {.lex_state = 875}, - [2292] = {.lex_state = 57, .external_lex_state = 2}, - [2293] = {.lex_state = 875}, - [2294] = {.lex_state = 875}, - [2295] = {.lex_state = 875}, - [2296] = {.lex_state = 875}, - [2297] = {.lex_state = 57}, - [2298] = {.lex_state = 875}, - [2299] = {.lex_state = 875}, - [2300] = {.lex_state = 875}, - [2301] = {.lex_state = 875}, - [2302] = {.lex_state = 875}, - [2303] = {.lex_state = 875}, - [2304] = {.lex_state = 875}, - [2305] = {.lex_state = 875, .external_lex_state = 2}, - [2306] = {.lex_state = 875}, - [2307] = {.lex_state = 875}, - [2308] = {.lex_state = 875}, - [2309] = {.lex_state = 875}, - [2310] = {.lex_state = 875}, - [2311] = {.lex_state = 875}, - [2312] = {.lex_state = 875}, - [2313] = {.lex_state = 875}, - [2314] = {.lex_state = 875}, - [2315] = {.lex_state = 875}, - [2316] = {.lex_state = 875}, - [2317] = {.lex_state = 875}, - [2318] = {.lex_state = 875}, - [2319] = {.lex_state = 875}, - [2320] = {.lex_state = 875}, - [2321] = {.lex_state = 57}, - [2322] = {.lex_state = 875}, - [2323] = {.lex_state = 875}, - [2324] = {.lex_state = 875}, - [2325] = {.lex_state = 875}, - [2326] = {.lex_state = 875}, - [2327] = {.lex_state = 875}, - [2328] = {.lex_state = 875}, - [2329] = {.lex_state = 875}, - [2330] = {.lex_state = 875}, - [2331] = {.lex_state = 875}, - [2332] = {.lex_state = 875}, - [2333] = {.lex_state = 57}, - [2334] = {.lex_state = 875, .external_lex_state = 2}, - [2335] = {.lex_state = 58}, - [2336] = {.lex_state = 58}, - [2337] = {.lex_state = 875, .external_lex_state = 2}, - [2338] = {.lex_state = 98}, - [2339] = {.lex_state = 57}, - [2340] = {.lex_state = 875, .external_lex_state = 2}, - [2341] = {.lex_state = 875, .external_lex_state = 2}, - [2342] = {.lex_state = 58}, - [2343] = {.lex_state = 58}, - [2344] = {.lex_state = 58}, - [2345] = {.lex_state = 875}, - [2346] = {.lex_state = 112}, - [2347] = {.lex_state = 875, .external_lex_state = 2}, - [2348] = {.lex_state = 58}, - [2349] = {.lex_state = 875, .external_lex_state = 2}, - [2350] = {.lex_state = 875, .external_lex_state = 2}, - [2351] = {.lex_state = 58}, - [2352] = {.lex_state = 875, .external_lex_state = 2}, - [2353] = {.lex_state = 875, .external_lex_state = 2}, - [2354] = {.lex_state = 112}, - [2355] = {.lex_state = 112}, - [2356] = {.lex_state = 875}, - [2357] = {.lex_state = 875, .external_lex_state = 2}, - [2358] = {.lex_state = 875, .external_lex_state = 2}, - [2359] = {.lex_state = 48}, - [2360] = {.lex_state = 58}, - [2361] = {.lex_state = 48}, - [2362] = {.lex_state = 875, .external_lex_state = 2}, - [2363] = {.lex_state = 58}, - [2364] = {.lex_state = 875, .external_lex_state = 2}, - [2365] = {.lex_state = 58}, - [2366] = {.lex_state = 875, .external_lex_state = 2}, - [2367] = {.lex_state = 48}, - [2368] = {.lex_state = 875}, - [2369] = {.lex_state = 875, .external_lex_state = 2}, - [2370] = {.lex_state = 112}, - [2371] = {.lex_state = 112}, - [2372] = {.lex_state = 66}, - [2373] = {.lex_state = 875}, - [2374] = {.lex_state = 66}, - [2375] = {.lex_state = 875}, - [2376] = {.lex_state = 66}, - [2377] = {.lex_state = 66}, - [2378] = {.lex_state = 66}, - [2379] = {.lex_state = 66}, - [2380] = {.lex_state = 875}, - [2381] = {.lex_state = 66}, - [2382] = {.lex_state = 66}, - [2383] = {.lex_state = 66}, - [2384] = {.lex_state = 875}, - [2385] = {.lex_state = 66}, - [2386] = {.lex_state = 875}, - [2387] = {.lex_state = 59}, - [2388] = {.lex_state = 875}, - [2389] = {.lex_state = 875}, - [2390] = {.lex_state = 59}, - [2391] = {.lex_state = 875}, - [2392] = {.lex_state = 875}, - [2393] = {.lex_state = 875}, - [2394] = {.lex_state = 66}, - [2395] = {.lex_state = 875}, - [2396] = {.lex_state = 875}, - [2397] = {.lex_state = 48}, - [2398] = {.lex_state = 875}, - [2399] = {.lex_state = 875}, - [2400] = {.lex_state = 875}, - [2401] = {.lex_state = 875}, - [2402] = {.lex_state = 875}, - [2403] = {.lex_state = 875}, - [2404] = {.lex_state = 875}, - [2405] = {.lex_state = 875}, - [2406] = {.lex_state = 875}, - [2407] = {.lex_state = 875}, - [2408] = {.lex_state = 875}, - [2409] = {.lex_state = 48}, - [2410] = {.lex_state = 66}, - [2411] = {.lex_state = 66}, - [2412] = {.lex_state = 875}, - [2413] = {.lex_state = 875}, - [2414] = {.lex_state = 66}, - [2415] = {.lex_state = 66}, - [2416] = {.lex_state = 66}, - [2417] = {.lex_state = 48}, - [2418] = {.lex_state = 875}, - [2419] = {.lex_state = 875}, - [2420] = {.lex_state = 875}, - [2421] = {.lex_state = 875}, - [2422] = {.lex_state = 875, .external_lex_state = 2}, - [2423] = {.lex_state = 875}, - [2424] = {.lex_state = 875}, - [2425] = {.lex_state = 875}, - [2426] = {.lex_state = 875}, - [2427] = {.lex_state = 66}, - [2428] = {.lex_state = 875}, - [2429] = {.lex_state = 875}, - [2430] = {.lex_state = 875}, - [2431] = {.lex_state = 66}, - [2432] = {.lex_state = 875}, - [2433] = {.lex_state = 875}, - [2434] = {.lex_state = 875}, - [2435] = {.lex_state = 59}, - [2436] = {.lex_state = 875}, - [2437] = {.lex_state = 875}, - [2438] = {.lex_state = 875}, - [2439] = {.lex_state = 66}, - [2440] = {.lex_state = 59}, - [2441] = {.lex_state = 59}, - [2442] = {.lex_state = 875}, - [2443] = {.lex_state = 66}, - [2444] = {.lex_state = 875}, - [2445] = {.lex_state = 66}, - [2446] = {.lex_state = 66}, - [2447] = {.lex_state = 66}, - [2448] = {.lex_state = 875}, - [2449] = {.lex_state = 875}, - [2450] = {.lex_state = 875}, - [2451] = {.lex_state = 875}, - [2452] = {.lex_state = 66}, - [2453] = {.lex_state = 875}, - [2454] = {.lex_state = 66}, - [2455] = {.lex_state = 59}, - [2456] = {.lex_state = 59}, - [2457] = {.lex_state = 875}, - [2458] = {.lex_state = 875}, - [2459] = {.lex_state = 66}, - [2460] = {.lex_state = 875}, - [2461] = {.lex_state = 66}, - [2462] = {.lex_state = 875}, - [2463] = {.lex_state = 66}, - [2464] = {.lex_state = 66}, - [2465] = {.lex_state = 875}, - [2466] = {.lex_state = 875}, - [2467] = {.lex_state = 66}, - [2468] = {.lex_state = 66}, - [2469] = {.lex_state = 875}, - [2470] = {.lex_state = 66}, - [2471] = {.lex_state = 66}, - [2472] = {.lex_state = 875}, - [2473] = {.lex_state = 875}, - [2474] = {.lex_state = 66}, - [2475] = {.lex_state = 875}, - [2476] = {.lex_state = 66}, - [2477] = {.lex_state = 59}, - [2478] = {.lex_state = 66}, - [2479] = {.lex_state = 66}, - [2480] = {.lex_state = 59}, - [2481] = {.lex_state = 875}, - [2482] = {.lex_state = 66}, - [2483] = {.lex_state = 875}, - [2484] = {.lex_state = 875}, - [2485] = {.lex_state = 875}, - [2486] = {.lex_state = 66}, - [2487] = {.lex_state = 875}, - [2488] = {.lex_state = 875}, - [2489] = {.lex_state = 66}, - [2490] = {.lex_state = 875}, - [2491] = {.lex_state = 66}, - [2492] = {.lex_state = 48}, - [2493] = {.lex_state = 48}, - [2494] = {.lex_state = 875}, - [2495] = {.lex_state = 875}, - [2496] = {.lex_state = 875}, - [2497] = {.lex_state = 48}, - [2498] = {.lex_state = 48}, - [2499] = {.lex_state = 48}, - [2500] = {.lex_state = 875}, - [2501] = {.lex_state = 66}, - [2502] = {.lex_state = 48}, - [2503] = {.lex_state = 66}, - [2504] = {.lex_state = 48}, - [2505] = {.lex_state = 48}, - [2506] = {.lex_state = 48}, - [2507] = {.lex_state = 875}, - [2508] = {.lex_state = 875}, - [2509] = {.lex_state = 66}, - [2510] = {.lex_state = 66}, - [2511] = {.lex_state = 59}, - [2512] = {.lex_state = 48}, - [2513] = {.lex_state = 875}, - [2514] = {.lex_state = 875}, - [2515] = {.lex_state = 875}, - [2516] = {.lex_state = 875}, - [2517] = {.lex_state = 875}, - [2518] = {.lex_state = 875}, - [2519] = {.lex_state = 875}, - [2520] = {.lex_state = 875}, - [2521] = {.lex_state = 875}, - [2522] = {.lex_state = 875}, - [2523] = {.lex_state = 875}, - [2524] = {.lex_state = 875}, - [2525] = {.lex_state = 875}, - [2526] = {.lex_state = 875}, - [2527] = {.lex_state = 875}, - [2528] = {.lex_state = 875}, - [2529] = {.lex_state = 875}, - [2530] = {.lex_state = 875}, - [2531] = {.lex_state = 875}, - [2532] = {.lex_state = 875}, - [2533] = {.lex_state = 875}, - [2534] = {.lex_state = 875}, - [2535] = {.lex_state = 875}, - [2536] = {.lex_state = 875}, - [2537] = {.lex_state = 875}, - [2538] = {.lex_state = 875}, - [2539] = {.lex_state = 875}, - [2540] = {.lex_state = 875}, - [2541] = {.lex_state = 875}, - [2542] = {.lex_state = 875}, - [2543] = {.lex_state = 875, .external_lex_state = 2}, - [2544] = {.lex_state = 875}, - [2545] = {.lex_state = 875}, - [2546] = {.lex_state = 875}, - [2547] = {.lex_state = 875}, - [2548] = {.lex_state = 875}, - [2549] = {.lex_state = 875}, - [2550] = {.lex_state = 875}, - [2551] = {.lex_state = 875}, - [2552] = {.lex_state = 875}, - [2553] = {.lex_state = 875}, - [2554] = {.lex_state = 875}, - [2555] = {.lex_state = 48}, - [2556] = {.lex_state = 56}, - [2557] = {.lex_state = 875}, - [2558] = {.lex_state = 66}, - [2559] = {.lex_state = 875}, - [2560] = {.lex_state = 875}, - [2561] = {.lex_state = 875}, - [2562] = {.lex_state = 875}, - [2563] = {.lex_state = 875}, - [2564] = {.lex_state = 875}, - [2565] = {.lex_state = 875}, - [2566] = {.lex_state = 875}, - [2567] = {.lex_state = 48}, - [2568] = {.lex_state = 875}, - [2569] = {.lex_state = 875}, - [2570] = {.lex_state = 875}, - [2571] = {.lex_state = 875}, - [2572] = {.lex_state = 875}, - [2573] = {.lex_state = 875}, - [2574] = {.lex_state = 875}, - [2575] = {.lex_state = 875}, - [2576] = {.lex_state = 875}, - [2577] = {.lex_state = 875}, - [2578] = {.lex_state = 875}, - [2579] = {.lex_state = 875}, - [2580] = {.lex_state = 875}, - [2581] = {.lex_state = 875}, - [2582] = {.lex_state = 875}, - [2583] = {.lex_state = 875}, - [2584] = {.lex_state = 875, .external_lex_state = 2}, - [2585] = {.lex_state = 875}, - [2586] = {.lex_state = 875}, - [2587] = {.lex_state = 875}, - [2588] = {.lex_state = 875}, - [2589] = {.lex_state = 875}, - [2590] = {.lex_state = 875}, - [2591] = {.lex_state = 875}, - [2592] = {.lex_state = 875}, - [2593] = {.lex_state = 875}, - [2594] = {.lex_state = 875}, - [2595] = {.lex_state = 875}, - [2596] = {.lex_state = 109}, - [2597] = {.lex_state = 875}, - [2598] = {.lex_state = 875}, - [2599] = {.lex_state = 875}, - [2600] = {.lex_state = 875}, - [2601] = {.lex_state = 875}, - [2602] = {.lex_state = 875}, - [2603] = {.lex_state = 875}, - [2604] = {.lex_state = 875}, - [2605] = {.lex_state = 875}, - [2606] = {.lex_state = 875}, - [2607] = {.lex_state = 875}, - [2608] = {.lex_state = 875}, - [2609] = {.lex_state = 875}, - [2610] = {.lex_state = 875}, - [2611] = {.lex_state = 875}, - [2612] = {.lex_state = 875}, - [2613] = {.lex_state = 875}, - [2614] = {.lex_state = 875}, - [2615] = {.lex_state = 875}, - [2616] = {.lex_state = 875}, - [2617] = {.lex_state = 875}, - [2618] = {.lex_state = 875}, - [2619] = {.lex_state = 875}, - [2620] = {.lex_state = 875}, - [2621] = {.lex_state = 875}, - [2622] = {.lex_state = 875}, - [2623] = {.lex_state = 875}, - [2624] = {.lex_state = 875}, - [2625] = {.lex_state = 875}, - [2626] = {.lex_state = 875}, - [2627] = {.lex_state = 875}, - [2628] = {.lex_state = 875}, - [2629] = {.lex_state = 875}, - [2630] = {.lex_state = 875}, - [2631] = {.lex_state = 875, .external_lex_state = 2}, - [2632] = {.lex_state = 875}, - [2633] = {.lex_state = 875}, - [2634] = {.lex_state = 875}, - [2635] = {.lex_state = 109}, - [2636] = {.lex_state = 59}, - [2637] = {.lex_state = 875}, - [2638] = {.lex_state = 875}, - [2639] = {.lex_state = 875}, - [2640] = {.lex_state = 875}, - [2641] = {.lex_state = 875}, - [2642] = {.lex_state = 98}, - [2643] = {.lex_state = 875}, - [2644] = {.lex_state = 875}, - [2645] = {.lex_state = 875}, - [2646] = {.lex_state = 875}, - [2647] = {.lex_state = 875}, - [2648] = {.lex_state = 875}, - [2649] = {.lex_state = 875}, - [2650] = {.lex_state = 875}, - [2651] = {.lex_state = 875}, - [2652] = {.lex_state = 875}, - [2653] = {.lex_state = 875}, - [2654] = {.lex_state = 56}, - [2655] = {.lex_state = 875}, - [2656] = {.lex_state = 875}, - [2657] = {.lex_state = 56}, - [2658] = {.lex_state = 875}, - [2659] = {.lex_state = 875}, - [2660] = {.lex_state = 875}, - [2661] = {.lex_state = 875}, - [2662] = {.lex_state = 875}, - [2663] = {.lex_state = 875}, - [2664] = {.lex_state = 875}, - [2665] = {.lex_state = 875}, - [2666] = {.lex_state = 875}, - [2667] = {.lex_state = 109}, - [2668] = {.lex_state = 875}, - [2669] = {.lex_state = 875}, - [2670] = {.lex_state = 875}, - [2671] = {.lex_state = 875}, - [2672] = {.lex_state = 875}, - [2673] = {.lex_state = 875}, - [2674] = {.lex_state = 875}, - [2675] = {.lex_state = 875}, - [2676] = {.lex_state = 875}, - [2677] = {.lex_state = 98}, - [2678] = {.lex_state = 875}, - [2679] = {.lex_state = 875}, - [2680] = {.lex_state = 875}, - [2681] = {.lex_state = 875}, - [2682] = {.lex_state = 875}, - [2683] = {.lex_state = 875}, - [2684] = {.lex_state = 875}, - [2685] = {.lex_state = 875, .external_lex_state = 2}, - [2686] = {.lex_state = 875}, - [2687] = {.lex_state = 875}, - [2688] = {.lex_state = 875}, - [2689] = {.lex_state = 875}, - [2690] = {.lex_state = 875}, - [2691] = {.lex_state = 875}, - [2692] = {.lex_state = 875}, - [2693] = {.lex_state = 66}, - [2694] = {.lex_state = 875}, - [2695] = {.lex_state = 875}, - [2696] = {.lex_state = 875}, - [2697] = {.lex_state = 875}, - [2698] = {.lex_state = 875}, - [2699] = {.lex_state = 875, .external_lex_state = 2}, - [2700] = {.lex_state = 875}, - [2701] = {.lex_state = 875}, - [2702] = {.lex_state = 58}, - [2703] = {.lex_state = 875}, - [2704] = {.lex_state = 875}, - [2705] = {.lex_state = 875}, - [2706] = {.lex_state = 875}, - [2707] = {.lex_state = 875}, - [2708] = {.lex_state = 58}, - [2709] = {.lex_state = 875}, - [2710] = {.lex_state = 875}, - [2711] = {.lex_state = 875}, - [2712] = {.lex_state = 875}, - [2713] = {.lex_state = 97}, - [2714] = {.lex_state = 875}, - [2715] = {.lex_state = 97}, - [2716] = {.lex_state = 875}, - [2717] = {.lex_state = 875}, - [2718] = {.lex_state = 875, .external_lex_state = 2}, - [2719] = {.lex_state = 58}, - [2720] = {.lex_state = 875}, - [2721] = {.lex_state = 875}, - [2722] = {.lex_state = 875}, - [2723] = {.lex_state = 114}, - [2724] = {.lex_state = 875}, - [2725] = {.lex_state = 875}, - [2726] = {.lex_state = 875}, - [2727] = {.lex_state = 875}, - [2728] = {.lex_state = 875}, - [2729] = {.lex_state = 875}, - [2730] = {.lex_state = 875}, - [2731] = {.lex_state = 58}, - [2732] = {.lex_state = 97}, - [2733] = {.lex_state = 875}, - [2734] = {.lex_state = 875}, - [2735] = {.lex_state = 875}, - [2736] = {.lex_state = 875}, - [2737] = {.lex_state = 875, .external_lex_state = 2}, - [2738] = {.lex_state = 875}, - [2739] = {.lex_state = 875}, - [2740] = {.lex_state = 875}, - [2741] = {.lex_state = 875}, - [2742] = {.lex_state = 875, .external_lex_state = 2}, - [2743] = {.lex_state = 875}, - [2744] = {.lex_state = 875, .external_lex_state = 2}, - [2745] = {.lex_state = 875}, - [2746] = {.lex_state = 875}, - [2747] = {.lex_state = 875}, - [2748] = {.lex_state = 875}, - [2749] = {.lex_state = 875}, - [2750] = {.lex_state = 875}, - [2751] = {.lex_state = 875}, - [2752] = {.lex_state = 109}, - [2753] = {.lex_state = 875}, - [2754] = {.lex_state = 875}, - [2755] = {.lex_state = 875}, - [2756] = {.lex_state = 875, .external_lex_state = 2}, - [2757] = {.lex_state = 875}, - [2758] = {.lex_state = 875}, - [2759] = {.lex_state = 58}, - [2760] = {.lex_state = 875}, - [2761] = {.lex_state = 875}, - [2762] = {.lex_state = 58}, - [2763] = {.lex_state = 875}, - [2764] = {.lex_state = 875}, - [2765] = {.lex_state = 875}, - [2766] = {.lex_state = 875, .external_lex_state = 2}, - [2767] = {.lex_state = 97}, - [2768] = {.lex_state = 875}, - [2769] = {.lex_state = 97}, - [2770] = {.lex_state = 97}, - [2771] = {.lex_state = 875, .external_lex_state = 2}, - [2772] = {.lex_state = 875}, - [2773] = {.lex_state = 875}, - [2774] = {.lex_state = 875, .external_lex_state = 2}, - [2775] = {.lex_state = 875}, - [2776] = {.lex_state = 58}, - [2777] = {.lex_state = 58}, - [2778] = {.lex_state = 875}, - [2779] = {.lex_state = 875}, - [2780] = {.lex_state = 875}, - [2781] = {.lex_state = 97}, - [2782] = {.lex_state = 875, .external_lex_state = 2}, - [2783] = {.lex_state = 875}, - [2784] = {.lex_state = 875}, - [2785] = {.lex_state = 875}, - [2786] = {.lex_state = 875}, - [2787] = {.lex_state = 875}, - [2788] = {.lex_state = 97}, - [2789] = {.lex_state = 875}, - [2790] = {.lex_state = 875}, - [2791] = {.lex_state = 58}, - [2792] = {.lex_state = 875}, - [2793] = {.lex_state = 875}, - [2794] = {.lex_state = 875}, - [2795] = {.lex_state = 875}, - [2796] = {.lex_state = 875}, - [2797] = {.lex_state = 875}, - [2798] = {.lex_state = 875}, - [2799] = {.lex_state = 875}, - [2800] = {.lex_state = 875}, - [2801] = {.lex_state = 97}, - [2802] = {.lex_state = 875}, - [2803] = {.lex_state = 875}, - [2804] = {.lex_state = 875}, - [2805] = {.lex_state = 875}, - [2806] = {.lex_state = 875}, - [2807] = {.lex_state = 875}, - [2808] = {.lex_state = 875}, - [2809] = {.lex_state = 875}, - [2810] = {.lex_state = 875}, - [2811] = {.lex_state = 875}, - [2812] = {.lex_state = 875}, - [2813] = {.lex_state = 875}, - [2814] = {.lex_state = 875}, - [2815] = {.lex_state = 875}, - [2816] = {.lex_state = 875}, - [2817] = {.lex_state = 875}, - [2818] = {.lex_state = 875}, - [2819] = {.lex_state = 875}, - [2820] = {.lex_state = 875}, - [2821] = {.lex_state = 109}, - [2822] = {.lex_state = 875}, - [2823] = {.lex_state = 875}, - [2824] = {.lex_state = 875}, - [2825] = {.lex_state = 875}, - [2826] = {.lex_state = 875}, - [2827] = {.lex_state = 875}, - [2828] = {.lex_state = 875}, - [2829] = {.lex_state = 875}, - [2830] = {.lex_state = 875}, - [2831] = {.lex_state = 875}, - [2832] = {.lex_state = 875}, - [2833] = {.lex_state = 875}, - [2834] = {.lex_state = 875}, - [2835] = {.lex_state = 875}, - [2836] = {.lex_state = 875}, - [2837] = {.lex_state = 875}, - [2838] = {.lex_state = 58}, - [2839] = {.lex_state = 875}, - [2840] = {.lex_state = 875}, - [2841] = {.lex_state = 875}, - [2842] = {.lex_state = 875}, - [2843] = {.lex_state = 875}, - [2844] = {.lex_state = 875}, - [2845] = {.lex_state = 58}, - [2846] = {.lex_state = 875}, - [2847] = {.lex_state = 875, .external_lex_state = 2}, - [2848] = {.lex_state = 875}, - [2849] = {.lex_state = 875}, - [2850] = {.lex_state = 58}, - [2851] = {.lex_state = 875}, - [2852] = {.lex_state = 875}, - [2853] = {.lex_state = 58}, - [2854] = {.lex_state = 875}, - [2855] = {.lex_state = 875}, - [2856] = {.lex_state = 875}, - [2857] = {.lex_state = 875}, - [2858] = {.lex_state = 875}, - [2859] = {.lex_state = 875}, - [2860] = {.lex_state = 875, .external_lex_state = 2}, - [2861] = {.lex_state = 875}, - [2862] = {.lex_state = 875}, - [2863] = {.lex_state = 875}, - [2864] = {.lex_state = 875}, - [2865] = {.lex_state = 875}, - [2866] = {.lex_state = 875}, - [2867] = {.lex_state = 97}, - [2868] = {.lex_state = 875}, - [2869] = {.lex_state = 875}, - [2870] = {.lex_state = 875}, - [2871] = {.lex_state = 875}, - [2872] = {.lex_state = 875}, - [2873] = {.lex_state = 875}, - [2874] = {.lex_state = 875}, - [2875] = {.lex_state = 875}, - [2876] = {.lex_state = 875}, - [2877] = {.lex_state = 875}, - [2878] = {.lex_state = 875}, - [2879] = {.lex_state = 875}, - [2880] = {.lex_state = 875}, - [2881] = {.lex_state = 875}, - [2882] = {.lex_state = 875}, - [2883] = {.lex_state = 875}, - [2884] = {.lex_state = 58}, - [2885] = {.lex_state = 875}, - [2886] = {.lex_state = 875}, - [2887] = {.lex_state = 97}, - [2888] = {.lex_state = 113}, - [2889] = {.lex_state = 53}, - [2890] = {.lex_state = 57}, - [2891] = {.lex_state = 65}, - [2892] = {.lex_state = 57}, - [2893] = {.lex_state = 55}, - [2894] = {.lex_state = 875}, - [2895] = {.lex_state = 875}, - [2896] = {.lex_state = 57}, - [2897] = {.lex_state = 58}, - [2898] = {.lex_state = 875}, - [2899] = {.lex_state = 875}, - [2900] = {.lex_state = 48}, - [2901] = {.lex_state = 875}, - [2902] = {.lex_state = 875}, - [2903] = {.lex_state = 875}, - [2904] = {.lex_state = 48}, - [2905] = {.lex_state = 875}, - [2906] = {.lex_state = 875}, - [2907] = {.lex_state = 99}, - [2908] = {.lex_state = 875}, - [2909] = {.lex_state = 53}, - [2910] = {.lex_state = 875}, - [2911] = {.lex_state = 53}, - [2912] = {.lex_state = 48}, - [2913] = {.lex_state = 875}, - [2914] = {.lex_state = 875}, - [2915] = {.lex_state = 875}, - [2916] = {.lex_state = 113}, - [2917] = {.lex_state = 58}, - [2918] = {.lex_state = 55}, - [2919] = {.lex_state = 875}, - [2920] = {.lex_state = 875}, - [2921] = {.lex_state = 875}, - [2922] = {.lex_state = 48}, - [2923] = {.lex_state = 53}, - [2924] = {.lex_state = 875}, - [2925] = {.lex_state = 875}, - [2926] = {.lex_state = 875}, - [2927] = {.lex_state = 58}, - [2928] = {.lex_state = 875}, - [2929] = {.lex_state = 875}, - [2930] = {.lex_state = 55}, - [2931] = {.lex_state = 875}, - [2932] = {.lex_state = 48}, - [2933] = {.lex_state = 875}, - [2934] = {.lex_state = 48}, - [2935] = {.lex_state = 875}, - [2936] = {.lex_state = 48}, - [2937] = {.lex_state = 875}, - [2938] = {.lex_state = 55}, - [2939] = {.lex_state = 875, .external_lex_state = 2}, - [2940] = {.lex_state = 53}, - [2941] = {.lex_state = 875}, - [2942] = {.lex_state = 113}, - [2943] = {.lex_state = 875}, - [2944] = {.lex_state = 58}, - [2945] = {.lex_state = 53}, - [2946] = {.lex_state = 113}, - [2947] = {.lex_state = 113}, - [2948] = {.lex_state = 55}, - [2949] = {.lex_state = 99}, - [2950] = {.lex_state = 55}, - [2951] = {.lex_state = 53}, - [2952] = {.lex_state = 875}, - [2953] = {.lex_state = 875}, - [2954] = {.lex_state = 55}, - [2955] = {.lex_state = 58}, - [2956] = {.lex_state = 48}, - [2957] = {.lex_state = 875}, - [2958] = {.lex_state = 53}, - [2959] = {.lex_state = 53}, - [2960] = {.lex_state = 875}, - [2961] = {.lex_state = 55}, - [2962] = {.lex_state = 58}, - [2963] = {.lex_state = 875}, - [2964] = {.lex_state = 109}, - [2965] = {.lex_state = 875}, - [2966] = {.lex_state = 875}, - [2967] = {.lex_state = 53}, - [2968] = {.lex_state = 55}, - [2969] = {.lex_state = 875}, - [2970] = {.lex_state = 875, .external_lex_state = 2}, - [2971] = {.lex_state = 65}, - [2972] = {.lex_state = 53}, - [2973] = {.lex_state = 875}, - [2974] = {.lex_state = 875}, - [2975] = {.lex_state = 109}, - [2976] = {.lex_state = 53}, - [2977] = {.lex_state = 53}, - [2978] = {.lex_state = 875}, - [2979] = {.lex_state = 875}, - [2980] = {.lex_state = 875}, - [2981] = {.lex_state = 875}, - [2982] = {.lex_state = 55}, - [2983] = {.lex_state = 875}, - [2984] = {.lex_state = 55}, - [2985] = {.lex_state = 875}, - [2986] = {.lex_state = 65}, - [2987] = {.lex_state = 55}, - [2988] = {.lex_state = 55}, - [2989] = {.lex_state = 875}, - [2990] = {.lex_state = 875}, - [2991] = {.lex_state = 53}, - [2992] = {.lex_state = 875}, - [2993] = {.lex_state = 53}, - [2994] = {.lex_state = 55}, - [2995] = {.lex_state = 65}, - [2996] = {.lex_state = 875}, - [2997] = {.lex_state = 58}, - [2998] = {.lex_state = 875}, - [2999] = {.lex_state = 109}, - [3000] = {.lex_state = 875}, - [3001] = {.lex_state = 875}, - [3002] = {.lex_state = 58}, - [3003] = {.lex_state = 53}, - [3004] = {.lex_state = 55}, - [3005] = {.lex_state = 875}, - [3006] = {.lex_state = 113}, - [3007] = {.lex_state = 99}, - [3008] = {.lex_state = 875}, - [3009] = {.lex_state = 65}, - [3010] = {.lex_state = 875}, - [3011] = {.lex_state = 875}, - [3012] = {.lex_state = 875}, - [3013] = {.lex_state = 875}, - [3014] = {.lex_state = 875}, - [3015] = {.lex_state = 875}, - [3016] = {.lex_state = 875}, - [3017] = {.lex_state = 875}, - [3018] = {.lex_state = 875}, - [3019] = {.lex_state = 113}, - [3020] = {.lex_state = 53}, - [3021] = {.lex_state = 875}, - [3022] = {.lex_state = 55}, - [3023] = {.lex_state = 875}, - [3024] = {.lex_state = 875}, - [3025] = {.lex_state = 875}, - [3026] = {.lex_state = 875}, - [3027] = {.lex_state = 875}, - [3028] = {.lex_state = 875}, - [3029] = {.lex_state = 48}, - [3030] = {.lex_state = 875}, - [3031] = {.lex_state = 875}, - [3032] = {.lex_state = 875}, - [3033] = {.lex_state = 875}, - [3034] = {.lex_state = 875}, - [3035] = {.lex_state = 111}, - [3036] = {.lex_state = 875}, - [3037] = {.lex_state = 875}, - [3038] = {.lex_state = 875}, - [3039] = {.lex_state = 48}, - [3040] = {.lex_state = 875}, - [3041] = {.lex_state = 875}, - [3042] = {.lex_state = 875}, - [3043] = {.lex_state = 54}, - [3044] = {.lex_state = 875}, - [3045] = {.lex_state = 875}, - [3046] = {.lex_state = 111}, - [3047] = {.lex_state = 875}, - [3048] = {.lex_state = 875}, - [3049] = {.lex_state = 108}, - [3050] = {.lex_state = 875}, - [3051] = {.lex_state = 48}, - [3052] = {.lex_state = 875}, - [3053] = {.lex_state = 875}, - [3054] = {.lex_state = 875}, - [3055] = {.lex_state = 875}, - [3056] = {.lex_state = 875}, - [3057] = {.lex_state = 875}, - [3058] = {.lex_state = 875}, - [3059] = {.lex_state = 875}, - [3060] = {.lex_state = 48}, - [3061] = {.lex_state = 875}, - [3062] = {.lex_state = 875}, - [3063] = {.lex_state = 58}, - [3064] = {.lex_state = 875}, - [3065] = {.lex_state = 875}, - [3066] = {.lex_state = 875, .external_lex_state = 2}, - [3067] = {.lex_state = 875, .external_lex_state = 2}, - [3068] = {.lex_state = 58}, - [3069] = {.lex_state = 875}, - [3070] = {.lex_state = 875}, - [3071] = {.lex_state = 48}, - [3072] = {.lex_state = 875}, - [3073] = {.lex_state = 34}, - [3074] = {.lex_state = 875, .external_lex_state = 2}, - [3075] = {.lex_state = 54}, - [3076] = {.lex_state = 875, .external_lex_state = 2}, - [3077] = {.lex_state = 54}, - [3078] = {.lex_state = 34}, - [3079] = {.lex_state = 875}, - [3080] = {.lex_state = 115}, - [3081] = {.lex_state = 875, .external_lex_state = 2}, - [3082] = {.lex_state = 54}, - [3083] = {.lex_state = 875}, - [3084] = {.lex_state = 875}, - [3085] = {.lex_state = 875}, - [3086] = {.lex_state = 875}, - [3087] = {.lex_state = 875}, - [3088] = {.lex_state = 875}, - [3089] = {.lex_state = 875}, - [3090] = {.lex_state = 875, .external_lex_state = 2}, - [3091] = {.lex_state = 875}, - [3092] = {.lex_state = 875}, - [3093] = {.lex_state = 875}, - [3094] = {.lex_state = 875}, - [3095] = {.lex_state = 875}, - [3096] = {.lex_state = 875}, - [3097] = {.lex_state = 875}, - [3098] = {.lex_state = 875}, - [3099] = {.lex_state = 875}, - [3100] = {.lex_state = 875}, - [3101] = {.lex_state = 875}, - [3102] = {.lex_state = 875}, - [3103] = {.lex_state = 875}, - [3104] = {.lex_state = 875, .external_lex_state = 2}, - [3105] = {.lex_state = 875}, - [3106] = {.lex_state = 875}, - [3107] = {.lex_state = 875}, - [3108] = {.lex_state = 875}, - [3109] = {.lex_state = 875}, - [3110] = {.lex_state = 875}, - [3111] = {.lex_state = 875}, - [3112] = {.lex_state = 875}, - [3113] = {.lex_state = 48}, - [3114] = {.lex_state = 875}, - [3115] = {.lex_state = 875}, - [3116] = {.lex_state = 875}, - [3117] = {.lex_state = 875}, - [3118] = {.lex_state = 875}, - [3119] = {.lex_state = 875}, - [3120] = {.lex_state = 875}, - [3121] = {.lex_state = 875}, - [3122] = {.lex_state = 875}, - [3123] = {.lex_state = 875}, - [3124] = {.lex_state = 875}, - [3125] = {.lex_state = 875}, - [3126] = {.lex_state = 875}, - [3127] = {.lex_state = 875}, - [3128] = {.lex_state = 875, .external_lex_state = 2}, - [3129] = {.lex_state = 48, .external_lex_state = 2}, - [3130] = {.lex_state = 875}, - [3131] = {.lex_state = 875}, - [3132] = {.lex_state = 875, .external_lex_state = 2}, - [3133] = {.lex_state = 43}, - [3134] = {.lex_state = 875, .external_lex_state = 2}, - [3135] = {.lex_state = 875}, - [3136] = {.lex_state = 875, .external_lex_state = 2}, - [3137] = {.lex_state = 875}, - [3138] = {.lex_state = 48}, - [3139] = {.lex_state = 48}, - [3140] = {.lex_state = 108}, - [3141] = {.lex_state = 875}, - [3142] = {.lex_state = 875}, - [3143] = {.lex_state = 115}, - [3144] = {.lex_state = 875}, - [3145] = {.lex_state = 875}, - [3146] = {.lex_state = 875}, - [3147] = {.lex_state = 875}, - [3148] = {.lex_state = 43}, - [3149] = {.lex_state = 875}, - [3150] = {.lex_state = 875}, - [3151] = {.lex_state = 875}, - [3152] = {.lex_state = 875}, - [3153] = {.lex_state = 58}, - [3154] = {.lex_state = 875}, - [3155] = {.lex_state = 875}, - [3156] = {.lex_state = 48}, - [3157] = {.lex_state = 115}, - [3158] = {.lex_state = 875}, - [3159] = {.lex_state = 875}, - [3160] = {.lex_state = 875}, - [3161] = {.lex_state = 875}, - [3162] = {.lex_state = 875, .external_lex_state = 2}, - [3163] = {.lex_state = 875}, - [3164] = {.lex_state = 875}, - [3165] = {.lex_state = 875}, - [3166] = {.lex_state = 48}, - [3167] = {.lex_state = 875, .external_lex_state = 2}, - [3168] = {.lex_state = 875}, - [3169] = {.lex_state = 875, .external_lex_state = 2}, - [3170] = {.lex_state = 875}, - [3171] = {.lex_state = 875}, - [3172] = {.lex_state = 875}, - [3173] = {.lex_state = 875}, - [3174] = {.lex_state = 875}, - [3175] = {.lex_state = 54}, - [3176] = {.lex_state = 875}, - [3177] = {.lex_state = 875}, - [3178] = {.lex_state = 875}, - [3179] = {.lex_state = 875}, - [3180] = {.lex_state = 875}, - [3181] = {.lex_state = 875}, - [3182] = {.lex_state = 875}, - [3183] = {.lex_state = 875}, - [3184] = {.lex_state = 875}, - [3185] = {.lex_state = 875}, - [3186] = {.lex_state = 875}, - [3187] = {.lex_state = 875}, - [3188] = {.lex_state = 875}, - [3189] = {.lex_state = 875}, - [3190] = {.lex_state = 111}, - [3191] = {.lex_state = 875}, - [3192] = {.lex_state = 875}, - [3193] = {.lex_state = 875}, - [3194] = {.lex_state = 875}, - [3195] = {.lex_state = 875}, - [3196] = {.lex_state = 875}, - [3197] = {.lex_state = 875}, - [3198] = {.lex_state = 875}, - [3199] = {.lex_state = 875}, - [3200] = {.lex_state = 875}, - [3201] = {.lex_state = 875}, - [3202] = {.lex_state = 875}, - [3203] = {.lex_state = 875}, - [3204] = {.lex_state = 875}, - [3205] = {.lex_state = 48}, - [3206] = {.lex_state = 58}, - [3207] = {.lex_state = 875}, - [3208] = {.lex_state = 875}, - [3209] = {.lex_state = 875}, - [3210] = {.lex_state = 875}, - [3211] = {.lex_state = 875}, - [3212] = {.lex_state = 875}, - [3213] = {.lex_state = 875}, - [3214] = {.lex_state = 875}, - [3215] = {.lex_state = 875}, - [3216] = {.lex_state = 875}, - [3217] = {.lex_state = 875}, - [3218] = {.lex_state = 875}, - [3219] = {.lex_state = 875}, - [3220] = {.lex_state = 875}, - [3221] = {.lex_state = 875}, - [3222] = {.lex_state = 875}, - [3223] = {.lex_state = 875}, - [3224] = {.lex_state = 43}, - [3225] = {.lex_state = 875}, - [3226] = {.lex_state = 875}, - [3227] = {.lex_state = 875}, - [3228] = {.lex_state = 48}, - [3229] = {.lex_state = 875}, - [3230] = {.lex_state = 875}, - [3231] = {.lex_state = 115}, - [3232] = {.lex_state = 875}, - [3233] = {.lex_state = 43}, - [3234] = {.lex_state = 875}, - [3235] = {.lex_state = 875}, - [3236] = {.lex_state = 875}, - [3237] = {.lex_state = 111}, - [3238] = {.lex_state = 875}, - [3239] = {.lex_state = 48}, - [3240] = {.lex_state = 48}, - [3241] = {.lex_state = 48}, - [3242] = {.lex_state = 875}, - [3243] = {.lex_state = 875}, - [3244] = {.lex_state = 875}, - [3245] = {.lex_state = 875}, - [3246] = {.lex_state = 115}, - [3247] = {.lex_state = 875, .external_lex_state = 2}, - [3248] = {.lex_state = 875}, - [3249] = {.lex_state = 875}, - [3250] = {.lex_state = 875}, - [3251] = {.lex_state = 875, .external_lex_state = 2}, - [3252] = {.lex_state = 875}, - [3253] = {.lex_state = 875}, - [3254] = {.lex_state = 875}, - [3255] = {.lex_state = 875}, - [3256] = {.lex_state = 875}, - [3257] = {.lex_state = 54}, - [3258] = {.lex_state = 43}, - [3259] = {.lex_state = 875}, - [3260] = {.lex_state = 875}, - [3261] = {.lex_state = 875}, - [3262] = {.lex_state = 875}, - [3263] = {.lex_state = 875}, - [3264] = {.lex_state = 875}, - [3265] = {.lex_state = 875}, - [3266] = {.lex_state = 875}, - [3267] = {.lex_state = 875}, - [3268] = {.lex_state = 875}, - [3269] = {.lex_state = 875}, - [3270] = {.lex_state = 875}, - [3271] = {.lex_state = 875}, - [3272] = {.lex_state = 875}, - [3273] = {.lex_state = 875}, - [3274] = {.lex_state = 875}, - [3275] = {.lex_state = 875}, - [3276] = {.lex_state = 875}, - [3277] = {.lex_state = 875}, - [3278] = {.lex_state = 875}, - [3279] = {.lex_state = 875}, - [3280] = {.lex_state = 875}, - [3281] = {.lex_state = 875}, - [3282] = {.lex_state = 875}, - [3283] = {.lex_state = 875}, - [3284] = {.lex_state = 875}, - [3285] = {.lex_state = 875}, - [3286] = {.lex_state = 48}, - [3287] = {.lex_state = 875}, - [3288] = {.lex_state = 875}, - [3289] = {.lex_state = 875}, - [3290] = {.lex_state = 875}, - [3291] = {.lex_state = 875}, - [3292] = {.lex_state = 875}, - [3293] = {.lex_state = 875}, - [3294] = {.lex_state = 875}, - [3295] = {.lex_state = 875}, - [3296] = {.lex_state = 875}, - [3297] = {.lex_state = 875}, - [3298] = {.lex_state = 875}, - [3299] = {.lex_state = 875}, - [3300] = {.lex_state = 875}, - [3301] = {.lex_state = 875}, - [3302] = {.lex_state = 875}, - [3303] = {.lex_state = 875}, - [3304] = {.lex_state = 875}, - [3305] = {.lex_state = 875}, - [3306] = {.lex_state = 875}, - [3307] = {.lex_state = 875}, - [3308] = {.lex_state = 875}, - [3309] = {.lex_state = 875}, - [3310] = {.lex_state = 875}, - [3311] = {.lex_state = 875}, - [3312] = {.lex_state = 875}, - [3313] = {.lex_state = 875}, - [3314] = {.lex_state = 875, .external_lex_state = 2}, - [3315] = {.lex_state = 875}, - [3316] = {.lex_state = 875}, - [3317] = {.lex_state = 43}, - [3318] = {.lex_state = 875}, - [3319] = {.lex_state = 875}, - [3320] = {.lex_state = 875, .external_lex_state = 2}, - [3321] = {.lex_state = 875}, - [3322] = {.lex_state = 875}, - [3323] = {.lex_state = 875}, - [3324] = {.lex_state = 875}, - [3325] = {.lex_state = 875}, - [3326] = {.lex_state = 875}, - [3327] = {.lex_state = 875}, - [3328] = {.lex_state = 875}, - [3329] = {.lex_state = 115}, - [3330] = {.lex_state = 875}, - [3331] = {.lex_state = 875}, - [3332] = {.lex_state = 875}, - [3333] = {.lex_state = 875}, - [3334] = {.lex_state = 875}, - [3335] = {.lex_state = 43}, - [3336] = {.lex_state = 875}, - [3337] = {.lex_state = 875}, - [3338] = {.lex_state = 875}, - [3339] = {.lex_state = 875}, - [3340] = {.lex_state = 875}, - [3341] = {.lex_state = 875}, - [3342] = {.lex_state = 875}, - [3343] = {.lex_state = 875}, - [3344] = {.lex_state = 875}, - [3345] = {.lex_state = 875}, - [3346] = {.lex_state = 875}, - [3347] = {.lex_state = 875}, - [3348] = {.lex_state = 875}, - [3349] = {.lex_state = 875}, - [3350] = {.lex_state = 875}, - [3351] = {.lex_state = 875}, - [3352] = {.lex_state = 115}, - [3353] = {.lex_state = 875}, - [3354] = {.lex_state = 875}, - [3355] = {.lex_state = 875}, - [3356] = {.lex_state = 875}, - [3357] = {.lex_state = 875}, - [3358] = {.lex_state = 875, .external_lex_state = 2}, - [3359] = {.lex_state = 875}, - [3360] = {.lex_state = 875, .external_lex_state = 2}, - [3361] = {.lex_state = 875, .external_lex_state = 2}, - [3362] = {.lex_state = 875}, - [3363] = {.lex_state = 875, .external_lex_state = 2}, - [3364] = {.lex_state = 875}, - [3365] = {.lex_state = 875}, - [3366] = {.lex_state = 875, .external_lex_state = 2}, - [3367] = {.lex_state = 875}, - [3368] = {.lex_state = 875}, - [3369] = {.lex_state = 875}, - [3370] = {.lex_state = 875}, - [3371] = {.lex_state = 875}, - [3372] = {.lex_state = 875}, - [3373] = {.lex_state = 875, .external_lex_state = 2}, - [3374] = {.lex_state = 875}, - [3375] = {.lex_state = 875}, - [3376] = {.lex_state = 875}, - [3377] = {.lex_state = 875}, - [3378] = {.lex_state = 875}, - [3379] = {.lex_state = 875}, - [3380] = {.lex_state = 875}, - [3381] = {.lex_state = 875}, - [3382] = {.lex_state = 875}, - [3383] = {.lex_state = 875}, - [3384] = {.lex_state = 54}, - [3385] = {.lex_state = 875}, - [3386] = {.lex_state = 875}, - [3387] = {.lex_state = 875}, - [3388] = {.lex_state = 97}, - [3389] = {.lex_state = 875}, - [3390] = {.lex_state = 875}, - [3391] = {.lex_state = 875}, - [3392] = {.lex_state = 875, .external_lex_state = 2}, - [3393] = {.lex_state = 875}, - [3394] = {.lex_state = 875, .external_lex_state = 2}, - [3395] = {.lex_state = 875}, - [3396] = {.lex_state = 875}, - [3397] = {.lex_state = 875, .external_lex_state = 2}, - [3398] = {.lex_state = 875}, - [3399] = {.lex_state = 43}, - [3400] = {.lex_state = 875}, - [3401] = {.lex_state = 875}, - [3402] = {.lex_state = 875}, - [3403] = {.lex_state = 875}, - [3404] = {.lex_state = 875}, - [3405] = {.lex_state = 875}, - [3406] = {.lex_state = 875}, - [3407] = {.lex_state = 875}, - [3408] = {.lex_state = 875}, - [3409] = {.lex_state = 875}, - [3410] = {.lex_state = 875}, - [3411] = {.lex_state = 875}, - [3412] = {.lex_state = 875}, - [3413] = {.lex_state = 875}, - [3414] = {.lex_state = 875}, - [3415] = {.lex_state = 875}, - [3416] = {.lex_state = 875}, - [3417] = {.lex_state = 875}, - [3418] = {.lex_state = 875}, - [3419] = {.lex_state = 875}, - [3420] = {.lex_state = 875}, - [3421] = {.lex_state = 875}, - [3422] = {.lex_state = 875}, - [3423] = {.lex_state = 875}, - [3424] = {.lex_state = 875}, - [3425] = {.lex_state = 875}, - [3426] = {.lex_state = 875}, - [3427] = {.lex_state = 875}, - [3428] = {.lex_state = 875}, - [3429] = {.lex_state = 875}, - [3430] = {.lex_state = 875}, - [3431] = {.lex_state = 875, .external_lex_state = 2}, - [3432] = {.lex_state = 875}, - [3433] = {.lex_state = 875}, - [3434] = {.lex_state = 875}, - [3435] = {.lex_state = 875}, - [3436] = {.lex_state = 875}, - [3437] = {.lex_state = 875}, - [3438] = {.lex_state = 875}, - [3439] = {.lex_state = 875}, - [3440] = {.lex_state = 875}, - [3441] = {.lex_state = 875}, - [3442] = {.lex_state = 875}, - [3443] = {.lex_state = 875}, - [3444] = {.lex_state = 875}, - [3445] = {.lex_state = 875}, - [3446] = {.lex_state = 875}, - [3447] = {.lex_state = 875}, - [3448] = {.lex_state = 875}, - [3449] = {.lex_state = 875}, - [3450] = {.lex_state = 875}, - [3451] = {.lex_state = 875}, - [3452] = {.lex_state = 875}, - [3453] = {.lex_state = 875}, - [3454] = {.lex_state = 875}, - [3455] = {.lex_state = 875}, - [3456] = {.lex_state = 875}, - [3457] = {.lex_state = 875}, - [3458] = {.lex_state = 875}, - [3459] = {.lex_state = 875}, - [3460] = {.lex_state = 875}, - [3461] = {.lex_state = 875}, - [3462] = {.lex_state = 111}, - [3463] = {.lex_state = 875}, - [3464] = {.lex_state = 48}, - [3465] = {.lex_state = 875}, - [3466] = {.lex_state = 875}, - [3467] = {.lex_state = 875}, - [3468] = {.lex_state = 875}, - [3469] = {.lex_state = 43}, - [3470] = {.lex_state = 875}, - [3471] = {.lex_state = 48, .external_lex_state = 2}, - [3472] = {.lex_state = 875}, - [3473] = {.lex_state = 875}, - [3474] = {.lex_state = 43}, - [3475] = {.lex_state = 875}, - [3476] = {.lex_state = 875, .external_lex_state = 2}, - [3477] = {.lex_state = 875}, - [3478] = {.lex_state = 115}, - [3479] = {.lex_state = 48, .external_lex_state = 2}, - [3480] = {.lex_state = 43}, - [3481] = {.lex_state = 66}, - [3482] = {.lex_state = 875, .external_lex_state = 2}, - [3483] = {.lex_state = 875}, - [3484] = {.lex_state = 875}, - [3485] = {.lex_state = 875}, - [3486] = {.lex_state = 875}, - [3487] = {.lex_state = 875}, - [3488] = {.lex_state = 875}, - [3489] = {.lex_state = 875}, - [3490] = {.lex_state = 115}, - [3491] = {.lex_state = 111}, - [3492] = {.lex_state = 875}, - [3493] = {.lex_state = 48}, - [3494] = {.lex_state = 875}, - [3495] = {.lex_state = 875}, - [3496] = {.lex_state = 875}, - [3497] = {.lex_state = 875}, - [3498] = {.lex_state = 115}, - [3499] = {.lex_state = 875, .external_lex_state = 2}, - [3500] = {.lex_state = 875, .external_lex_state = 2}, - [3501] = {.lex_state = 875}, - [3502] = {.lex_state = 111}, - [3503] = {.lex_state = 875}, - [3504] = {.lex_state = 48}, - [3505] = {.lex_state = 54}, - [3506] = {.lex_state = 111}, - [3507] = {.lex_state = 53}, - [3508] = {.lex_state = 111}, - [3509] = {.lex_state = 875}, - [3510] = {.lex_state = 875}, - [3511] = {.lex_state = 875}, - [3512] = {.lex_state = 48}, - [3513] = {.lex_state = 875}, - [3514] = {.lex_state = 875}, - [3515] = {.lex_state = 875}, - [3516] = {.lex_state = 44}, - [3517] = {.lex_state = 875}, - [3518] = {.lex_state = 48}, - [3519] = {.lex_state = 48}, - [3520] = {.lex_state = 48}, - [3521] = {.lex_state = 44}, - [3522] = {.lex_state = 48}, - [3523] = {.lex_state = 48}, - [3524] = {.lex_state = 875}, - [3525] = {.lex_state = 875}, - [3526] = {.lex_state = 48}, - [3527] = {.lex_state = 875}, - [3528] = {.lex_state = 875}, - [3529] = {.lex_state = 48}, - [3530] = {.lex_state = 875}, - [3531] = {.lex_state = 48}, - [3532] = {.lex_state = 48}, - [3533] = {.lex_state = 48}, - [3534] = {.lex_state = 48}, - [3535] = {.lex_state = 875}, - [3536] = {.lex_state = 875}, - [3537] = {.lex_state = 875}, - [3538] = {.lex_state = 48}, - [3539] = {.lex_state = 875}, - [3540] = {.lex_state = 875}, - [3541] = {.lex_state = 875}, - [3542] = {.lex_state = 875}, - [3543] = {.lex_state = 875}, - [3544] = {.lex_state = 875}, - [3545] = {.lex_state = 875}, - [3546] = {.lex_state = 875}, - [3547] = {.lex_state = 875}, - [3548] = {.lex_state = 48}, - [3549] = {.lex_state = 48}, - [3550] = {.lex_state = 48}, - [3551] = {.lex_state = 48}, - [3552] = {.lex_state = 44}, - [3553] = {.lex_state = 48}, - [3554] = {.lex_state = 48}, - [3555] = {.lex_state = 875}, - [3556] = {.lex_state = 48}, - [3557] = {.lex_state = 48}, - [3558] = {.lex_state = 875}, - [3559] = {.lex_state = 48}, - [3560] = {.lex_state = 44}, - [3561] = {.lex_state = 875}, - [3562] = {.lex_state = 875}, - [3563] = {.lex_state = 48}, - [3564] = {.lex_state = 48}, - [3565] = {.lex_state = 48}, - [3566] = {.lex_state = 875}, - [3567] = {.lex_state = 48}, - [3568] = {.lex_state = 48}, - [3569] = {.lex_state = 875}, - [3570] = {.lex_state = 875}, - [3571] = {.lex_state = 48}, - [3572] = {.lex_state = 875}, - [3573] = {.lex_state = 875}, - [3574] = {.lex_state = 48}, - [3575] = {.lex_state = 48}, - [3576] = {.lex_state = 875}, - [3577] = {.lex_state = 875}, - [3578] = {.lex_state = 875}, - [3579] = {.lex_state = 875}, - [3580] = {.lex_state = 875}, - [3581] = {.lex_state = 48}, - [3582] = {.lex_state = 875}, - [3583] = {.lex_state = 48}, - [3584] = {.lex_state = 875}, - [3585] = {.lex_state = 875}, - [3586] = {.lex_state = 875}, - [3587] = {.lex_state = 44}, - [3588] = {.lex_state = 48}, - [3589] = {.lex_state = 48}, - [3590] = {.lex_state = 875}, - [3591] = {.lex_state = 58}, - [3592] = {.lex_state = 875}, - [3593] = {.lex_state = 48}, - [3594] = {.lex_state = 48}, - [3595] = {.lex_state = 48}, - [3596] = {.lex_state = 875}, - [3597] = {.lex_state = 875}, - [3598] = {.lex_state = 875}, - [3599] = {.lex_state = 875}, - [3600] = {.lex_state = 48}, - [3601] = {.lex_state = 48}, - [3602] = {.lex_state = 44}, - [3603] = {.lex_state = 875}, - [3604] = {.lex_state = 875}, - [3605] = {.lex_state = 875}, - [3606] = {.lex_state = 44}, - [3607] = {.lex_state = 48}, - [3608] = {.lex_state = 875}, - [3609] = {.lex_state = 48}, - [3610] = {.lex_state = 46}, - [3611] = {.lex_state = 875}, - [3612] = {.lex_state = 48}, - [3613] = {.lex_state = 48}, - [3614] = {.lex_state = 875}, - [3615] = {.lex_state = 875}, - [3616] = {.lex_state = 875}, - [3617] = {.lex_state = 48}, - [3618] = {.lex_state = 48}, - [3619] = {.lex_state = 48}, - [3620] = {.lex_state = 48}, - [3621] = {.lex_state = 875}, - [3622] = {.lex_state = 875}, - [3623] = {.lex_state = 48}, - [3624] = {.lex_state = 48}, - [3625] = {.lex_state = 875}, - [3626] = {.lex_state = 875}, - [3627] = {.lex_state = 875}, - [3628] = {.lex_state = 875}, - [3629] = {.lex_state = 58}, - [3630] = {.lex_state = 48}, - [3631] = {.lex_state = 875}, - [3632] = {.lex_state = 875}, - [3633] = {.lex_state = 48}, - [3634] = {.lex_state = 44}, - [3635] = {.lex_state = 875}, - [3636] = {.lex_state = 48}, - [3637] = {.lex_state = 48}, - [3638] = {.lex_state = 875}, - [3639] = {.lex_state = 875}, - [3640] = {.lex_state = 48}, - [3641] = {.lex_state = 48}, - [3642] = {.lex_state = 48, .external_lex_state = 2}, - [3643] = {.lex_state = 875}, - [3644] = {.lex_state = 48}, - [3645] = {.lex_state = 875}, - [3646] = {.lex_state = 48}, - [3647] = {.lex_state = 875}, - [3648] = {.lex_state = 875}, - [3649] = {.lex_state = 48}, - [3650] = {.lex_state = 875}, - [3651] = {.lex_state = 48}, - [3652] = {.lex_state = 875}, - [3653] = {.lex_state = 48}, - [3654] = {.lex_state = 875}, - [3655] = {.lex_state = 875}, - [3656] = {.lex_state = 48}, - [3657] = {.lex_state = 48}, - [3658] = {.lex_state = 48}, - [3659] = {.lex_state = 875}, - [3660] = {.lex_state = 875}, - [3661] = {.lex_state = 875}, - [3662] = {.lex_state = 875}, - [3663] = {.lex_state = 875}, - [3664] = {.lex_state = 875}, - [3665] = {.lex_state = 875}, - [3666] = {.lex_state = 875}, - [3667] = {.lex_state = 111}, - [3668] = {.lex_state = 875}, - [3669] = {.lex_state = 48}, - [3670] = {.lex_state = 48}, - [3671] = {.lex_state = 875, .external_lex_state = 2}, - [3672] = {.lex_state = 48}, - [3673] = {.lex_state = 875}, - [3674] = {.lex_state = 875}, - [3675] = {.lex_state = 875}, - [3676] = {.lex_state = 875}, - [3677] = {.lex_state = 875}, - [3678] = {.lex_state = 48}, - [3679] = {.lex_state = 48}, - [3680] = {.lex_state = 875}, - [3681] = {.lex_state = 48}, - [3682] = {.lex_state = 875}, - [3683] = {.lex_state = 875}, - [3684] = {.lex_state = 875}, - [3685] = {.lex_state = 875}, - [3686] = {.lex_state = 875}, - [3687] = {.lex_state = 875}, - [3688] = {.lex_state = 875}, - [3689] = {.lex_state = 875}, - [3690] = {.lex_state = 875}, - [3691] = {.lex_state = 875}, - [3692] = {.lex_state = 875}, - [3693] = {.lex_state = 875}, - [3694] = {.lex_state = 875}, - [3695] = {.lex_state = 875}, - [3696] = {.lex_state = 875}, - [3697] = {.lex_state = 875}, - [3698] = {.lex_state = 875}, - [3699] = {.lex_state = 875}, - [3700] = {.lex_state = 875}, - [3701] = {.lex_state = 875}, - [3702] = {.lex_state = 875}, - [3703] = {.lex_state = 875}, - [3704] = {.lex_state = 875}, - [3705] = {.lex_state = 46}, - [3706] = {.lex_state = 875}, - [3707] = {.lex_state = 875}, - [3708] = {.lex_state = 875}, - [3709] = {.lex_state = 875}, - [3710] = {.lex_state = 111}, - [3711] = {.lex_state = 44}, - [3712] = {.lex_state = 875}, - [3713] = {.lex_state = 48}, - [3714] = {.lex_state = 875}, - [3715] = {.lex_state = 875}, - [3716] = {.lex_state = 875}, - [3717] = {.lex_state = 43}, - [3718] = {.lex_state = 875}, - [3719] = {.lex_state = 875}, - [3720] = {.lex_state = 875}, - [3721] = {.lex_state = 875}, - [3722] = {.lex_state = 46}, - [3723] = {.lex_state = 875}, - [3724] = {.lex_state = 96}, - [3725] = {.lex_state = 875}, - [3726] = {.lex_state = 875}, - [3727] = {.lex_state = 875}, - [3728] = {.lex_state = 875}, - [3729] = {.lex_state = 875}, - [3730] = {.lex_state = 875}, - [3731] = {.lex_state = 875}, - [3732] = {.lex_state = 96}, - [3733] = {.lex_state = 875}, - [3734] = {.lex_state = 875}, - [3735] = {.lex_state = 875}, - [3736] = {.lex_state = 875}, - [3737] = {.lex_state = 875}, - [3738] = {.lex_state = 875}, - [3739] = {.lex_state = 48}, - [3740] = {.lex_state = 48}, - [3741] = {.lex_state = 875}, - [3742] = {.lex_state = 875}, - [3743] = {.lex_state = 875}, - [3744] = {.lex_state = 48}, - [3745] = {.lex_state = 48}, - [3746] = {.lex_state = 875}, - [3747] = {.lex_state = 875}, - [3748] = {.lex_state = 875}, - [3749] = {.lex_state = 875}, - [3750] = {.lex_state = 875}, - [3751] = {.lex_state = 875}, - [3752] = {.lex_state = 875}, - [3753] = {.lex_state = 875}, - [3754] = {.lex_state = 875}, - [3755] = {.lex_state = 875}, - [3756] = {.lex_state = 48}, - [3757] = {.lex_state = 875}, - [3758] = {.lex_state = 875}, - [3759] = {.lex_state = 875}, - [3760] = {.lex_state = 875}, - [3761] = {.lex_state = 48}, - [3762] = {.lex_state = 875}, - [3763] = {.lex_state = 875}, - [3764] = {.lex_state = 48}, - [3765] = {.lex_state = 48}, - [3766] = {.lex_state = 46}, - [3767] = {.lex_state = 875}, - [3768] = {.lex_state = 875}, - [3769] = {.lex_state = 875}, - [3770] = {.lex_state = 58}, - [3771] = {.lex_state = 875}, - [3772] = {.lex_state = 875}, - [3773] = {.lex_state = 875}, - [3774] = {.lex_state = 875}, - [3775] = {.lex_state = 875}, - [3776] = {.lex_state = 875}, - [3777] = {.lex_state = 48}, - [3778] = {.lex_state = 875}, - [3779] = {.lex_state = 875}, - [3780] = {.lex_state = 875}, - [3781] = {.lex_state = 875}, - [3782] = {.lex_state = 48}, - [3783] = {.lex_state = 875}, - [3784] = {.lex_state = 875}, - [3785] = {.lex_state = 875}, - [3786] = {.lex_state = 875}, - [3787] = {.lex_state = 875}, - [3788] = {.lex_state = 875}, - [3789] = {.lex_state = 48}, - [3790] = {.lex_state = 875}, - [3791] = {.lex_state = 48}, - [3792] = {.lex_state = 875}, - [3793] = {.lex_state = 875}, - [3794] = {.lex_state = 48}, - [3795] = {.lex_state = 875}, - [3796] = {.lex_state = 875}, - [3797] = {.lex_state = 875}, - [3798] = {.lex_state = 58}, - [3799] = {.lex_state = 875}, - [3800] = {.lex_state = 875}, - [3801] = {.lex_state = 875}, - [3802] = {.lex_state = 875}, - [3803] = {.lex_state = 875}, - [3804] = {.lex_state = 875}, - [3805] = {.lex_state = 875}, - [3806] = {.lex_state = 875}, - [3807] = {.lex_state = 875}, - [3808] = {.lex_state = 48}, - [3809] = {.lex_state = 875}, - [3810] = {.lex_state = 48}, - [3811] = {.lex_state = 48}, - [3812] = {.lex_state = 875}, - [3813] = {.lex_state = 875}, - [3814] = {.lex_state = 875}, - [3815] = {.lex_state = 58}, - [3816] = {.lex_state = 875}, - [3817] = {.lex_state = 875}, - [3818] = {.lex_state = 875}, - [3819] = {.lex_state = 875}, - [3820] = {.lex_state = 875}, - [3821] = {.lex_state = 875}, - [3822] = {.lex_state = 875}, - [3823] = {.lex_state = 48}, - [3824] = {.lex_state = 48}, - [3825] = {.lex_state = 48}, - [3826] = {.lex_state = 875}, - [3827] = {.lex_state = 875}, - [3828] = {.lex_state = 34}, - [3829] = {.lex_state = 96}, - [3830] = {.lex_state = 48}, - [3831] = {.lex_state = 48}, - [3832] = {.lex_state = 875}, - [3833] = {.lex_state = 875}, - [3834] = {.lex_state = 875}, - [3835] = {.lex_state = 875}, - [3836] = {.lex_state = 48}, - [3837] = {.lex_state = 875}, - [3838] = {.lex_state = 875}, - [3839] = {.lex_state = 875}, - [3840] = {.lex_state = 875}, - [3841] = {.lex_state = 875}, - [3842] = {.lex_state = 875}, - [3843] = {.lex_state = 875, .external_lex_state = 2}, - [3844] = {.lex_state = 875}, - [3845] = {.lex_state = 875}, - [3846] = {.lex_state = 875}, - [3847] = {.lex_state = 875}, - [3848] = {.lex_state = 875}, - [3849] = {.lex_state = 58}, - [3850] = {.lex_state = 875}, - [3851] = {.lex_state = 875}, - [3852] = {.lex_state = 875}, - [3853] = {.lex_state = 875}, - [3854] = {.lex_state = 875}, - [3855] = {.lex_state = 875}, - [3856] = {.lex_state = 875}, - [3857] = {.lex_state = 875}, - [3858] = {.lex_state = 875}, - [3859] = {.lex_state = 48}, - [3860] = {.lex_state = 48}, - [3861] = {.lex_state = 875}, - [3862] = {.lex_state = 875}, - [3863] = {.lex_state = 875}, - [3864] = {.lex_state = 875}, - [3865] = {.lex_state = 875}, - [3866] = {.lex_state = 48}, - [3867] = {.lex_state = 875}, - [3868] = {.lex_state = 96}, - [3869] = {.lex_state = 875}, - [3870] = {.lex_state = 875}, - [3871] = {.lex_state = 875}, - [3872] = {.lex_state = 875}, - [3873] = {.lex_state = 875}, - [3874] = {.lex_state = 875}, - [3875] = {.lex_state = 875}, - [3876] = {.lex_state = 875}, - [3877] = {.lex_state = 48}, - [3878] = {.lex_state = 96}, - [3879] = {.lex_state = 875}, - [3880] = {.lex_state = 875}, - [3881] = {.lex_state = 875}, - [3882] = {.lex_state = 48}, - [3883] = {.lex_state = 875}, - [3884] = {.lex_state = 875}, - [3885] = {.lex_state = 875}, - [3886] = {.lex_state = 48}, - [3887] = {.lex_state = 875}, - [3888] = {.lex_state = 48}, - [3889] = {.lex_state = 875}, - [3890] = {.lex_state = 875}, - [3891] = {.lex_state = 875}, - [3892] = {.lex_state = 875}, - [3893] = {.lex_state = 875}, - [3894] = {.lex_state = 48}, - [3895] = {.lex_state = 48}, - [3896] = {.lex_state = 875}, - [3897] = {.lex_state = 875}, - [3898] = {.lex_state = 875}, - [3899] = {.lex_state = 48}, - [3900] = {.lex_state = 875}, - [3901] = {.lex_state = 875}, - [3902] = {.lex_state = 875}, - [3903] = {.lex_state = 875}, - [3904] = {.lex_state = 875}, - [3905] = {.lex_state = 875}, - [3906] = {.lex_state = 875}, - [3907] = {.lex_state = 875}, - [3908] = {.lex_state = 875}, - [3909] = {.lex_state = 875}, - [3910] = {.lex_state = 875}, - [3911] = {.lex_state = 875}, - [3912] = {.lex_state = 96}, - [3913] = {.lex_state = 48}, - [3914] = {.lex_state = 48}, - [3915] = {.lex_state = 875}, - [3916] = {.lex_state = 875}, - [3917] = {.lex_state = 96}, - [3918] = {.lex_state = 875}, - [3919] = {.lex_state = 875}, - [3920] = {.lex_state = 875}, - [3921] = {.lex_state = 875}, - [3922] = {.lex_state = 875}, - [3923] = {.lex_state = 875}, - [3924] = {.lex_state = 875}, - [3925] = {.lex_state = 875}, - [3926] = {.lex_state = 875}, - [3927] = {.lex_state = 875}, - [3928] = {.lex_state = 875}, - [3929] = {.lex_state = 875}, - [3930] = {.lex_state = 875}, - [3931] = {.lex_state = 48}, - [3932] = {.lex_state = 875}, - [3933] = {.lex_state = 875}, - [3934] = {.lex_state = 48}, - [3935] = {.lex_state = 875}, - [3936] = {.lex_state = 58}, - [3937] = {.lex_state = 875}, - [3938] = {.lex_state = 34}, - [3939] = {.lex_state = 875}, - [3940] = {.lex_state = 875}, - [3941] = {.lex_state = 875}, - [3942] = {.lex_state = 875}, - [3943] = {.lex_state = 110}, - [3944] = {.lex_state = 875}, - [3945] = {.lex_state = 48}, - [3946] = {.lex_state = 875}, - [3947] = {.lex_state = 875}, - [3948] = {.lex_state = 110}, - [3949] = {.lex_state = 875}, - [3950] = {.lex_state = 875}, - [3951] = {.lex_state = 875}, - [3952] = {.lex_state = 875}, - [3953] = {.lex_state = 875}, - [3954] = {.lex_state = 875}, - [3955] = {.lex_state = 48}, - [3956] = {.lex_state = 875}, - [3957] = {.lex_state = 875}, - [3958] = {.lex_state = 48}, - [3959] = {.lex_state = 875}, - [3960] = {.lex_state = 48}, - [3961] = {.lex_state = 48}, - [3962] = {.lex_state = 875}, - [3963] = {.lex_state = 48}, - [3964] = {.lex_state = 48}, - [3965] = {.lex_state = 875}, - [3966] = {.lex_state = 875}, - [3967] = {.lex_state = 875}, - [3968] = {.lex_state = 875, .external_lex_state = 2}, - [3969] = {.lex_state = 875}, - [3970] = {.lex_state = 875}, - [3971] = {.lex_state = 48}, - [3972] = {.lex_state = 43}, - [3973] = {.lex_state = 875}, - [3974] = {.lex_state = 96}, - [3975] = {.lex_state = 875}, - [3976] = {.lex_state = 875}, - [3977] = {.lex_state = 875}, - [3978] = {.lex_state = 875}, - [3979] = {.lex_state = 875}, - [3980] = {.lex_state = 875}, - [3981] = {.lex_state = 875}, - [3982] = {.lex_state = 875}, - [3983] = {.lex_state = 58}, - [3984] = {.lex_state = 875}, - [3985] = {.lex_state = 48}, - [3986] = {.lex_state = 875}, - [3987] = {.lex_state = 48}, - [3988] = {.lex_state = 48}, - [3989] = {.lex_state = 875}, - [3990] = {.lex_state = 48}, - [3991] = {.lex_state = 48}, - [3992] = {.lex_state = 48}, - [3993] = {.lex_state = 48}, - [3994] = {.lex_state = 48}, - [3995] = {.lex_state = 875}, - [3996] = {.lex_state = 875}, - [3997] = {.lex_state = 48}, - [3998] = {.lex_state = 875}, - [3999] = {.lex_state = 875}, - [4000] = {.lex_state = 58}, - [4001] = {.lex_state = 875}, - [4002] = {.lex_state = 875}, - [4003] = {.lex_state = 875}, - [4004] = {.lex_state = 875}, - [4005] = {.lex_state = 875}, - [4006] = {.lex_state = 875}, - [4007] = {.lex_state = 875}, - [4008] = {.lex_state = 875}, - [4009] = {.lex_state = 875}, - [4010] = {.lex_state = 48}, - [4011] = {.lex_state = 875}, - [4012] = {.lex_state = 875}, - [4013] = {.lex_state = 875}, - [4014] = {.lex_state = 875}, - [4015] = {.lex_state = 96}, - [4016] = {.lex_state = 875}, - [4017] = {.lex_state = 875}, - [4018] = {.lex_state = 58}, + [491] = {.lex_state = 32}, + [492] = {.lex_state = 32}, + [493] = {.lex_state = 32}, + [494] = {.lex_state = 32}, + [495] = {.lex_state = 32}, + [496] = {.lex_state = 32}, + [497] = {.lex_state = 32}, + [498] = {.lex_state = 32}, + [499] = {.lex_state = 32}, + [500] = {.lex_state = 32}, + [501] = {.lex_state = 32}, + [502] = {.lex_state = 32}, + [503] = {.lex_state = 32}, + [504] = {.lex_state = 32}, + [505] = {.lex_state = 32}, + [506] = {.lex_state = 32}, + [507] = {.lex_state = 32}, + [508] = {.lex_state = 32}, + [509] = {.lex_state = 32}, + [510] = {.lex_state = 32}, + [511] = {.lex_state = 32}, + [512] = {.lex_state = 32}, + [513] = {.lex_state = 31, .external_lex_state = 4}, + [514] = {.lex_state = 31, .external_lex_state = 4}, + [515] = {.lex_state = 31, .external_lex_state = 4}, + [516] = {.lex_state = 31, .external_lex_state = 4}, + [517] = {.lex_state = 31, .external_lex_state = 4}, + [518] = {.lex_state = 31, .external_lex_state = 4}, + [519] = {.lex_state = 31, .external_lex_state = 4}, + [520] = {.lex_state = 31, .external_lex_state = 4}, + [521] = {.lex_state = 31, .external_lex_state = 4}, + [522] = {.lex_state = 31, .external_lex_state = 4}, + [523] = {.lex_state = 31, .external_lex_state = 1}, + [524] = {.lex_state = 31, .external_lex_state = 1}, + [525] = {.lex_state = 31, .external_lex_state = 4}, + [526] = {.lex_state = 31, .external_lex_state = 2}, + [527] = {.lex_state = 31, .external_lex_state = 2}, + [528] = {.lex_state = 31, .external_lex_state = 3}, + [529] = {.lex_state = 31, .external_lex_state = 2}, + [530] = {.lex_state = 31, .external_lex_state = 3}, + [531] = {.lex_state = 31, .external_lex_state = 2}, + [532] = {.lex_state = 876, .external_lex_state = 4}, + [533] = {.lex_state = 30, .external_lex_state = 4}, + [534] = {.lex_state = 876, .external_lex_state = 4}, + [535] = {.lex_state = 31, .external_lex_state = 2}, + [536] = {.lex_state = 876, .external_lex_state = 4}, + [537] = {.lex_state = 31, .external_lex_state = 3}, + [538] = {.lex_state = 876, .external_lex_state = 4}, + [539] = {.lex_state = 30, .external_lex_state = 4}, + [540] = {.lex_state = 876, .external_lex_state = 4}, + [541] = {.lex_state = 876, .external_lex_state = 4}, + [542] = {.lex_state = 876, .external_lex_state = 4}, + [543] = {.lex_state = 876, .external_lex_state = 4}, + [544] = {.lex_state = 31, .external_lex_state = 2}, + [545] = {.lex_state = 876, .external_lex_state = 4}, + [546] = {.lex_state = 876, .external_lex_state = 4}, + [547] = {.lex_state = 31, .external_lex_state = 4}, + [548] = {.lex_state = 31, .external_lex_state = 4}, + [549] = {.lex_state = 31, .external_lex_state = 4}, + [550] = {.lex_state = 31, .external_lex_state = 4}, + [551] = {.lex_state = 31, .external_lex_state = 4}, + [552] = {.lex_state = 31, .external_lex_state = 4}, + [553] = {.lex_state = 31, .external_lex_state = 4}, + [554] = {.lex_state = 31, .external_lex_state = 4}, + [555] = {.lex_state = 876, .external_lex_state = 4}, + [556] = {.lex_state = 31, .external_lex_state = 4}, + [557] = {.lex_state = 31, .external_lex_state = 4}, + [558] = {.lex_state = 31, .external_lex_state = 4}, + [559] = {.lex_state = 31, .external_lex_state = 4}, + [560] = {.lex_state = 31, .external_lex_state = 4}, + [561] = {.lex_state = 31, .external_lex_state = 4}, + [562] = {.lex_state = 31, .external_lex_state = 4}, + [563] = {.lex_state = 31, .external_lex_state = 4}, + [564] = {.lex_state = 31, .external_lex_state = 4}, + [565] = {.lex_state = 31, .external_lex_state = 4}, + [566] = {.lex_state = 31, .external_lex_state = 4}, + [567] = {.lex_state = 31, .external_lex_state = 4}, + [568] = {.lex_state = 31, .external_lex_state = 4}, + [569] = {.lex_state = 31, .external_lex_state = 4}, + [570] = {.lex_state = 31, .external_lex_state = 4}, + [571] = {.lex_state = 31, .external_lex_state = 4}, + [572] = {.lex_state = 31, .external_lex_state = 4}, + [573] = {.lex_state = 31, .external_lex_state = 4}, + [574] = {.lex_state = 31, .external_lex_state = 4}, + [575] = {.lex_state = 31, .external_lex_state = 4}, + [576] = {.lex_state = 31, .external_lex_state = 4}, + [577] = {.lex_state = 31, .external_lex_state = 4}, + [578] = {.lex_state = 31, .external_lex_state = 4}, + [579] = {.lex_state = 31, .external_lex_state = 4}, + [580] = {.lex_state = 876, .external_lex_state = 4}, + [581] = {.lex_state = 876, .external_lex_state = 4}, + [582] = {.lex_state = 876, .external_lex_state = 4}, + [583] = {.lex_state = 876, .external_lex_state = 4}, + [584] = {.lex_state = 876, .external_lex_state = 4}, + [585] = {.lex_state = 876, .external_lex_state = 4}, + [586] = {.lex_state = 37, .external_lex_state = 1}, + [587] = {.lex_state = 876, .external_lex_state = 4}, + [588] = {.lex_state = 876, .external_lex_state = 4}, + [589] = {.lex_state = 876, .external_lex_state = 4}, + [590] = {.lex_state = 876, .external_lex_state = 4}, + [591] = {.lex_state = 876, .external_lex_state = 4}, + [592] = {.lex_state = 876, .external_lex_state = 4}, + [593] = {.lex_state = 876, .external_lex_state = 4}, + [594] = {.lex_state = 876, .external_lex_state = 4}, + [595] = {.lex_state = 876, .external_lex_state = 4}, + [596] = {.lex_state = 876, .external_lex_state = 4}, + [597] = {.lex_state = 37, .external_lex_state = 1}, + [598] = {.lex_state = 876, .external_lex_state = 4}, + [599] = {.lex_state = 37, .external_lex_state = 4}, + [600] = {.lex_state = 37, .external_lex_state = 4}, + [601] = {.lex_state = 37, .external_lex_state = 4}, + [602] = {.lex_state = 37, .external_lex_state = 4}, + [603] = {.lex_state = 37, .external_lex_state = 4}, + [604] = {.lex_state = 37, .external_lex_state = 4}, + [605] = {.lex_state = 37, .external_lex_state = 4}, + [606] = {.lex_state = 37, .external_lex_state = 4}, + [607] = {.lex_state = 37, .external_lex_state = 4}, + [608] = {.lex_state = 37, .external_lex_state = 4}, + [609] = {.lex_state = 37, .external_lex_state = 4}, + [610] = {.lex_state = 37, .external_lex_state = 3}, + [611] = {.lex_state = 37, .external_lex_state = 3}, + [612] = {.lex_state = 876, .external_lex_state = 4}, + [613] = {.lex_state = 876, .external_lex_state = 4}, + [614] = {.lex_state = 876, .external_lex_state = 4}, + [615] = {.lex_state = 37, .external_lex_state = 2}, + [616] = {.lex_state = 37, .external_lex_state = 2}, + [617] = {.lex_state = 876, .external_lex_state = 4}, + [618] = {.lex_state = 37, .external_lex_state = 2}, + [619] = {.lex_state = 876, .external_lex_state = 4}, + [620] = {.lex_state = 876, .external_lex_state = 4}, + [621] = {.lex_state = 38, .external_lex_state = 1}, + [622] = {.lex_state = 876, .external_lex_state = 4}, + [623] = {.lex_state = 876, .external_lex_state = 4}, + [624] = {.lex_state = 876, .external_lex_state = 4}, + [625] = {.lex_state = 37, .external_lex_state = 3}, + [626] = {.lex_state = 876, .external_lex_state = 4}, + [627] = {.lex_state = 38, .external_lex_state = 1}, + [628] = {.lex_state = 37, .external_lex_state = 2}, + [629] = {.lex_state = 876, .external_lex_state = 4}, + [630] = {.lex_state = 37, .external_lex_state = 2}, + [631] = {.lex_state = 38, .external_lex_state = 4}, + [632] = {.lex_state = 38, .external_lex_state = 4}, + [633] = {.lex_state = 38, .external_lex_state = 4}, + [634] = {.lex_state = 876, .external_lex_state = 4}, + [635] = {.lex_state = 876, .external_lex_state = 4}, + [636] = {.lex_state = 38, .external_lex_state = 4}, + [637] = {.lex_state = 876, .external_lex_state = 4}, + [638] = {.lex_state = 876, .external_lex_state = 4}, + [639] = {.lex_state = 38, .external_lex_state = 4}, + [640] = {.lex_state = 38, .external_lex_state = 4}, + [641] = {.lex_state = 38, .external_lex_state = 4}, + [642] = {.lex_state = 38, .external_lex_state = 4}, + [643] = {.lex_state = 37, .external_lex_state = 2}, + [644] = {.lex_state = 876, .external_lex_state = 4}, + [645] = {.lex_state = 876, .external_lex_state = 4}, + [646] = {.lex_state = 44, .external_lex_state = 4}, + [647] = {.lex_state = 44, .external_lex_state = 4}, + [648] = {.lex_state = 38, .external_lex_state = 4}, + [649] = {.lex_state = 876, .external_lex_state = 4}, + [650] = {.lex_state = 38, .external_lex_state = 4}, + [651] = {.lex_state = 876, .external_lex_state = 4}, + [652] = {.lex_state = 37, .external_lex_state = 4}, + [653] = {.lex_state = 876, .external_lex_state = 4}, + [654] = {.lex_state = 876, .external_lex_state = 4}, + [655] = {.lex_state = 876, .external_lex_state = 4}, + [656] = {.lex_state = 37, .external_lex_state = 4}, + [657] = {.lex_state = 38, .external_lex_state = 4}, + [658] = {.lex_state = 39, .external_lex_state = 4}, + [659] = {.lex_state = 37, .external_lex_state = 4}, + [660] = {.lex_state = 37, .external_lex_state = 4}, + [661] = {.lex_state = 37, .external_lex_state = 4}, + [662] = {.lex_state = 37, .external_lex_state = 4}, + [663] = {.lex_state = 37, .external_lex_state = 4}, + [664] = {.lex_state = 37, .external_lex_state = 4}, + [665] = {.lex_state = 39, .external_lex_state = 4}, + [666] = {.lex_state = 37, .external_lex_state = 4}, + [667] = {.lex_state = 39, .external_lex_state = 4}, + [668] = {.lex_state = 876, .external_lex_state = 4}, + [669] = {.lex_state = 39, .external_lex_state = 4}, + [670] = {.lex_state = 37, .external_lex_state = 4}, + [671] = {.lex_state = 876, .external_lex_state = 4}, + [672] = {.lex_state = 39, .external_lex_state = 4}, + [673] = {.lex_state = 37, .external_lex_state = 4}, + [674] = {.lex_state = 38, .external_lex_state = 3}, + [675] = {.lex_state = 37, .external_lex_state = 4}, + [676] = {.lex_state = 37, .external_lex_state = 4}, + [677] = {.lex_state = 37, .external_lex_state = 4}, + [678] = {.lex_state = 37, .external_lex_state = 4}, + [679] = {.lex_state = 37, .external_lex_state = 4}, + [680] = {.lex_state = 37, .external_lex_state = 4}, + [681] = {.lex_state = 37, .external_lex_state = 4}, + [682] = {.lex_state = 37, .external_lex_state = 4}, + [683] = {.lex_state = 39, .external_lex_state = 4}, + [684] = {.lex_state = 39, .external_lex_state = 4}, + [685] = {.lex_state = 37, .external_lex_state = 4}, + [686] = {.lex_state = 37, .external_lex_state = 4}, + [687] = {.lex_state = 37, .external_lex_state = 4}, + [688] = {.lex_state = 39, .external_lex_state = 4}, + [689] = {.lex_state = 876, .external_lex_state = 4}, + [690] = {.lex_state = 37, .external_lex_state = 4}, + [691] = {.lex_state = 37, .external_lex_state = 4}, + [692] = {.lex_state = 37, .external_lex_state = 4}, + [693] = {.lex_state = 39, .external_lex_state = 4}, + [694] = {.lex_state = 39, .external_lex_state = 4}, + [695] = {.lex_state = 37, .external_lex_state = 4}, + [696] = {.lex_state = 39, .external_lex_state = 4}, + [697] = {.lex_state = 37, .external_lex_state = 4}, + [698] = {.lex_state = 37, .external_lex_state = 4}, + [699] = {.lex_state = 37, .external_lex_state = 4}, + [700] = {.lex_state = 39, .external_lex_state = 4}, + [701] = {.lex_state = 39, .external_lex_state = 4}, + [702] = {.lex_state = 37, .external_lex_state = 4}, + [703] = {.lex_state = 37, .external_lex_state = 4}, + [704] = {.lex_state = 37, .external_lex_state = 4}, + [705] = {.lex_state = 39, .external_lex_state = 4}, + [706] = {.lex_state = 39, .external_lex_state = 4}, + [707] = {.lex_state = 38, .external_lex_state = 3}, + [708] = {.lex_state = 28, .external_lex_state = 5}, + [709] = {.lex_state = 38, .external_lex_state = 2}, + [710] = {.lex_state = 38, .external_lex_state = 2}, + [711] = {.lex_state = 38, .external_lex_state = 2}, + [712] = {.lex_state = 38, .external_lex_state = 3}, + [713] = {.lex_state = 38, .external_lex_state = 2}, + [714] = {.lex_state = 28, .external_lex_state = 5}, + [715] = {.lex_state = 876, .external_lex_state = 4}, + [716] = {.lex_state = 38, .external_lex_state = 4}, + [717] = {.lex_state = 102}, + [718] = {.lex_state = 38, .external_lex_state = 4}, + [719] = {.lex_state = 876, .external_lex_state = 4}, + [720] = {.lex_state = 876, .external_lex_state = 4}, + [721] = {.lex_state = 38, .external_lex_state = 2}, + [722] = {.lex_state = 28, .external_lex_state = 5}, + [723] = {.lex_state = 38, .external_lex_state = 4}, + [724] = {.lex_state = 38, .external_lex_state = 4}, + [725] = {.lex_state = 38, .external_lex_state = 2}, + [726] = {.lex_state = 38, .external_lex_state = 4}, + [727] = {.lex_state = 38, .external_lex_state = 4}, + [728] = {.lex_state = 38, .external_lex_state = 4}, + [729] = {.lex_state = 876, .external_lex_state = 4}, + [730] = {.lex_state = 38, .external_lex_state = 4}, + [731] = {.lex_state = 38, .external_lex_state = 4}, + [732] = {.lex_state = 38, .external_lex_state = 4}, + [733] = {.lex_state = 38, .external_lex_state = 4}, + [734] = {.lex_state = 38, .external_lex_state = 4}, + [735] = {.lex_state = 38, .external_lex_state = 4}, + [736] = {.lex_state = 38, .external_lex_state = 4}, + [737] = {.lex_state = 38, .external_lex_state = 4}, + [738] = {.lex_state = 38, .external_lex_state = 4}, + [739] = {.lex_state = 38, .external_lex_state = 4}, + [740] = {.lex_state = 38, .external_lex_state = 4}, + [741] = {.lex_state = 38, .external_lex_state = 4}, + [742] = {.lex_state = 38, .external_lex_state = 4}, + [743] = {.lex_state = 38, .external_lex_state = 4}, + [744] = {.lex_state = 38, .external_lex_state = 4}, + [745] = {.lex_state = 38, .external_lex_state = 4}, + [746] = {.lex_state = 38, .external_lex_state = 4}, + [747] = {.lex_state = 38, .external_lex_state = 4}, + [748] = {.lex_state = 38, .external_lex_state = 4}, + [749] = {.lex_state = 38, .external_lex_state = 4}, + [750] = {.lex_state = 38, .external_lex_state = 4}, + [751] = {.lex_state = 38, .external_lex_state = 4}, + [752] = {.lex_state = 38, .external_lex_state = 4}, + [753] = {.lex_state = 38, .external_lex_state = 4}, + [754] = {.lex_state = 38, .external_lex_state = 4}, + [755] = {.lex_state = 38, .external_lex_state = 4}, + [756] = {.lex_state = 38, .external_lex_state = 4}, + [757] = {.lex_state = 39, .external_lex_state = 1}, + [758] = {.lex_state = 876, .external_lex_state = 4}, + [759] = {.lex_state = 39, .external_lex_state = 1}, + [760] = {.lex_state = 39, .external_lex_state = 4}, + [761] = {.lex_state = 877}, + [762] = {.lex_state = 877}, + [763] = {.lex_state = 39, .external_lex_state = 4}, + [764] = {.lex_state = 39, .external_lex_state = 4}, + [765] = {.lex_state = 39, .external_lex_state = 4}, + [766] = {.lex_state = 89}, + [767] = {.lex_state = 39, .external_lex_state = 4}, + [768] = {.lex_state = 39, .external_lex_state = 4}, + [769] = {.lex_state = 39, .external_lex_state = 4}, + [770] = {.lex_state = 25, .external_lex_state = 1}, + [771] = {.lex_state = 876, .external_lex_state = 4}, + [772] = {.lex_state = 89}, + [773] = {.lex_state = 102}, + [774] = {.lex_state = 37, .external_lex_state = 5}, + [775] = {.lex_state = 39, .external_lex_state = 4}, + [776] = {.lex_state = 877}, + [777] = {.lex_state = 39, .external_lex_state = 4}, + [778] = {.lex_state = 89}, + [779] = {.lex_state = 25, .external_lex_state = 1}, + [780] = {.lex_state = 39, .external_lex_state = 4}, + [781] = {.lex_state = 39, .external_lex_state = 4}, + [782] = {.lex_state = 25, .external_lex_state = 4}, + [783] = {.lex_state = 39, .external_lex_state = 3}, + [784] = {.lex_state = 25, .external_lex_state = 4}, + [785] = {.lex_state = 24, .external_lex_state = 1}, + [786] = {.lex_state = 25, .external_lex_state = 4}, + [787] = {.lex_state = 25, .external_lex_state = 4}, + [788] = {.lex_state = 37}, + [789] = {.lex_state = 25, .external_lex_state = 4}, + [790] = {.lex_state = 39, .external_lex_state = 3}, + [791] = {.lex_state = 25, .external_lex_state = 4}, + [792] = {.lex_state = 876, .external_lex_state = 4}, + [793] = {.lex_state = 876, .external_lex_state = 4}, + [794] = {.lex_state = 25, .external_lex_state = 4}, + [795] = {.lex_state = 37}, + [796] = {.lex_state = 876, .external_lex_state = 4}, + [797] = {.lex_state = 876, .external_lex_state = 4}, + [798] = {.lex_state = 876, .external_lex_state = 4}, + [799] = {.lex_state = 876, .external_lex_state = 4}, + [800] = {.lex_state = 24, .external_lex_state = 1}, + [801] = {.lex_state = 25, .external_lex_state = 4}, + [802] = {.lex_state = 25, .external_lex_state = 4}, + [803] = {.lex_state = 25, .external_lex_state = 4}, + [804] = {.lex_state = 25, .external_lex_state = 4}, + [805] = {.lex_state = 39, .external_lex_state = 2}, + [806] = {.lex_state = 24, .external_lex_state = 4}, + [807] = {.lex_state = 24, .external_lex_state = 4}, + [808] = {.lex_state = 24, .external_lex_state = 4}, + [809] = {.lex_state = 25, .external_lex_state = 3}, + [810] = {.lex_state = 39, .external_lex_state = 2}, + [811] = {.lex_state = 24, .external_lex_state = 4}, + [812] = {.lex_state = 24, .external_lex_state = 4}, + [813] = {.lex_state = 39, .external_lex_state = 2}, + [814] = {.lex_state = 39, .external_lex_state = 3}, + [815] = {.lex_state = 39, .external_lex_state = 2}, + [816] = {.lex_state = 876, .external_lex_state = 4}, + [817] = {.lex_state = 24, .external_lex_state = 4}, + [818] = {.lex_state = 24, .external_lex_state = 4}, + [819] = {.lex_state = 24, .external_lex_state = 4}, + [820] = {.lex_state = 24, .external_lex_state = 4}, + [821] = {.lex_state = 24, .external_lex_state = 4}, + [822] = {.lex_state = 25, .external_lex_state = 3}, + [823] = {.lex_state = 24, .external_lex_state = 4}, + [824] = {.lex_state = 877}, + [825] = {.lex_state = 877}, + [826] = {.lex_state = 89}, + [827] = {.lex_state = 89}, + [828] = {.lex_state = 89}, + [829] = {.lex_state = 89}, + [830] = {.lex_state = 877}, + [831] = {.lex_state = 89}, + [832] = {.lex_state = 89}, + [833] = {.lex_state = 89}, + [834] = {.lex_state = 877}, + [835] = {.lex_state = 877}, + [836] = {.lex_state = 877}, + [837] = {.lex_state = 877}, + [838] = {.lex_state = 89}, + [839] = {.lex_state = 89}, + [840] = {.lex_state = 89}, + [841] = {.lex_state = 89}, + [842] = {.lex_state = 89}, + [843] = {.lex_state = 89}, + [844] = {.lex_state = 89}, + [845] = {.lex_state = 89}, + [846] = {.lex_state = 89}, + [847] = {.lex_state = 89}, + [848] = {.lex_state = 89}, + [849] = {.lex_state = 89}, + [850] = {.lex_state = 89}, + [851] = {.lex_state = 877}, + [852] = {.lex_state = 877}, + [853] = {.lex_state = 877}, + [854] = {.lex_state = 877}, + [855] = {.lex_state = 877}, + [856] = {.lex_state = 877}, + [857] = {.lex_state = 89}, + [858] = {.lex_state = 877}, + [859] = {.lex_state = 877}, + [860] = {.lex_state = 877}, + [861] = {.lex_state = 877}, + [862] = {.lex_state = 877}, + [863] = {.lex_state = 877}, + [864] = {.lex_state = 877}, + [865] = {.lex_state = 877}, + [866] = {.lex_state = 877}, + [867] = {.lex_state = 877}, + [868] = {.lex_state = 877}, + [869] = {.lex_state = 877}, + [870] = {.lex_state = 877}, + [871] = {.lex_state = 877}, + [872] = {.lex_state = 877}, + [873] = {.lex_state = 877}, + [874] = {.lex_state = 877}, + [875] = {.lex_state = 877}, + [876] = {.lex_state = 877}, + [877] = {.lex_state = 877}, + [878] = {.lex_state = 877}, + [879] = {.lex_state = 877}, + [880] = {.lex_state = 877}, + [881] = {.lex_state = 877}, + [882] = {.lex_state = 877}, + [883] = {.lex_state = 877}, + [884] = {.lex_state = 89}, + [885] = {.lex_state = 877}, + [886] = {.lex_state = 877}, + [887] = {.lex_state = 877}, + [888] = {.lex_state = 877}, + [889] = {.lex_state = 877}, + [890] = {.lex_state = 877}, + [891] = {.lex_state = 877}, + [892] = {.lex_state = 877}, + [893] = {.lex_state = 877}, + [894] = {.lex_state = 877}, + [895] = {.lex_state = 877}, + [896] = {.lex_state = 877}, + [897] = {.lex_state = 89}, + [898] = {.lex_state = 877}, + [899] = {.lex_state = 877}, + [900] = {.lex_state = 877}, + [901] = {.lex_state = 877}, + [902] = {.lex_state = 877}, + [903] = {.lex_state = 877}, + [904] = {.lex_state = 877}, + [905] = {.lex_state = 877}, + [906] = {.lex_state = 877}, + [907] = {.lex_state = 877}, + [908] = {.lex_state = 877}, + [909] = {.lex_state = 877}, + [910] = {.lex_state = 877}, + [911] = {.lex_state = 877}, + [912] = {.lex_state = 877}, + [913] = {.lex_state = 89}, + [914] = {.lex_state = 43, .external_lex_state = 4}, + [915] = {.lex_state = 877}, + [916] = {.lex_state = 877}, + [917] = {.lex_state = 877}, + [918] = {.lex_state = 877}, + [919] = {.lex_state = 877}, + [920] = {.lex_state = 877}, + [921] = {.lex_state = 877}, + [922] = {.lex_state = 877}, + [923] = {.lex_state = 877}, + [924] = {.lex_state = 877}, + [925] = {.lex_state = 877}, + [926] = {.lex_state = 89}, + [927] = {.lex_state = 877}, + [928] = {.lex_state = 877}, + [929] = {.lex_state = 877}, + [930] = {.lex_state = 877}, + [931] = {.lex_state = 877}, + [932] = {.lex_state = 877}, + [933] = {.lex_state = 877}, + [934] = {.lex_state = 89}, + [935] = {.lex_state = 43, .external_lex_state = 4}, + [936] = {.lex_state = 89}, + [937] = {.lex_state = 877}, + [938] = {.lex_state = 877}, + [939] = {.lex_state = 877}, + [940] = {.lex_state = 877}, + [941] = {.lex_state = 877}, + [942] = {.lex_state = 877}, + [943] = {.lex_state = 877}, + [944] = {.lex_state = 877}, + [945] = {.lex_state = 877}, + [946] = {.lex_state = 877}, + [947] = {.lex_state = 877}, + [948] = {.lex_state = 877}, + [949] = {.lex_state = 89}, + [950] = {.lex_state = 89}, + [951] = {.lex_state = 89}, + [952] = {.lex_state = 89}, + [953] = {.lex_state = 877}, + [954] = {.lex_state = 89}, + [955] = {.lex_state = 89}, + [956] = {.lex_state = 89}, + [957] = {.lex_state = 89}, + [958] = {.lex_state = 877}, + [959] = {.lex_state = 877}, + [960] = {.lex_state = 89}, + [961] = {.lex_state = 877}, + [962] = {.lex_state = 877}, + [963] = {.lex_state = 877}, + [964] = {.lex_state = 877}, + [965] = {.lex_state = 877}, + [966] = {.lex_state = 877}, + [967] = {.lex_state = 89}, + [968] = {.lex_state = 877}, + [969] = {.lex_state = 877}, + [970] = {.lex_state = 89}, + [971] = {.lex_state = 89}, + [972] = {.lex_state = 89}, + [973] = {.lex_state = 89}, + [974] = {.lex_state = 89}, + [975] = {.lex_state = 89}, + [976] = {.lex_state = 89}, + [977] = {.lex_state = 89}, + [978] = {.lex_state = 89}, + [979] = {.lex_state = 89}, + [980] = {.lex_state = 89}, + [981] = {.lex_state = 89}, + [982] = {.lex_state = 39, .external_lex_state = 4}, + [983] = {.lex_state = 89}, + [984] = {.lex_state = 89}, + [985] = {.lex_state = 877}, + [986] = {.lex_state = 89}, + [987] = {.lex_state = 89}, + [988] = {.lex_state = 89}, + [989] = {.lex_state = 877}, + [990] = {.lex_state = 877}, + [991] = {.lex_state = 877}, + [992] = {.lex_state = 877}, + [993] = {.lex_state = 877}, + [994] = {.lex_state = 89}, + [995] = {.lex_state = 39, .external_lex_state = 4}, + [996] = {.lex_state = 89}, + [997] = {.lex_state = 89}, + [998] = {.lex_state = 89}, + [999] = {.lex_state = 89}, + [1000] = {.lex_state = 89}, + [1001] = {.lex_state = 89}, + [1002] = {.lex_state = 89}, + [1003] = {.lex_state = 39, .external_lex_state = 2}, + [1004] = {.lex_state = 877}, + [1005] = {.lex_state = 89}, + [1006] = {.lex_state = 877}, + [1007] = {.lex_state = 89}, + [1008] = {.lex_state = 89}, + [1009] = {.lex_state = 877}, + [1010] = {.lex_state = 89}, + [1011] = {.lex_state = 89}, + [1012] = {.lex_state = 89}, + [1013] = {.lex_state = 89}, + [1014] = {.lex_state = 89}, + [1015] = {.lex_state = 89}, + [1016] = {.lex_state = 89}, + [1017] = {.lex_state = 89}, + [1018] = {.lex_state = 25, .external_lex_state = 3}, + [1019] = {.lex_state = 89}, + [1020] = {.lex_state = 89}, + [1021] = {.lex_state = 877}, + [1022] = {.lex_state = 89}, + [1023] = {.lex_state = 89}, + [1024] = {.lex_state = 24, .external_lex_state = 3}, + [1025] = {.lex_state = 89}, + [1026] = {.lex_state = 89}, + [1027] = {.lex_state = 89}, + [1028] = {.lex_state = 89}, + [1029] = {.lex_state = 89}, + [1030] = {.lex_state = 89}, + [1031] = {.lex_state = 89}, + [1032] = {.lex_state = 89}, + [1033] = {.lex_state = 89}, + [1034] = {.lex_state = 877}, + [1035] = {.lex_state = 89}, + [1036] = {.lex_state = 89}, + [1037] = {.lex_state = 89}, + [1038] = {.lex_state = 877}, + [1039] = {.lex_state = 877}, + [1040] = {.lex_state = 877}, + [1041] = {.lex_state = 877}, + [1042] = {.lex_state = 877}, + [1043] = {.lex_state = 89}, + [1044] = {.lex_state = 25, .external_lex_state = 2}, + [1045] = {.lex_state = 89}, + [1046] = {.lex_state = 89}, + [1047] = {.lex_state = 25, .external_lex_state = 2}, + [1048] = {.lex_state = 89}, + [1049] = {.lex_state = 25, .external_lex_state = 2}, + [1050] = {.lex_state = 89}, + [1051] = {.lex_state = 877}, + [1052] = {.lex_state = 89}, + [1053] = {.lex_state = 89}, + [1054] = {.lex_state = 89}, + [1055] = {.lex_state = 89}, + [1056] = {.lex_state = 89}, + [1057] = {.lex_state = 24, .external_lex_state = 3}, + [1058] = {.lex_state = 39, .external_lex_state = 2}, + [1059] = {.lex_state = 89}, + [1060] = {.lex_state = 89}, + [1061] = {.lex_state = 89}, + [1062] = {.lex_state = 89}, + [1063] = {.lex_state = 89}, + [1064] = {.lex_state = 877}, + [1065] = {.lex_state = 102}, + [1066] = {.lex_state = 877}, + [1067] = {.lex_state = 89}, + [1068] = {.lex_state = 877}, + [1069] = {.lex_state = 25, .external_lex_state = 2}, + [1070] = {.lex_state = 877}, + [1071] = {.lex_state = 877}, + [1072] = {.lex_state = 89}, + [1073] = {.lex_state = 89}, + [1074] = {.lex_state = 89}, + [1075] = {.lex_state = 89}, + [1076] = {.lex_state = 89}, + [1077] = {.lex_state = 89}, + [1078] = {.lex_state = 877}, + [1079] = {.lex_state = 89}, + [1080] = {.lex_state = 876, .external_lex_state = 4}, + [1081] = {.lex_state = 89}, + [1082] = {.lex_state = 876, .external_lex_state = 4}, + [1083] = {.lex_state = 89}, + [1084] = {.lex_state = 89}, + [1085] = {.lex_state = 89}, + [1086] = {.lex_state = 89}, + [1087] = {.lex_state = 877}, + [1088] = {.lex_state = 89}, + [1089] = {.lex_state = 89}, + [1090] = {.lex_state = 89}, + [1091] = {.lex_state = 89}, + [1092] = {.lex_state = 876, .external_lex_state = 4}, + [1093] = {.lex_state = 89}, + [1094] = {.lex_state = 876, .external_lex_state = 4}, + [1095] = {.lex_state = 89}, + [1096] = {.lex_state = 877}, + [1097] = {.lex_state = 877}, + [1098] = {.lex_state = 877}, + [1099] = {.lex_state = 89}, + [1100] = {.lex_state = 89}, + [1101] = {.lex_state = 89}, + [1102] = {.lex_state = 89}, + [1103] = {.lex_state = 89}, + [1104] = {.lex_state = 89}, + [1105] = {.lex_state = 877}, + [1106] = {.lex_state = 89}, + [1107] = {.lex_state = 89}, + [1108] = {.lex_state = 89}, + [1109] = {.lex_state = 89}, + [1110] = {.lex_state = 89}, + [1111] = {.lex_state = 89}, + [1112] = {.lex_state = 878}, + [1113] = {.lex_state = 39, .external_lex_state = 4}, + [1114] = {.lex_state = 878}, + [1115] = {.lex_state = 876, .external_lex_state = 4}, + [1116] = {.lex_state = 878}, + [1117] = {.lex_state = 878}, + [1118] = {.lex_state = 39, .external_lex_state = 4}, + [1119] = {.lex_state = 878}, + [1120] = {.lex_state = 90}, + [1121] = {.lex_state = 90}, + [1122] = {.lex_state = 90}, + [1123] = {.lex_state = 90}, + [1124] = {.lex_state = 90}, + [1125] = {.lex_state = 90}, + [1126] = {.lex_state = 90}, + [1127] = {.lex_state = 876, .external_lex_state = 4}, + [1128] = {.lex_state = 876, .external_lex_state = 1}, + [1129] = {.lex_state = 876, .external_lex_state = 4}, + [1130] = {.lex_state = 876, .external_lex_state = 1}, + [1131] = {.lex_state = 878}, + [1132] = {.lex_state = 876, .external_lex_state = 4}, + [1133] = {.lex_state = 876, .external_lex_state = 1}, + [1134] = {.lex_state = 876, .external_lex_state = 4}, + [1135] = {.lex_state = 876, .external_lex_state = 4}, + [1136] = {.lex_state = 90}, + [1137] = {.lex_state = 878}, + [1138] = {.lex_state = 90}, + [1139] = {.lex_state = 878}, + [1140] = {.lex_state = 90}, + [1141] = {.lex_state = 878}, + [1142] = {.lex_state = 878}, + [1143] = {.lex_state = 90}, + [1144] = {.lex_state = 878}, + [1145] = {.lex_state = 876, .external_lex_state = 4}, + [1146] = {.lex_state = 876, .external_lex_state = 1}, + [1147] = {.lex_state = 878}, + [1148] = {.lex_state = 876, .external_lex_state = 4}, + [1149] = {.lex_state = 876, .external_lex_state = 4}, + [1150] = {.lex_state = 90}, + [1151] = {.lex_state = 90}, + [1152] = {.lex_state = 876, .external_lex_state = 4}, + [1153] = {.lex_state = 878}, + [1154] = {.lex_state = 878}, + [1155] = {.lex_state = 90}, + [1156] = {.lex_state = 876, .external_lex_state = 4}, + [1157] = {.lex_state = 90}, + [1158] = {.lex_state = 90}, + [1159] = {.lex_state = 90}, + [1160] = {.lex_state = 876, .external_lex_state = 4}, + [1161] = {.lex_state = 878}, + [1162] = {.lex_state = 878}, + [1163] = {.lex_state = 878}, + [1164] = {.lex_state = 878}, + [1165] = {.lex_state = 25, .external_lex_state = 4}, + [1166] = {.lex_state = 90}, + [1167] = {.lex_state = 90}, + [1168] = {.lex_state = 90}, + [1169] = {.lex_state = 878}, + [1170] = {.lex_state = 878}, + [1171] = {.lex_state = 39, .external_lex_state = 4}, + [1172] = {.lex_state = 90}, + [1173] = {.lex_state = 878}, + [1174] = {.lex_state = 24, .external_lex_state = 3}, + [1175] = {.lex_state = 90}, + [1176] = {.lex_state = 876, .external_lex_state = 4}, + [1177] = {.lex_state = 878}, + [1178] = {.lex_state = 878}, + [1179] = {.lex_state = 876, .external_lex_state = 4}, + [1180] = {.lex_state = 25, .external_lex_state = 4}, + [1181] = {.lex_state = 878}, + [1182] = {.lex_state = 876, .external_lex_state = 4}, + [1183] = {.lex_state = 878}, + [1184] = {.lex_state = 876, .external_lex_state = 1}, + [1185] = {.lex_state = 90}, + [1186] = {.lex_state = 878}, + [1187] = {.lex_state = 876, .external_lex_state = 4}, + [1188] = {.lex_state = 878}, + [1189] = {.lex_state = 25, .external_lex_state = 2}, + [1190] = {.lex_state = 878}, + [1191] = {.lex_state = 90}, + [1192] = {.lex_state = 878}, + [1193] = {.lex_state = 878}, + [1194] = {.lex_state = 878}, + [1195] = {.lex_state = 90}, + [1196] = {.lex_state = 878}, + [1197] = {.lex_state = 90}, + [1198] = {.lex_state = 878}, + [1199] = {.lex_state = 90}, + [1200] = {.lex_state = 878}, + [1201] = {.lex_state = 878}, + [1202] = {.lex_state = 878}, + [1203] = {.lex_state = 878}, + [1204] = {.lex_state = 878}, + [1205] = {.lex_state = 24, .external_lex_state = 2}, + [1206] = {.lex_state = 90}, + [1207] = {.lex_state = 90}, + [1208] = {.lex_state = 878}, + [1209] = {.lex_state = 90}, + [1210] = {.lex_state = 90}, + [1211] = {.lex_state = 24, .external_lex_state = 2}, + [1212] = {.lex_state = 90}, + [1213] = {.lex_state = 90}, + [1214] = {.lex_state = 90}, + [1215] = {.lex_state = 90}, + [1216] = {.lex_state = 876, .external_lex_state = 4}, + [1217] = {.lex_state = 878}, + [1218] = {.lex_state = 878}, + [1219] = {.lex_state = 878}, + [1220] = {.lex_state = 878}, + [1221] = {.lex_state = 90}, + [1222] = {.lex_state = 878}, + [1223] = {.lex_state = 90}, + [1224] = {.lex_state = 878}, + [1225] = {.lex_state = 90}, + [1226] = {.lex_state = 878}, + [1227] = {.lex_state = 878}, + [1228] = {.lex_state = 90}, + [1229] = {.lex_state = 878}, + [1230] = {.lex_state = 878}, + [1231] = {.lex_state = 90}, + [1232] = {.lex_state = 90}, + [1233] = {.lex_state = 90}, + [1234] = {.lex_state = 878}, + [1235] = {.lex_state = 878}, + [1236] = {.lex_state = 878}, + [1237] = {.lex_state = 876, .external_lex_state = 4}, + [1238] = {.lex_state = 90}, + [1239] = {.lex_state = 37, .external_lex_state = 5}, + [1240] = {.lex_state = 878}, + [1241] = {.lex_state = 90}, + [1242] = {.lex_state = 876, .external_lex_state = 4}, + [1243] = {.lex_state = 90}, + [1244] = {.lex_state = 37, .external_lex_state = 5}, + [1245] = {.lex_state = 878}, + [1246] = {.lex_state = 878}, + [1247] = {.lex_state = 90}, + [1248] = {.lex_state = 102}, + [1249] = {.lex_state = 90}, + [1250] = {.lex_state = 90}, + [1251] = {.lex_state = 878}, + [1252] = {.lex_state = 24, .external_lex_state = 4}, + [1253] = {.lex_state = 24, .external_lex_state = 4}, + [1254] = {.lex_state = 878}, + [1255] = {.lex_state = 878}, + [1256] = {.lex_state = 25, .external_lex_state = 2}, + [1257] = {.lex_state = 878}, + [1258] = {.lex_state = 878}, + [1259] = {.lex_state = 878}, + [1260] = {.lex_state = 878}, + [1261] = {.lex_state = 878}, + [1262] = {.lex_state = 878}, + [1263] = {.lex_state = 90}, + [1264] = {.lex_state = 90}, + [1265] = {.lex_state = 24, .external_lex_state = 2}, + [1266] = {.lex_state = 878}, + [1267] = {.lex_state = 90}, + [1268] = {.lex_state = 37, .external_lex_state = 5}, + [1269] = {.lex_state = 39, .external_lex_state = 4}, + [1270] = {.lex_state = 878}, + [1271] = {.lex_state = 876, .external_lex_state = 4}, + [1272] = {.lex_state = 878}, + [1273] = {.lex_state = 878}, + [1274] = {.lex_state = 878}, + [1275] = {.lex_state = 878}, + [1276] = {.lex_state = 876, .external_lex_state = 4}, + [1277] = {.lex_state = 878}, + [1278] = {.lex_state = 878}, + [1279] = {.lex_state = 878}, + [1280] = {.lex_state = 878}, + [1281] = {.lex_state = 878}, + [1282] = {.lex_state = 90}, + [1283] = {.lex_state = 39, .external_lex_state = 4}, + [1284] = {.lex_state = 39, .external_lex_state = 4}, + [1285] = {.lex_state = 90}, + [1286] = {.lex_state = 878}, + [1287] = {.lex_state = 878}, + [1288] = {.lex_state = 878}, + [1289] = {.lex_state = 39, .external_lex_state = 4}, + [1290] = {.lex_state = 878}, + [1291] = {.lex_state = 878}, + [1292] = {.lex_state = 878}, + [1293] = {.lex_state = 878}, + [1294] = {.lex_state = 878}, + [1295] = {.lex_state = 878}, + [1296] = {.lex_state = 876, .external_lex_state = 4}, + [1297] = {.lex_state = 878}, + [1298] = {.lex_state = 90}, + [1299] = {.lex_state = 878}, + [1300] = {.lex_state = 90}, + [1301] = {.lex_state = 24, .external_lex_state = 2}, + [1302] = {.lex_state = 878}, + [1303] = {.lex_state = 878}, + [1304] = {.lex_state = 878}, + [1305] = {.lex_state = 878}, + [1306] = {.lex_state = 90}, + [1307] = {.lex_state = 90}, + [1308] = {.lex_state = 90}, + [1309] = {.lex_state = 39, .external_lex_state = 4}, + [1310] = {.lex_state = 39, .external_lex_state = 4}, + [1311] = {.lex_state = 878}, + [1312] = {.lex_state = 90}, + [1313] = {.lex_state = 90}, + [1314] = {.lex_state = 39, .external_lex_state = 4}, + [1315] = {.lex_state = 90}, + [1316] = {.lex_state = 90}, + [1317] = {.lex_state = 90}, + [1318] = {.lex_state = 90}, + [1319] = {.lex_state = 878}, + [1320] = {.lex_state = 878}, + [1321] = {.lex_state = 90}, + [1322] = {.lex_state = 878}, + [1323] = {.lex_state = 876, .external_lex_state = 4}, + [1324] = {.lex_state = 37, .external_lex_state = 5}, + [1325] = {.lex_state = 878}, + [1326] = {.lex_state = 876, .external_lex_state = 4}, + [1327] = {.lex_state = 876, .external_lex_state = 4}, + [1328] = {.lex_state = 878}, + [1329] = {.lex_state = 878}, + [1330] = {.lex_state = 878}, + [1331] = {.lex_state = 878}, + [1332] = {.lex_state = 878}, + [1333] = {.lex_state = 92}, + [1334] = {.lex_state = 878}, + [1335] = {.lex_state = 39, .external_lex_state = 4}, + [1336] = {.lex_state = 878}, + [1337] = {.lex_state = 878}, + [1338] = {.lex_state = 878}, + [1339] = {.lex_state = 878}, + [1340] = {.lex_state = 878}, + [1341] = {.lex_state = 878}, + [1342] = {.lex_state = 876, .external_lex_state = 4}, + [1343] = {.lex_state = 878}, + [1344] = {.lex_state = 878}, + [1345] = {.lex_state = 39, .external_lex_state = 4}, + [1346] = {.lex_state = 39, .external_lex_state = 4}, + [1347] = {.lex_state = 39, .external_lex_state = 4}, + [1348] = {.lex_state = 39, .external_lex_state = 4}, + [1349] = {.lex_state = 878}, + [1350] = {.lex_state = 37, .external_lex_state = 5}, + [1351] = {.lex_state = 878}, + [1352] = {.lex_state = 878}, + [1353] = {.lex_state = 878}, + [1354] = {.lex_state = 878}, + [1355] = {.lex_state = 878}, + [1356] = {.lex_state = 878}, + [1357] = {.lex_state = 878}, + [1358] = {.lex_state = 878}, + [1359] = {.lex_state = 90}, + [1360] = {.lex_state = 39, .external_lex_state = 4}, + [1361] = {.lex_state = 39, .external_lex_state = 4}, + [1362] = {.lex_state = 878}, + [1363] = {.lex_state = 39, .external_lex_state = 4}, + [1364] = {.lex_state = 876, .external_lex_state = 4}, + [1365] = {.lex_state = 878}, + [1366] = {.lex_state = 876, .external_lex_state = 4}, + [1367] = {.lex_state = 878}, + [1368] = {.lex_state = 878}, + [1369] = {.lex_state = 876, .external_lex_state = 4}, + [1370] = {.lex_state = 39, .external_lex_state = 4}, + [1371] = {.lex_state = 39, .external_lex_state = 4}, + [1372] = {.lex_state = 876, .external_lex_state = 4}, + [1373] = {.lex_state = 878}, + [1374] = {.lex_state = 878}, + [1375] = {.lex_state = 878}, + [1376] = {.lex_state = 39, .external_lex_state = 4}, + [1377] = {.lex_state = 878}, + [1378] = {.lex_state = 39, .external_lex_state = 4}, + [1379] = {.lex_state = 878}, + [1380] = {.lex_state = 878}, + [1381] = {.lex_state = 876, .external_lex_state = 4}, + [1382] = {.lex_state = 878}, + [1383] = {.lex_state = 878}, + [1384] = {.lex_state = 90}, + [1385] = {.lex_state = 37, .external_lex_state = 5}, + [1386] = {.lex_state = 878}, + [1387] = {.lex_state = 878}, + [1388] = {.lex_state = 878}, + [1389] = {.lex_state = 878}, + [1390] = {.lex_state = 878}, + [1391] = {.lex_state = 39, .external_lex_state = 4}, + [1392] = {.lex_state = 878}, + [1393] = {.lex_state = 39, .external_lex_state = 4}, + [1394] = {.lex_state = 876, .external_lex_state = 4}, + [1395] = {.lex_state = 878}, + [1396] = {.lex_state = 90}, + [1397] = {.lex_state = 37, .external_lex_state = 5}, + [1398] = {.lex_state = 878}, + [1399] = {.lex_state = 39, .external_lex_state = 4}, + [1400] = {.lex_state = 39, .external_lex_state = 4}, + [1401] = {.lex_state = 876, .external_lex_state = 4}, + [1402] = {.lex_state = 878}, + [1403] = {.lex_state = 39, .external_lex_state = 4}, + [1404] = {.lex_state = 39, .external_lex_state = 4}, + [1405] = {.lex_state = 878}, + [1406] = {.lex_state = 39, .external_lex_state = 4}, + [1407] = {.lex_state = 39, .external_lex_state = 4}, + [1408] = {.lex_state = 90}, + [1409] = {.lex_state = 90}, + [1410] = {.lex_state = 90}, + [1411] = {.lex_state = 90}, + [1412] = {.lex_state = 90}, + [1413] = {.lex_state = 878}, + [1414] = {.lex_state = 878}, + [1415] = {.lex_state = 37, .external_lex_state = 5}, + [1416] = {.lex_state = 878}, + [1417] = {.lex_state = 878}, + [1418] = {.lex_state = 90}, + [1419] = {.lex_state = 90}, + [1420] = {.lex_state = 90}, + [1421] = {.lex_state = 90}, + [1422] = {.lex_state = 90}, + [1423] = {.lex_state = 90}, + [1424] = {.lex_state = 876, .external_lex_state = 4}, + [1425] = {.lex_state = 90}, + [1426] = {.lex_state = 90}, + [1427] = {.lex_state = 90}, + [1428] = {.lex_state = 90}, + [1429] = {.lex_state = 90}, + [1430] = {.lex_state = 90}, + [1431] = {.lex_state = 90}, + [1432] = {.lex_state = 90}, + [1433] = {.lex_state = 90}, + [1434] = {.lex_state = 876, .external_lex_state = 4}, + [1435] = {.lex_state = 876, .external_lex_state = 4}, + [1436] = {.lex_state = 878}, + [1437] = {.lex_state = 90}, + [1438] = {.lex_state = 878}, + [1439] = {.lex_state = 90}, + [1440] = {.lex_state = 90}, + [1441] = {.lex_state = 90}, + [1442] = {.lex_state = 90}, + [1443] = {.lex_state = 878}, + [1444] = {.lex_state = 90}, + [1445] = {.lex_state = 90}, + [1446] = {.lex_state = 90}, + [1447] = {.lex_state = 90}, + [1448] = {.lex_state = 90}, + [1449] = {.lex_state = 90}, + [1450] = {.lex_state = 878}, + [1451] = {.lex_state = 878}, + [1452] = {.lex_state = 90}, + [1453] = {.lex_state = 90}, + [1454] = {.lex_state = 90}, + [1455] = {.lex_state = 876, .external_lex_state = 4}, + [1456] = {.lex_state = 878}, + [1457] = {.lex_state = 90}, + [1458] = {.lex_state = 90}, + [1459] = {.lex_state = 90}, + [1460] = {.lex_state = 90}, + [1461] = {.lex_state = 90}, + [1462] = {.lex_state = 90}, + [1463] = {.lex_state = 90}, + [1464] = {.lex_state = 878}, + [1465] = {.lex_state = 90}, + [1466] = {.lex_state = 90}, + [1467] = {.lex_state = 90}, + [1468] = {.lex_state = 90}, + [1469] = {.lex_state = 90}, + [1470] = {.lex_state = 90}, + [1471] = {.lex_state = 878}, + [1472] = {.lex_state = 90}, + [1473] = {.lex_state = 878}, + [1474] = {.lex_state = 90}, + [1475] = {.lex_state = 90}, + [1476] = {.lex_state = 878}, + [1477] = {.lex_state = 37, .external_lex_state = 5}, + [1478] = {.lex_state = 90}, + [1479] = {.lex_state = 90}, + [1480] = {.lex_state = 90}, + [1481] = {.lex_state = 90}, + [1482] = {.lex_state = 90}, + [1483] = {.lex_state = 90}, + [1484] = {.lex_state = 878}, + [1485] = {.lex_state = 90}, + [1486] = {.lex_state = 90}, + [1487] = {.lex_state = 90}, + [1488] = {.lex_state = 90}, + [1489] = {.lex_state = 90}, + [1490] = {.lex_state = 90}, + [1491] = {.lex_state = 90}, + [1492] = {.lex_state = 90}, + [1493] = {.lex_state = 90}, + [1494] = {.lex_state = 876, .external_lex_state = 4}, + [1495] = {.lex_state = 90}, + [1496] = {.lex_state = 90}, + [1497] = {.lex_state = 90}, + [1498] = {.lex_state = 90}, + [1499] = {.lex_state = 878}, + [1500] = {.lex_state = 90}, + [1501] = {.lex_state = 90}, + [1502] = {.lex_state = 90}, + [1503] = {.lex_state = 90}, + [1504] = {.lex_state = 90}, + [1505] = {.lex_state = 90}, + [1506] = {.lex_state = 37, .external_lex_state = 5}, + [1507] = {.lex_state = 90}, + [1508] = {.lex_state = 90}, + [1509] = {.lex_state = 90}, + [1510] = {.lex_state = 90}, + [1511] = {.lex_state = 90}, + [1512] = {.lex_state = 90}, + [1513] = {.lex_state = 90}, + [1514] = {.lex_state = 90}, + [1515] = {.lex_state = 90}, + [1516] = {.lex_state = 90}, + [1517] = {.lex_state = 90}, + [1518] = {.lex_state = 878}, + [1519] = {.lex_state = 90}, + [1520] = {.lex_state = 90}, + [1521] = {.lex_state = 878}, + [1522] = {.lex_state = 90}, + [1523] = {.lex_state = 90}, + [1524] = {.lex_state = 25, .external_lex_state = 4}, + [1525] = {.lex_state = 25, .external_lex_state = 4}, + [1526] = {.lex_state = 25, .external_lex_state = 4}, + [1527] = {.lex_state = 25, .external_lex_state = 4}, + [1528] = {.lex_state = 25, .external_lex_state = 4}, + [1529] = {.lex_state = 25, .external_lex_state = 4}, + [1530] = {.lex_state = 25, .external_lex_state = 4}, + [1531] = {.lex_state = 25, .external_lex_state = 4}, + [1532] = {.lex_state = 25, .external_lex_state = 4}, + [1533] = {.lex_state = 25, .external_lex_state = 4}, + [1534] = {.lex_state = 24, .external_lex_state = 2}, + [1535] = {.lex_state = 25, .external_lex_state = 4}, + [1536] = {.lex_state = 25, .external_lex_state = 4}, + [1537] = {.lex_state = 24, .external_lex_state = 4}, + [1538] = {.lex_state = 25, .external_lex_state = 4}, + [1539] = {.lex_state = 25, .external_lex_state = 4}, + [1540] = {.lex_state = 24, .external_lex_state = 4}, + [1541] = {.lex_state = 25, .external_lex_state = 4}, + [1542] = {.lex_state = 25, .external_lex_state = 4}, + [1543] = {.lex_state = 37, .external_lex_state = 5}, + [1544] = {.lex_state = 25, .external_lex_state = 4}, + [1545] = {.lex_state = 25, .external_lex_state = 4}, + [1546] = {.lex_state = 25, .external_lex_state = 4}, + [1547] = {.lex_state = 25, .external_lex_state = 4}, + [1548] = {.lex_state = 25, .external_lex_state = 4}, + [1549] = {.lex_state = 25, .external_lex_state = 4}, + [1550] = {.lex_state = 25, .external_lex_state = 4}, + [1551] = {.lex_state = 24, .external_lex_state = 2}, + [1552] = {.lex_state = 25, .external_lex_state = 4}, + [1553] = {.lex_state = 25, .external_lex_state = 4}, + [1554] = {.lex_state = 37, .external_lex_state = 5}, + [1555] = {.lex_state = 25, .external_lex_state = 4}, + [1556] = {.lex_state = 25, .external_lex_state = 4}, + [1557] = {.lex_state = 25, .external_lex_state = 4}, + [1558] = {.lex_state = 25, .external_lex_state = 4}, + [1559] = {.lex_state = 25, .external_lex_state = 4}, + [1560] = {.lex_state = 24, .external_lex_state = 4}, + [1561] = {.lex_state = 24, .external_lex_state = 4}, + [1562] = {.lex_state = 24, .external_lex_state = 4}, + [1563] = {.lex_state = 24, .external_lex_state = 4}, + [1564] = {.lex_state = 24, .external_lex_state = 4}, + [1565] = {.lex_state = 37}, + [1566] = {.lex_state = 37}, + [1567] = {.lex_state = 24, .external_lex_state = 4}, + [1568] = {.lex_state = 37}, + [1569] = {.lex_state = 37}, + [1570] = {.lex_state = 24, .external_lex_state = 4}, + [1571] = {.lex_state = 37}, + [1572] = {.lex_state = 24, .external_lex_state = 4}, + [1573] = {.lex_state = 24, .external_lex_state = 4}, + [1574] = {.lex_state = 24, .external_lex_state = 4}, + [1575] = {.lex_state = 24, .external_lex_state = 4}, + [1576] = {.lex_state = 102}, + [1577] = {.lex_state = 24, .external_lex_state = 4}, + [1578] = {.lex_state = 24, .external_lex_state = 4}, + [1579] = {.lex_state = 37}, + [1580] = {.lex_state = 24, .external_lex_state = 4}, + [1581] = {.lex_state = 24, .external_lex_state = 4}, + [1582] = {.lex_state = 37}, + [1583] = {.lex_state = 37}, + [1584] = {.lex_state = 102}, + [1585] = {.lex_state = 24, .external_lex_state = 4}, + [1586] = {.lex_state = 24, .external_lex_state = 4}, + [1587] = {.lex_state = 24, .external_lex_state = 4}, + [1588] = {.lex_state = 24, .external_lex_state = 4}, + [1589] = {.lex_state = 24, .external_lex_state = 4}, + [1590] = {.lex_state = 24, .external_lex_state = 4}, + [1591] = {.lex_state = 24, .external_lex_state = 4}, + [1592] = {.lex_state = 24, .external_lex_state = 4}, + [1593] = {.lex_state = 24, .external_lex_state = 4}, + [1594] = {.lex_state = 24, .external_lex_state = 4}, + [1595] = {.lex_state = 24, .external_lex_state = 4}, + [1596] = {.lex_state = 24, .external_lex_state = 4}, + [1597] = {.lex_state = 37}, + [1598] = {.lex_state = 37}, + [1599] = {.lex_state = 24, .external_lex_state = 4}, + [1600] = {.lex_state = 24, .external_lex_state = 4}, + [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 = 102}, + [1605] = {.lex_state = 37}, + [1606] = {.lex_state = 37}, + [1607] = {.lex_state = 37}, + [1608] = {.lex_state = 93}, + [1609] = {.lex_state = 93}, + [1610] = {.lex_state = 93}, + [1611] = {.lex_state = 37}, + [1612] = {.lex_state = 93}, + [1613] = {.lex_state = 32}, + [1614] = {.lex_state = 93}, + [1615] = {.lex_state = 93}, + [1616] = {.lex_state = 32}, + [1617] = {.lex_state = 37}, + [1618] = {.lex_state = 37, .external_lex_state = 5}, + [1619] = {.lex_state = 37}, + [1620] = {.lex_state = 37}, + [1621] = {.lex_state = 93}, + [1622] = {.lex_state = 37}, + [1623] = {.lex_state = 37, .external_lex_state = 5}, + [1624] = {.lex_state = 93}, + [1625] = {.lex_state = 93}, + [1626] = {.lex_state = 93}, + [1627] = {.lex_state = 32}, + [1628] = {.lex_state = 93}, + [1629] = {.lex_state = 93}, + [1630] = {.lex_state = 93}, + [1631] = {.lex_state = 37}, + [1632] = {.lex_state = 37, .external_lex_state = 5}, + [1633] = {.lex_state = 32}, + [1634] = {.lex_state = 37}, + [1635] = {.lex_state = 93}, + [1636] = {.lex_state = 93}, + [1637] = {.lex_state = 93}, + [1638] = {.lex_state = 93}, + [1639] = {.lex_state = 93}, + [1640] = {.lex_state = 37}, + [1641] = {.lex_state = 93}, + [1642] = {.lex_state = 37, .external_lex_state = 5}, + [1643] = {.lex_state = 37}, + [1644] = {.lex_state = 93}, + [1645] = {.lex_state = 37}, + [1646] = {.lex_state = 93}, + [1647] = {.lex_state = 32}, + [1648] = {.lex_state = 93}, + [1649] = {.lex_state = 93}, + [1650] = {.lex_state = 37}, + [1651] = {.lex_state = 37}, + [1652] = {.lex_state = 37}, + [1653] = {.lex_state = 37}, + [1654] = {.lex_state = 37}, + [1655] = {.lex_state = 37}, + [1656] = {.lex_state = 37}, + [1657] = {.lex_state = 37}, + [1658] = {.lex_state = 37}, + [1659] = {.lex_state = 37}, + [1660] = {.lex_state = 37}, + [1661] = {.lex_state = 37}, + [1662] = {.lex_state = 37}, + [1663] = {.lex_state = 37}, + [1664] = {.lex_state = 37}, + [1665] = {.lex_state = 37}, + [1666] = {.lex_state = 37}, + [1667] = {.lex_state = 37}, + [1668] = {.lex_state = 37}, + [1669] = {.lex_state = 37}, + [1670] = {.lex_state = 37}, + [1671] = {.lex_state = 876}, + [1672] = {.lex_state = 102}, + [1673] = {.lex_state = 102}, + [1674] = {.lex_state = 876}, + [1675] = {.lex_state = 37}, + [1676] = {.lex_state = 37}, + [1677] = {.lex_state = 876}, + [1678] = {.lex_state = 37}, + [1679] = {.lex_state = 37}, + [1680] = {.lex_state = 876}, + [1681] = {.lex_state = 37}, + [1682] = {.lex_state = 37}, + [1683] = {.lex_state = 102}, + [1684] = {.lex_state = 37}, + [1685] = {.lex_state = 876}, + [1686] = {.lex_state = 37}, + [1687] = {.lex_state = 37}, + [1688] = {.lex_state = 876}, + [1689] = {.lex_state = 876}, + [1690] = {.lex_state = 102}, + [1691] = {.lex_state = 37}, + [1692] = {.lex_state = 37}, + [1693] = {.lex_state = 37}, + [1694] = {.lex_state = 93}, + [1695] = {.lex_state = 876}, + [1696] = {.lex_state = 876}, + [1697] = {.lex_state = 876}, + [1698] = {.lex_state = 876}, + [1699] = {.lex_state = 876}, + [1700] = {.lex_state = 37}, + [1701] = {.lex_state = 37}, + [1702] = {.lex_state = 37}, + [1703] = {.lex_state = 102}, + [1704] = {.lex_state = 37}, + [1705] = {.lex_state = 37}, + [1706] = {.lex_state = 37}, + [1707] = {.lex_state = 37}, + [1708] = {.lex_state = 37}, + [1709] = {.lex_state = 37}, + [1710] = {.lex_state = 37}, + [1711] = {.lex_state = 37}, + [1712] = {.lex_state = 37}, + [1713] = {.lex_state = 37}, + [1714] = {.lex_state = 37}, + [1715] = {.lex_state = 37}, + [1716] = {.lex_state = 37}, + [1717] = {.lex_state = 37}, + [1718] = {.lex_state = 37}, + [1719] = {.lex_state = 37}, + [1720] = {.lex_state = 37}, + [1721] = {.lex_state = 37}, + [1722] = {.lex_state = 37}, + [1723] = {.lex_state = 37}, + [1724] = {.lex_state = 37}, + [1725] = {.lex_state = 37}, + [1726] = {.lex_state = 37}, + [1727] = {.lex_state = 37}, + [1728] = {.lex_state = 37}, + [1729] = {.lex_state = 37}, + [1730] = {.lex_state = 37}, + [1731] = {.lex_state = 37}, + [1732] = {.lex_state = 37}, + [1733] = {.lex_state = 37}, + [1734] = {.lex_state = 37}, + [1735] = {.lex_state = 37}, + [1736] = {.lex_state = 37}, + [1737] = {.lex_state = 37}, + [1738] = {.lex_state = 37}, + [1739] = {.lex_state = 37}, + [1740] = {.lex_state = 37}, + [1741] = {.lex_state = 37}, + [1742] = {.lex_state = 37}, + [1743] = {.lex_state = 37}, + [1744] = {.lex_state = 37}, + [1745] = {.lex_state = 37}, + [1746] = {.lex_state = 37}, + [1747] = {.lex_state = 37}, + [1748] = {.lex_state = 37}, + [1749] = {.lex_state = 102}, + [1750] = {.lex_state = 37}, + [1751] = {.lex_state = 37}, + [1752] = {.lex_state = 37}, + [1753] = {.lex_state = 37}, + [1754] = {.lex_state = 37}, + [1755] = {.lex_state = 37}, + [1756] = {.lex_state = 37}, + [1757] = {.lex_state = 37}, + [1758] = {.lex_state = 37}, + [1759] = {.lex_state = 37}, + [1760] = {.lex_state = 37}, + [1761] = {.lex_state = 37}, + [1762] = {.lex_state = 37}, + [1763] = {.lex_state = 37}, + [1764] = {.lex_state = 37}, + [1765] = {.lex_state = 37}, + [1766] = {.lex_state = 37}, + [1767] = {.lex_state = 37}, + [1768] = {.lex_state = 37}, + [1769] = {.lex_state = 37}, + [1770] = {.lex_state = 37}, + [1771] = {.lex_state = 37}, + [1772] = {.lex_state = 37}, + [1773] = {.lex_state = 37}, + [1774] = {.lex_state = 37}, + [1775] = {.lex_state = 37}, + [1776] = {.lex_state = 37}, + [1777] = {.lex_state = 37}, + [1778] = {.lex_state = 876}, + [1779] = {.lex_state = 37, .external_lex_state = 5}, + [1780] = {.lex_state = 876}, + [1781] = {.lex_state = 876}, + [1782] = {.lex_state = 876}, + [1783] = {.lex_state = 876}, + [1784] = {.lex_state = 37}, + [1785] = {.lex_state = 876}, + [1786] = {.lex_state = 37}, + [1787] = {.lex_state = 37}, + [1788] = {.lex_state = 37}, + [1789] = {.lex_state = 37}, + [1790] = {.lex_state = 37}, + [1791] = {.lex_state = 876}, + [1792] = {.lex_state = 37}, + [1793] = {.lex_state = 876}, + [1794] = {.lex_state = 876}, + [1795] = {.lex_state = 876}, + [1796] = {.lex_state = 876}, + [1797] = {.lex_state = 876}, + [1798] = {.lex_state = 876}, + [1799] = {.lex_state = 102}, + [1800] = {.lex_state = 876}, + [1801] = {.lex_state = 876}, + [1802] = {.lex_state = 876}, + [1803] = {.lex_state = 876}, + [1804] = {.lex_state = 876, .external_lex_state = 5}, + [1805] = {.lex_state = 876, .external_lex_state = 5}, + [1806] = {.lex_state = 876, .external_lex_state = 5}, + [1807] = {.lex_state = 40, .external_lex_state = 7}, + [1808] = {.lex_state = 102}, + [1809] = {.lex_state = 876, .external_lex_state = 5}, + [1810] = {.lex_state = 37}, + [1811] = {.lex_state = 876, .external_lex_state = 5}, + [1812] = {.lex_state = 37}, + [1813] = {.lex_state = 37}, + [1814] = {.lex_state = 876, .external_lex_state = 5}, + [1815] = {.lex_state = 876}, + [1816] = {.lex_state = 876, .external_lex_state = 5}, + [1817] = {.lex_state = 37}, + [1818] = {.lex_state = 102}, + [1819] = {.lex_state = 876}, + [1820] = {.lex_state = 876, .external_lex_state = 5}, + [1821] = {.lex_state = 876, .external_lex_state = 5}, + [1822] = {.lex_state = 876, .external_lex_state = 5}, + [1823] = {.lex_state = 102}, + [1824] = {.lex_state = 876, .external_lex_state = 5}, + [1825] = {.lex_state = 876, .external_lex_state = 5}, + [1826] = {.lex_state = 102}, + [1827] = {.lex_state = 102}, + [1828] = {.lex_state = 876, .external_lex_state = 5}, + [1829] = {.lex_state = 102}, + [1830] = {.lex_state = 876, .external_lex_state = 5}, + [1831] = {.lex_state = 876, .external_lex_state = 5}, + [1832] = {.lex_state = 102}, + [1833] = {.lex_state = 87}, + [1834] = {.lex_state = 876}, + [1835] = {.lex_state = 876}, + [1836] = {.lex_state = 876}, + [1837] = {.lex_state = 876}, + [1838] = {.lex_state = 87}, + [1839] = {.lex_state = 876}, + [1840] = {.lex_state = 876}, + [1841] = {.lex_state = 876}, + [1842] = {.lex_state = 876}, + [1843] = {.lex_state = 876}, + [1844] = {.lex_state = 876}, + [1845] = {.lex_state = 876}, + [1846] = {.lex_state = 87}, + [1847] = {.lex_state = 876}, + [1848] = {.lex_state = 876}, + [1849] = {.lex_state = 876}, + [1850] = {.lex_state = 87}, + [1851] = {.lex_state = 37}, + [1852] = {.lex_state = 876}, + [1853] = {.lex_state = 876}, + [1854] = {.lex_state = 876}, + [1855] = {.lex_state = 876}, + [1856] = {.lex_state = 876}, + [1857] = {.lex_state = 37}, + [1858] = {.lex_state = 87}, + [1859] = {.lex_state = 876}, + [1860] = {.lex_state = 87}, + [1861] = {.lex_state = 87}, + [1862] = {.lex_state = 876}, + [1863] = {.lex_state = 876}, + [1864] = {.lex_state = 876}, + [1865] = {.lex_state = 87}, + [1866] = {.lex_state = 87}, + [1867] = {.lex_state = 876}, + [1868] = {.lex_state = 87}, + [1869] = {.lex_state = 876}, + [1870] = {.lex_state = 876}, + [1871] = {.lex_state = 876}, + [1872] = {.lex_state = 876}, + [1873] = {.lex_state = 876}, + [1874] = {.lex_state = 37}, + [1875] = {.lex_state = 876}, + [1876] = {.lex_state = 37}, + [1877] = {.lex_state = 102}, + [1878] = {.lex_state = 37}, + [1879] = {.lex_state = 37}, + [1880] = {.lex_state = 41, .external_lex_state = 7}, + [1881] = {.lex_state = 102}, + [1882] = {.lex_state = 876}, + [1883] = {.lex_state = 876}, + [1884] = {.lex_state = 876}, + [1885] = {.lex_state = 876}, + [1886] = {.lex_state = 876}, + [1887] = {.lex_state = 876}, + [1888] = {.lex_state = 37}, + [1889] = {.lex_state = 876}, + [1890] = {.lex_state = 876}, + [1891] = {.lex_state = 876}, + [1892] = {.lex_state = 37}, + [1893] = {.lex_state = 37}, + [1894] = {.lex_state = 37}, + [1895] = {.lex_state = 102}, + [1896] = {.lex_state = 876}, + [1897] = {.lex_state = 876}, + [1898] = {.lex_state = 876}, + [1899] = {.lex_state = 876}, + [1900] = {.lex_state = 876}, + [1901] = {.lex_state = 876}, + [1902] = {.lex_state = 37}, + [1903] = {.lex_state = 876}, + [1904] = {.lex_state = 876}, + [1905] = {.lex_state = 37}, + [1906] = {.lex_state = 876}, + [1907] = {.lex_state = 37}, + [1908] = {.lex_state = 37}, + [1909] = {.lex_state = 876}, + [1910] = {.lex_state = 37}, + [1911] = {.lex_state = 37}, + [1912] = {.lex_state = 37}, + [1913] = {.lex_state = 876}, + [1914] = {.lex_state = 37}, + [1915] = {.lex_state = 37}, + [1916] = {.lex_state = 876}, + [1917] = {.lex_state = 876}, + [1918] = {.lex_state = 876}, + [1919] = {.lex_state = 102}, + [1920] = {.lex_state = 102}, + [1921] = {.lex_state = 84}, + [1922] = {.lex_state = 876, .external_lex_state = 5}, + [1923] = {.lex_state = 84}, + [1924] = {.lex_state = 876}, + [1925] = {.lex_state = 876}, + [1926] = {.lex_state = 876}, + [1927] = {.lex_state = 876}, + [1928] = {.lex_state = 102}, + [1929] = {.lex_state = 876}, + [1930] = {.lex_state = 876}, + [1931] = {.lex_state = 876}, + [1932] = {.lex_state = 876}, + [1933] = {.lex_state = 876}, + [1934] = {.lex_state = 876}, + [1935] = {.lex_state = 876}, + [1936] = {.lex_state = 876}, + [1937] = {.lex_state = 102}, + [1938] = {.lex_state = 102}, + [1939] = {.lex_state = 876}, + [1940] = {.lex_state = 876}, + [1941] = {.lex_state = 102}, + [1942] = {.lex_state = 876}, + [1943] = {.lex_state = 876}, + [1944] = {.lex_state = 876}, + [1945] = {.lex_state = 876}, + [1946] = {.lex_state = 40, .external_lex_state = 5}, + [1947] = {.lex_state = 876}, + [1948] = {.lex_state = 876}, + [1949] = {.lex_state = 876}, + [1950] = {.lex_state = 876}, + [1951] = {.lex_state = 876}, + [1952] = {.lex_state = 876}, + [1953] = {.lex_state = 876}, + [1954] = {.lex_state = 876}, + [1955] = {.lex_state = 876}, + [1956] = {.lex_state = 40, .external_lex_state = 5}, + [1957] = {.lex_state = 102}, + [1958] = {.lex_state = 876}, + [1959] = {.lex_state = 876}, + [1960] = {.lex_state = 102}, + [1961] = {.lex_state = 876}, + [1962] = {.lex_state = 876}, + [1963] = {.lex_state = 102}, + [1964] = {.lex_state = 876}, + [1965] = {.lex_state = 876}, + [1966] = {.lex_state = 876}, + [1967] = {.lex_state = 37}, + [1968] = {.lex_state = 876}, + [1969] = {.lex_state = 876}, + [1970] = {.lex_state = 876}, + [1971] = {.lex_state = 102}, + [1972] = {.lex_state = 876}, + [1973] = {.lex_state = 876}, + [1974] = {.lex_state = 876}, + [1975] = {.lex_state = 876}, + [1976] = {.lex_state = 876}, + [1977] = {.lex_state = 876}, + [1978] = {.lex_state = 876}, + [1979] = {.lex_state = 876}, + [1980] = {.lex_state = 876}, + [1981] = {.lex_state = 876}, + [1982] = {.lex_state = 876}, + [1983] = {.lex_state = 876}, + [1984] = {.lex_state = 876}, + [1985] = {.lex_state = 876}, + [1986] = {.lex_state = 876}, + [1987] = {.lex_state = 37}, + [1988] = {.lex_state = 37}, + [1989] = {.lex_state = 37}, + [1990] = {.lex_state = 876}, + [1991] = {.lex_state = 876}, + [1992] = {.lex_state = 37}, + [1993] = {.lex_state = 37}, + [1994] = {.lex_state = 37}, + [1995] = {.lex_state = 876}, + [1996] = {.lex_state = 876}, + [1997] = {.lex_state = 37}, + [1998] = {.lex_state = 37}, + [1999] = {.lex_state = 876}, + [2000] = {.lex_state = 876}, + [2001] = {.lex_state = 37}, + [2002] = {.lex_state = 37}, + [2003] = {.lex_state = 876}, + [2004] = {.lex_state = 37}, + [2005] = {.lex_state = 37}, + [2006] = {.lex_state = 37}, + [2007] = {.lex_state = 876}, + [2008] = {.lex_state = 876}, + [2009] = {.lex_state = 876}, + [2010] = {.lex_state = 876}, + [2011] = {.lex_state = 876}, + [2012] = {.lex_state = 37}, + [2013] = {.lex_state = 37}, + [2014] = {.lex_state = 876}, + [2015] = {.lex_state = 876}, + [2016] = {.lex_state = 37}, + [2017] = {.lex_state = 37}, + [2018] = {.lex_state = 876}, + [2019] = {.lex_state = 876, .external_lex_state = 5}, + [2020] = {.lex_state = 37}, + [2021] = {.lex_state = 37}, + [2022] = {.lex_state = 876, .external_lex_state = 5}, + [2023] = {.lex_state = 37}, + [2024] = {.lex_state = 876}, + [2025] = {.lex_state = 37}, + [2026] = {.lex_state = 37}, + [2027] = {.lex_state = 37}, + [2028] = {.lex_state = 37}, + [2029] = {.lex_state = 876}, + [2030] = {.lex_state = 37}, + [2031] = {.lex_state = 876}, + [2032] = {.lex_state = 37}, + [2033] = {.lex_state = 37}, + [2034] = {.lex_state = 37}, + [2035] = {.lex_state = 37}, + [2036] = {.lex_state = 40, .external_lex_state = 5}, + [2037] = {.lex_state = 876}, + [2038] = {.lex_state = 37}, + [2039] = {.lex_state = 37}, + [2040] = {.lex_state = 37}, + [2041] = {.lex_state = 876}, + [2042] = {.lex_state = 876}, + [2043] = {.lex_state = 876}, + [2044] = {.lex_state = 876}, + [2045] = {.lex_state = 37}, + [2046] = {.lex_state = 40}, + [2047] = {.lex_state = 876}, + [2048] = {.lex_state = 37}, + [2049] = {.lex_state = 876}, + [2050] = {.lex_state = 37}, + [2051] = {.lex_state = 37}, + [2052] = {.lex_state = 40}, + [2053] = {.lex_state = 37}, + [2054] = {.lex_state = 37}, + [2055] = {.lex_state = 37}, + [2056] = {.lex_state = 876}, + [2057] = {.lex_state = 37}, + [2058] = {.lex_state = 37}, + [2059] = {.lex_state = 37}, + [2060] = {.lex_state = 876}, + [2061] = {.lex_state = 876}, + [2062] = {.lex_state = 37}, + [2063] = {.lex_state = 37}, + [2064] = {.lex_state = 876}, + [2065] = {.lex_state = 37}, + [2066] = {.lex_state = 876}, + [2067] = {.lex_state = 37}, + [2068] = {.lex_state = 876}, + [2069] = {.lex_state = 37}, + [2070] = {.lex_state = 876}, + [2071] = {.lex_state = 876}, + [2072] = {.lex_state = 876}, + [2073] = {.lex_state = 37}, + [2074] = {.lex_state = 876}, + [2075] = {.lex_state = 37}, + [2076] = {.lex_state = 876}, + [2077] = {.lex_state = 37}, + [2078] = {.lex_state = 37}, + [2079] = {.lex_state = 37}, + [2080] = {.lex_state = 37}, + [2081] = {.lex_state = 37}, + [2082] = {.lex_state = 40}, + [2083] = {.lex_state = 40}, + [2084] = {.lex_state = 37}, + [2085] = {.lex_state = 37}, + [2086] = {.lex_state = 37}, + [2087] = {.lex_state = 37}, + [2088] = {.lex_state = 37}, + [2089] = {.lex_state = 876}, + [2090] = {.lex_state = 876}, + [2091] = {.lex_state = 37}, + [2092] = {.lex_state = 876}, + [2093] = {.lex_state = 37}, + [2094] = {.lex_state = 37}, + [2095] = {.lex_state = 876}, + [2096] = {.lex_state = 37}, + [2097] = {.lex_state = 37}, + [2098] = {.lex_state = 876}, + [2099] = {.lex_state = 37}, + [2100] = {.lex_state = 40}, + [2101] = {.lex_state = 876}, + [2102] = {.lex_state = 876, .external_lex_state = 5}, + [2103] = {.lex_state = 37}, + [2104] = {.lex_state = 88}, + [2105] = {.lex_state = 876}, + [2106] = {.lex_state = 876}, + [2107] = {.lex_state = 876}, + [2108] = {.lex_state = 40}, + [2109] = {.lex_state = 876}, + [2110] = {.lex_state = 876}, + [2111] = {.lex_state = 88}, + [2112] = {.lex_state = 876}, + [2113] = {.lex_state = 876}, + [2114] = {.lex_state = 23}, + [2115] = {.lex_state = 876}, + [2116] = {.lex_state = 51}, + [2117] = {.lex_state = 876}, + [2118] = {.lex_state = 23}, + [2119] = {.lex_state = 876}, + [2120] = {.lex_state = 876}, + [2121] = {.lex_state = 876}, + [2122] = {.lex_state = 876}, + [2123] = {.lex_state = 876}, + [2124] = {.lex_state = 51}, + [2125] = {.lex_state = 876}, + [2126] = {.lex_state = 23}, + [2127] = {.lex_state = 23}, + [2128] = {.lex_state = 37}, + [2129] = {.lex_state = 23}, + [2130] = {.lex_state = 51}, + [2131] = {.lex_state = 51}, + [2132] = {.lex_state = 88}, + [2133] = {.lex_state = 876}, + [2134] = {.lex_state = 51}, + [2135] = {.lex_state = 876}, + [2136] = {.lex_state = 51}, + [2137] = {.lex_state = 876}, + [2138] = {.lex_state = 876}, + [2139] = {.lex_state = 876}, + [2140] = {.lex_state = 37}, + [2141] = {.lex_state = 37}, + [2142] = {.lex_state = 37}, + [2143] = {.lex_state = 876}, + [2144] = {.lex_state = 37}, + [2145] = {.lex_state = 51}, + [2146] = {.lex_state = 876}, + [2147] = {.lex_state = 88}, + [2148] = {.lex_state = 88}, + [2149] = {.lex_state = 51}, + [2150] = {.lex_state = 876}, + [2151] = {.lex_state = 876}, + [2152] = {.lex_state = 876}, + [2153] = {.lex_state = 876}, + [2154] = {.lex_state = 876}, + [2155] = {.lex_state = 876}, + [2156] = {.lex_state = 88}, + [2157] = {.lex_state = 51}, + [2158] = {.lex_state = 876}, + [2159] = {.lex_state = 41, .external_lex_state = 5}, + [2160] = {.lex_state = 876}, + [2161] = {.lex_state = 41, .external_lex_state = 5}, + [2162] = {.lex_state = 88}, + [2163] = {.lex_state = 51}, + [2164] = {.lex_state = 23}, + [2165] = {.lex_state = 876}, + [2166] = {.lex_state = 88}, + [2167] = {.lex_state = 876}, + [2168] = {.lex_state = 37}, + [2169] = {.lex_state = 876}, + [2170] = {.lex_state = 23}, + [2171] = {.lex_state = 51}, + [2172] = {.lex_state = 876}, + [2173] = {.lex_state = 37}, + [2174] = {.lex_state = 51}, + [2175] = {.lex_state = 88}, + [2176] = {.lex_state = 51}, + [2177] = {.lex_state = 876}, + [2178] = {.lex_state = 88}, + [2179] = {.lex_state = 876}, + [2180] = {.lex_state = 51}, + [2181] = {.lex_state = 876}, + [2182] = {.lex_state = 51}, + [2183] = {.lex_state = 37}, + [2184] = {.lex_state = 876}, + [2185] = {.lex_state = 876}, + [2186] = {.lex_state = 876}, + [2187] = {.lex_state = 876}, + [2188] = {.lex_state = 876}, + [2189] = {.lex_state = 876}, + [2190] = {.lex_state = 876}, + [2191] = {.lex_state = 876}, + [2192] = {.lex_state = 876}, + [2193] = {.lex_state = 876}, + [2194] = {.lex_state = 876}, + [2195] = {.lex_state = 876}, + [2196] = {.lex_state = 876}, + [2197] = {.lex_state = 876}, + [2198] = {.lex_state = 876}, + [2199] = {.lex_state = 876}, + [2200] = {.lex_state = 876}, + [2201] = {.lex_state = 876}, + [2202] = {.lex_state = 876}, + [2203] = {.lex_state = 876}, + [2204] = {.lex_state = 876}, + [2205] = {.lex_state = 876}, + [2206] = {.lex_state = 876}, + [2207] = {.lex_state = 876}, + [2208] = {.lex_state = 876}, + [2209] = {.lex_state = 876}, + [2210] = {.lex_state = 876}, + [2211] = {.lex_state = 876}, + [2212] = {.lex_state = 876}, + [2213] = {.lex_state = 876}, + [2214] = {.lex_state = 876}, + [2215] = {.lex_state = 876}, + [2216] = {.lex_state = 876}, + [2217] = {.lex_state = 41}, + [2218] = {.lex_state = 876}, + [2219] = {.lex_state = 876}, + [2220] = {.lex_state = 876}, + [2221] = {.lex_state = 876}, + [2222] = {.lex_state = 876}, + [2223] = {.lex_state = 876}, + [2224] = {.lex_state = 876}, + [2225] = {.lex_state = 876}, + [2226] = {.lex_state = 876}, + [2227] = {.lex_state = 876}, + [2228] = {.lex_state = 876}, + [2229] = {.lex_state = 876}, + [2230] = {.lex_state = 876}, + [2231] = {.lex_state = 876}, + [2232] = {.lex_state = 876}, + [2233] = {.lex_state = 876}, + [2234] = {.lex_state = 876}, + [2235] = {.lex_state = 876}, + [2236] = {.lex_state = 876}, + [2237] = {.lex_state = 876}, + [2238] = {.lex_state = 876}, + [2239] = {.lex_state = 876}, + [2240] = {.lex_state = 876}, + [2241] = {.lex_state = 876}, + [2242] = {.lex_state = 876}, + [2243] = {.lex_state = 876}, + [2244] = {.lex_state = 876}, + [2245] = {.lex_state = 876}, + [2246] = {.lex_state = 876}, + [2247] = {.lex_state = 876}, + [2248] = {.lex_state = 876}, + [2249] = {.lex_state = 41, .external_lex_state = 5}, + [2250] = {.lex_state = 876}, + [2251] = {.lex_state = 876}, + [2252] = {.lex_state = 876}, + [2253] = {.lex_state = 876}, + [2254] = {.lex_state = 876}, + [2255] = {.lex_state = 876}, + [2256] = {.lex_state = 876}, + [2257] = {.lex_state = 876}, + [2258] = {.lex_state = 876}, + [2259] = {.lex_state = 876}, + [2260] = {.lex_state = 876}, + [2261] = {.lex_state = 876}, + [2262] = {.lex_state = 876}, + [2263] = {.lex_state = 876}, + [2264] = {.lex_state = 876}, + [2265] = {.lex_state = 876}, + [2266] = {.lex_state = 876}, + [2267] = {.lex_state = 876}, + [2268] = {.lex_state = 876}, + [2269] = {.lex_state = 876}, + [2270] = {.lex_state = 876}, + [2271] = {.lex_state = 876}, + [2272] = {.lex_state = 876}, + [2273] = {.lex_state = 876}, + [2274] = {.lex_state = 876}, + [2275] = {.lex_state = 876}, + [2276] = {.lex_state = 876}, + [2277] = {.lex_state = 876}, + [2278] = {.lex_state = 41}, + [2279] = {.lex_state = 876}, + [2280] = {.lex_state = 102}, + [2281] = {.lex_state = 876}, + [2282] = {.lex_state = 876}, + [2283] = {.lex_state = 876}, + [2284] = {.lex_state = 876}, + [2285] = {.lex_state = 876}, + [2286] = {.lex_state = 876}, + [2287] = {.lex_state = 876, .external_lex_state = 5}, + [2288] = {.lex_state = 876}, + [2289] = {.lex_state = 876}, + [2290] = {.lex_state = 876}, + [2291] = {.lex_state = 876}, + [2292] = {.lex_state = 876}, + [2293] = {.lex_state = 876}, + [2294] = {.lex_state = 876}, + [2295] = {.lex_state = 876}, + [2296] = {.lex_state = 876}, + [2297] = {.lex_state = 41}, + [2298] = {.lex_state = 876}, + [2299] = {.lex_state = 41}, + [2300] = {.lex_state = 876}, + [2301] = {.lex_state = 876}, + [2302] = {.lex_state = 876}, + [2303] = {.lex_state = 876}, + [2304] = {.lex_state = 876}, + [2305] = {.lex_state = 876}, + [2306] = {.lex_state = 876}, + [2307] = {.lex_state = 876}, + [2308] = {.lex_state = 876}, + [2309] = {.lex_state = 876}, + [2310] = {.lex_state = 876}, + [2311] = {.lex_state = 876}, + [2312] = {.lex_state = 876}, + [2313] = {.lex_state = 876}, + [2314] = {.lex_state = 876}, + [2315] = {.lex_state = 876, .external_lex_state = 5}, + [2316] = {.lex_state = 23}, + [2317] = {.lex_state = 876, .external_lex_state = 5}, + [2318] = {.lex_state = 876, .external_lex_state = 5}, + [2319] = {.lex_state = 38}, + [2320] = {.lex_state = 876, .external_lex_state = 5}, + [2321] = {.lex_state = 23}, + [2322] = {.lex_state = 98}, + [2323] = {.lex_state = 876, .external_lex_state = 5}, + [2324] = {.lex_state = 876, .external_lex_state = 5}, + [2325] = {.lex_state = 38}, + [2326] = {.lex_state = 876, .external_lex_state = 5}, + [2327] = {.lex_state = 41}, + [2328] = {.lex_state = 98}, + [2329] = {.lex_state = 38}, + [2330] = {.lex_state = 41}, + [2331] = {.lex_state = 38}, + [2332] = {.lex_state = 876, .external_lex_state = 5}, + [2333] = {.lex_state = 38}, + [2334] = {.lex_state = 876, .external_lex_state = 5}, + [2335] = {.lex_state = 98}, + [2336] = {.lex_state = 38}, + [2337] = {.lex_state = 876, .external_lex_state = 5}, + [2338] = {.lex_state = 84}, + [2339] = {.lex_state = 38}, + [2340] = {.lex_state = 876, .external_lex_state = 5}, + [2341] = {.lex_state = 876, .external_lex_state = 5}, + [2342] = {.lex_state = 23}, + [2343] = {.lex_state = 876}, + [2344] = {.lex_state = 38}, + [2345] = {.lex_state = 38}, + [2346] = {.lex_state = 38}, + [2347] = {.lex_state = 876, .external_lex_state = 5}, + [2348] = {.lex_state = 98}, + [2349] = {.lex_state = 876, .external_lex_state = 5}, + [2350] = {.lex_state = 876, .external_lex_state = 5}, + [2351] = {.lex_state = 876}, + [2352] = {.lex_state = 876}, + [2353] = {.lex_state = 98}, + [2354] = {.lex_state = 51}, + [2355] = {.lex_state = 876}, + [2356] = {.lex_state = 23}, + [2357] = {.lex_state = 876}, + [2358] = {.lex_state = 23}, + [2359] = {.lex_state = 23}, + [2360] = {.lex_state = 42}, + [2361] = {.lex_state = 42}, + [2362] = {.lex_state = 51}, + [2363] = {.lex_state = 876}, + [2364] = {.lex_state = 51}, + [2365] = {.lex_state = 876}, + [2366] = {.lex_state = 876}, + [2367] = {.lex_state = 51}, + [2368] = {.lex_state = 23}, + [2369] = {.lex_state = 876}, + [2370] = {.lex_state = 23}, + [2371] = {.lex_state = 876}, + [2372] = {.lex_state = 42}, + [2373] = {.lex_state = 876}, + [2374] = {.lex_state = 876}, + [2375] = {.lex_state = 876}, + [2376] = {.lex_state = 876}, + [2377] = {.lex_state = 876}, + [2378] = {.lex_state = 876}, + [2379] = {.lex_state = 23}, + [2380] = {.lex_state = 23}, + [2381] = {.lex_state = 876}, + [2382] = {.lex_state = 876}, + [2383] = {.lex_state = 876}, + [2384] = {.lex_state = 876}, + [2385] = {.lex_state = 51}, + [2386] = {.lex_state = 876}, + [2387] = {.lex_state = 876}, + [2388] = {.lex_state = 51}, + [2389] = {.lex_state = 51}, + [2390] = {.lex_state = 876}, + [2391] = {.lex_state = 51}, + [2392] = {.lex_state = 876}, + [2393] = {.lex_state = 876}, + [2394] = {.lex_state = 42}, + [2395] = {.lex_state = 876}, + [2396] = {.lex_state = 23}, + [2397] = {.lex_state = 876}, + [2398] = {.lex_state = 42}, + [2399] = {.lex_state = 876}, + [2400] = {.lex_state = 876}, + [2401] = {.lex_state = 42}, + [2402] = {.lex_state = 51}, + [2403] = {.lex_state = 876}, + [2404] = {.lex_state = 876}, + [2405] = {.lex_state = 42}, + [2406] = {.lex_state = 876}, + [2407] = {.lex_state = 51}, + [2408] = {.lex_state = 51}, + [2409] = {.lex_state = 51}, + [2410] = {.lex_state = 51}, + [2411] = {.lex_state = 42}, + [2412] = {.lex_state = 876}, + [2413] = {.lex_state = 876}, + [2414] = {.lex_state = 876}, + [2415] = {.lex_state = 876}, + [2416] = {.lex_state = 51}, + [2417] = {.lex_state = 876}, + [2418] = {.lex_state = 51}, + [2419] = {.lex_state = 876}, + [2420] = {.lex_state = 37}, + [2421] = {.lex_state = 876, .external_lex_state = 5}, + [2422] = {.lex_state = 876}, + [2423] = {.lex_state = 42}, + [2424] = {.lex_state = 51}, + [2425] = {.lex_state = 23}, + [2426] = {.lex_state = 876}, + [2427] = {.lex_state = 876}, + [2428] = {.lex_state = 876}, + [2429] = {.lex_state = 876}, + [2430] = {.lex_state = 876}, + [2431] = {.lex_state = 51}, + [2432] = {.lex_state = 51}, + [2433] = {.lex_state = 876}, + [2434] = {.lex_state = 876}, + [2435] = {.lex_state = 51}, + [2436] = {.lex_state = 876}, + [2437] = {.lex_state = 51}, + [2438] = {.lex_state = 51}, + [2439] = {.lex_state = 876}, + [2440] = {.lex_state = 876}, + [2441] = {.lex_state = 51}, + [2442] = {.lex_state = 876}, + [2443] = {.lex_state = 51}, + [2444] = {.lex_state = 51}, + [2445] = {.lex_state = 51}, + [2446] = {.lex_state = 876}, + [2447] = {.lex_state = 23}, + [2448] = {.lex_state = 51}, + [2449] = {.lex_state = 876}, + [2450] = {.lex_state = 876}, + [2451] = {.lex_state = 876}, + [2452] = {.lex_state = 876}, + [2453] = {.lex_state = 876}, + [2454] = {.lex_state = 876}, + [2455] = {.lex_state = 51}, + [2456] = {.lex_state = 51}, + [2457] = {.lex_state = 876}, + [2458] = {.lex_state = 51}, + [2459] = {.lex_state = 51}, + [2460] = {.lex_state = 23}, + [2461] = {.lex_state = 876}, + [2462] = {.lex_state = 51}, + [2463] = {.lex_state = 51}, + [2464] = {.lex_state = 876}, + [2465] = {.lex_state = 51}, + [2466] = {.lex_state = 876}, + [2467] = {.lex_state = 51}, + [2468] = {.lex_state = 51}, + [2469] = {.lex_state = 876}, + [2470] = {.lex_state = 51}, + [2471] = {.lex_state = 51}, + [2472] = {.lex_state = 51}, + [2473] = {.lex_state = 42}, + [2474] = {.lex_state = 51}, + [2475] = {.lex_state = 51}, + [2476] = {.lex_state = 51}, + [2477] = {.lex_state = 23}, + [2478] = {.lex_state = 876}, + [2479] = {.lex_state = 876}, + [2480] = {.lex_state = 876}, + [2481] = {.lex_state = 876}, + [2482] = {.lex_state = 876}, + [2483] = {.lex_state = 876}, + [2484] = {.lex_state = 876}, + [2485] = {.lex_state = 876}, + [2486] = {.lex_state = 23}, + [2487] = {.lex_state = 51}, + [2488] = {.lex_state = 876}, + [2489] = {.lex_state = 51}, + [2490] = {.lex_state = 51}, + [2491] = {.lex_state = 876}, + [2492] = {.lex_state = 876}, + [2493] = {.lex_state = 876}, + [2494] = {.lex_state = 51}, + [2495] = {.lex_state = 876}, + [2496] = {.lex_state = 876}, + [2497] = {.lex_state = 876}, + [2498] = {.lex_state = 876}, + [2499] = {.lex_state = 876}, + [2500] = {.lex_state = 876}, + [2501] = {.lex_state = 876}, + [2502] = {.lex_state = 876}, + [2503] = {.lex_state = 876}, + [2504] = {.lex_state = 876}, + [2505] = {.lex_state = 876}, + [2506] = {.lex_state = 876}, + [2507] = {.lex_state = 876}, + [2508] = {.lex_state = 876}, + [2509] = {.lex_state = 876}, + [2510] = {.lex_state = 876}, + [2511] = {.lex_state = 876}, + [2512] = {.lex_state = 876}, + [2513] = {.lex_state = 876}, + [2514] = {.lex_state = 876}, + [2515] = {.lex_state = 876}, + [2516] = {.lex_state = 876}, + [2517] = {.lex_state = 876}, + [2518] = {.lex_state = 876}, + [2519] = {.lex_state = 876}, + [2520] = {.lex_state = 876}, + [2521] = {.lex_state = 876}, + [2522] = {.lex_state = 876}, + [2523] = {.lex_state = 876}, + [2524] = {.lex_state = 876}, + [2525] = {.lex_state = 876}, + [2526] = {.lex_state = 876}, + [2527] = {.lex_state = 876}, + [2528] = {.lex_state = 876}, + [2529] = {.lex_state = 876}, + [2530] = {.lex_state = 876}, + [2531] = {.lex_state = 876}, + [2532] = {.lex_state = 876}, + [2533] = {.lex_state = 876}, + [2534] = {.lex_state = 876}, + [2535] = {.lex_state = 876}, + [2536] = {.lex_state = 876}, + [2537] = {.lex_state = 876}, + [2538] = {.lex_state = 876}, + [2539] = {.lex_state = 876}, + [2540] = {.lex_state = 876}, + [2541] = {.lex_state = 876}, + [2542] = {.lex_state = 876}, + [2543] = {.lex_state = 876}, + [2544] = {.lex_state = 876}, + [2545] = {.lex_state = 876}, + [2546] = {.lex_state = 876}, + [2547] = {.lex_state = 40}, + [2548] = {.lex_state = 876}, + [2549] = {.lex_state = 876}, + [2550] = {.lex_state = 95}, + [2551] = {.lex_state = 876}, + [2552] = {.lex_state = 40}, + [2553] = {.lex_state = 876}, + [2554] = {.lex_state = 876}, + [2555] = {.lex_state = 876}, + [2556] = {.lex_state = 876}, + [2557] = {.lex_state = 876}, + [2558] = {.lex_state = 95}, + [2559] = {.lex_state = 876}, + [2560] = {.lex_state = 876}, + [2561] = {.lex_state = 876}, + [2562] = {.lex_state = 876}, + [2563] = {.lex_state = 42}, + [2564] = {.lex_state = 876}, + [2565] = {.lex_state = 876}, + [2566] = {.lex_state = 876}, + [2567] = {.lex_state = 876}, + [2568] = {.lex_state = 876}, + [2569] = {.lex_state = 876}, + [2570] = {.lex_state = 876}, + [2571] = {.lex_state = 876}, + [2572] = {.lex_state = 876}, + [2573] = {.lex_state = 876}, + [2574] = {.lex_state = 876, .external_lex_state = 5}, + [2575] = {.lex_state = 876}, + [2576] = {.lex_state = 876}, + [2577] = {.lex_state = 84}, + [2578] = {.lex_state = 876}, + [2579] = {.lex_state = 876}, + [2580] = {.lex_state = 876}, + [2581] = {.lex_state = 876}, + [2582] = {.lex_state = 876}, + [2583] = {.lex_state = 876}, + [2584] = {.lex_state = 876}, + [2585] = {.lex_state = 876}, + [2586] = {.lex_state = 876}, + [2587] = {.lex_state = 876}, + [2588] = {.lex_state = 84}, + [2589] = {.lex_state = 876}, + [2590] = {.lex_state = 876}, + [2591] = {.lex_state = 876}, + [2592] = {.lex_state = 876}, + [2593] = {.lex_state = 876}, + [2594] = {.lex_state = 876}, + [2595] = {.lex_state = 876}, + [2596] = {.lex_state = 876}, + [2597] = {.lex_state = 876}, + [2598] = {.lex_state = 876}, + [2599] = {.lex_state = 876}, + [2600] = {.lex_state = 876}, + [2601] = {.lex_state = 876}, + [2602] = {.lex_state = 95}, + [2603] = {.lex_state = 876}, + [2604] = {.lex_state = 876}, + [2605] = {.lex_state = 876}, + [2606] = {.lex_state = 876}, + [2607] = {.lex_state = 876}, + [2608] = {.lex_state = 876}, + [2609] = {.lex_state = 876}, + [2610] = {.lex_state = 876}, + [2611] = {.lex_state = 876}, + [2612] = {.lex_state = 876}, + [2613] = {.lex_state = 876}, + [2614] = {.lex_state = 876}, + [2615] = {.lex_state = 876}, + [2616] = {.lex_state = 876}, + [2617] = {.lex_state = 876}, + [2618] = {.lex_state = 876}, + [2619] = {.lex_state = 876}, + [2620] = {.lex_state = 876}, + [2621] = {.lex_state = 876}, + [2622] = {.lex_state = 876}, + [2623] = {.lex_state = 876}, + [2624] = {.lex_state = 876}, + [2625] = {.lex_state = 876}, + [2626] = {.lex_state = 876}, + [2627] = {.lex_state = 876}, + [2628] = {.lex_state = 876}, + [2629] = {.lex_state = 23}, + [2630] = {.lex_state = 876}, + [2631] = {.lex_state = 876}, + [2632] = {.lex_state = 876, .external_lex_state = 5}, + [2633] = {.lex_state = 876}, + [2634] = {.lex_state = 876}, + [2635] = {.lex_state = 51}, + [2636] = {.lex_state = 23}, + [2637] = {.lex_state = 876}, + [2638] = {.lex_state = 876}, + [2639] = {.lex_state = 876}, + [2640] = {.lex_state = 876}, + [2641] = {.lex_state = 40}, + [2642] = {.lex_state = 876}, + [2643] = {.lex_state = 876}, + [2644] = {.lex_state = 876}, + [2645] = {.lex_state = 876}, + [2646] = {.lex_state = 876}, + [2647] = {.lex_state = 876}, + [2648] = {.lex_state = 876}, + [2649] = {.lex_state = 876}, + [2650] = {.lex_state = 876, .external_lex_state = 5}, + [2651] = {.lex_state = 876}, + [2652] = {.lex_state = 876}, + [2653] = {.lex_state = 876}, + [2654] = {.lex_state = 876}, + [2655] = {.lex_state = 876}, + [2656] = {.lex_state = 876}, + [2657] = {.lex_state = 876}, + [2658] = {.lex_state = 876}, + [2659] = {.lex_state = 876}, + [2660] = {.lex_state = 876}, + [2661] = {.lex_state = 876}, + [2662] = {.lex_state = 876}, + [2663] = {.lex_state = 876}, + [2664] = {.lex_state = 876}, + [2665] = {.lex_state = 876}, + [2666] = {.lex_state = 876}, + [2667] = {.lex_state = 83}, + [2668] = {.lex_state = 876}, + [2669] = {.lex_state = 876}, + [2670] = {.lex_state = 102}, + [2671] = {.lex_state = 83}, + [2672] = {.lex_state = 876}, + [2673] = {.lex_state = 83}, + [2674] = {.lex_state = 876}, + [2675] = {.lex_state = 876}, + [2676] = {.lex_state = 876}, + [2677] = {.lex_state = 876, .external_lex_state = 5}, + [2678] = {.lex_state = 83}, + [2679] = {.lex_state = 876}, + [2680] = {.lex_state = 876}, + [2681] = {.lex_state = 876}, + [2682] = {.lex_state = 102}, + [2683] = {.lex_state = 876}, + [2684] = {.lex_state = 876, .external_lex_state = 5}, + [2685] = {.lex_state = 876}, + [2686] = {.lex_state = 876}, + [2687] = {.lex_state = 876, .external_lex_state = 5}, + [2688] = {.lex_state = 102}, + [2689] = {.lex_state = 876}, + [2690] = {.lex_state = 876}, + [2691] = {.lex_state = 876, .external_lex_state = 5}, + [2692] = {.lex_state = 876}, + [2693] = {.lex_state = 876}, + [2694] = {.lex_state = 95}, + [2695] = {.lex_state = 876}, + [2696] = {.lex_state = 37}, + [2697] = {.lex_state = 876, .external_lex_state = 5}, + [2698] = {.lex_state = 876}, + [2699] = {.lex_state = 876}, + [2700] = {.lex_state = 83}, + [2701] = {.lex_state = 876}, + [2702] = {.lex_state = 876}, + [2703] = {.lex_state = 876}, + [2704] = {.lex_state = 876}, + [2705] = {.lex_state = 876}, + [2706] = {.lex_state = 876}, + [2707] = {.lex_state = 83}, + [2708] = {.lex_state = 876}, + [2709] = {.lex_state = 876}, + [2710] = {.lex_state = 876}, + [2711] = {.lex_state = 876}, + [2712] = {.lex_state = 876}, + [2713] = {.lex_state = 876}, + [2714] = {.lex_state = 876}, + [2715] = {.lex_state = 876}, + [2716] = {.lex_state = 876}, + [2717] = {.lex_state = 876}, + [2718] = {.lex_state = 876}, + [2719] = {.lex_state = 876, .external_lex_state = 5}, + [2720] = {.lex_state = 876}, + [2721] = {.lex_state = 83}, + [2722] = {.lex_state = 876}, + [2723] = {.lex_state = 876, .external_lex_state = 5}, + [2724] = {.lex_state = 876}, + [2725] = {.lex_state = 876}, + [2726] = {.lex_state = 876}, + [2727] = {.lex_state = 876}, + [2728] = {.lex_state = 876}, + [2729] = {.lex_state = 876}, + [2730] = {.lex_state = 876}, + [2731] = {.lex_state = 876}, + [2732] = {.lex_state = 876}, + [2733] = {.lex_state = 876}, + [2734] = {.lex_state = 876}, + [2735] = {.lex_state = 102}, + [2736] = {.lex_state = 876}, + [2737] = {.lex_state = 876}, + [2738] = {.lex_state = 83}, + [2739] = {.lex_state = 102}, + [2740] = {.lex_state = 876}, + [2741] = {.lex_state = 876}, + [2742] = {.lex_state = 876}, + [2743] = {.lex_state = 876}, + [2744] = {.lex_state = 83}, + [2745] = {.lex_state = 876}, + [2746] = {.lex_state = 102}, + [2747] = {.lex_state = 876}, + [2748] = {.lex_state = 876}, + [2749] = {.lex_state = 876}, + [2750] = {.lex_state = 876}, + [2751] = {.lex_state = 876}, + [2752] = {.lex_state = 876}, + [2753] = {.lex_state = 876}, + [2754] = {.lex_state = 876}, + [2755] = {.lex_state = 876}, + [2756] = {.lex_state = 876}, + [2757] = {.lex_state = 876}, + [2758] = {.lex_state = 876}, + [2759] = {.lex_state = 876, .external_lex_state = 5}, + [2760] = {.lex_state = 876}, + [2761] = {.lex_state = 876}, + [2762] = {.lex_state = 876}, + [2763] = {.lex_state = 876}, + [2764] = {.lex_state = 876}, + [2765] = {.lex_state = 876}, + [2766] = {.lex_state = 876}, + [2767] = {.lex_state = 876, .external_lex_state = 5}, + [2768] = {.lex_state = 83}, + [2769] = {.lex_state = 876}, + [2770] = {.lex_state = 876}, + [2771] = {.lex_state = 102}, + [2772] = {.lex_state = 876}, + [2773] = {.lex_state = 102}, + [2774] = {.lex_state = 876}, + [2775] = {.lex_state = 876}, + [2776] = {.lex_state = 876}, + [2777] = {.lex_state = 876}, + [2778] = {.lex_state = 876}, + [2779] = {.lex_state = 876}, + [2780] = {.lex_state = 876}, + [2781] = {.lex_state = 876}, + [2782] = {.lex_state = 876}, + [2783] = {.lex_state = 876}, + [2784] = {.lex_state = 876}, + [2785] = {.lex_state = 102}, + [2786] = {.lex_state = 83}, + [2787] = {.lex_state = 876}, + [2788] = {.lex_state = 876}, + [2789] = {.lex_state = 102}, + [2790] = {.lex_state = 876}, + [2791] = {.lex_state = 876}, + [2792] = {.lex_state = 876}, + [2793] = {.lex_state = 876}, + [2794] = {.lex_state = 876}, + [2795] = {.lex_state = 876, .external_lex_state = 5}, + [2796] = {.lex_state = 876}, + [2797] = {.lex_state = 876}, + [2798] = {.lex_state = 876}, + [2799] = {.lex_state = 876}, + [2800] = {.lex_state = 102}, + [2801] = {.lex_state = 876}, + [2802] = {.lex_state = 876}, + [2803] = {.lex_state = 876, .external_lex_state = 5}, + [2804] = {.lex_state = 876}, + [2805] = {.lex_state = 876}, + [2806] = {.lex_state = 102}, + [2807] = {.lex_state = 876}, + [2808] = {.lex_state = 876}, + [2809] = {.lex_state = 876}, + [2810] = {.lex_state = 876}, + [2811] = {.lex_state = 876}, + [2812] = {.lex_state = 876}, + [2813] = {.lex_state = 876}, + [2814] = {.lex_state = 876}, + [2815] = {.lex_state = 876}, + [2816] = {.lex_state = 100}, + [2817] = {.lex_state = 876}, + [2818] = {.lex_state = 876}, + [2819] = {.lex_state = 876}, + [2820] = {.lex_state = 876}, + [2821] = {.lex_state = 876}, + [2822] = {.lex_state = 876}, + [2823] = {.lex_state = 876}, + [2824] = {.lex_state = 876}, + [2825] = {.lex_state = 876}, + [2826] = {.lex_state = 876}, + [2827] = {.lex_state = 876}, + [2828] = {.lex_state = 876}, + [2829] = {.lex_state = 876}, + [2830] = {.lex_state = 876}, + [2831] = {.lex_state = 876}, + [2832] = {.lex_state = 876}, + [2833] = {.lex_state = 876}, + [2834] = {.lex_state = 876}, + [2835] = {.lex_state = 876}, + [2836] = {.lex_state = 876}, + [2837] = {.lex_state = 876}, + [2838] = {.lex_state = 876}, + [2839] = {.lex_state = 876}, + [2840] = {.lex_state = 876}, + [2841] = {.lex_state = 876}, + [2842] = {.lex_state = 876}, + [2843] = {.lex_state = 876}, + [2844] = {.lex_state = 102}, + [2845] = {.lex_state = 876}, + [2846] = {.lex_state = 876}, + [2847] = {.lex_state = 876}, + [2848] = {.lex_state = 876, .external_lex_state = 5}, + [2849] = {.lex_state = 876, .external_lex_state = 5}, + [2850] = {.lex_state = 876}, + [2851] = {.lex_state = 102}, + [2852] = {.lex_state = 95}, + [2853] = {.lex_state = 876}, + [2854] = {.lex_state = 876}, + [2855] = {.lex_state = 876}, + [2856] = {.lex_state = 876}, + [2857] = {.lex_state = 876}, + [2858] = {.lex_state = 876}, + [2859] = {.lex_state = 876}, + [2860] = {.lex_state = 876}, + [2861] = {.lex_state = 876}, + [2862] = {.lex_state = 876}, + [2863] = {.lex_state = 51}, + [2864] = {.lex_state = 876}, + [2865] = {.lex_state = 876}, + [2866] = {.lex_state = 876}, + [2867] = {.lex_state = 876}, + [2868] = {.lex_state = 876}, + [2869] = {.lex_state = 876}, + [2870] = {.lex_state = 876}, + [2871] = {.lex_state = 876}, + [2872] = {.lex_state = 102}, + [2873] = {.lex_state = 23}, + [2874] = {.lex_state = 876}, + [2875] = {.lex_state = 99}, + [2876] = {.lex_state = 876}, + [2877] = {.lex_state = 876}, + [2878] = {.lex_state = 876}, + [2879] = {.lex_state = 876}, + [2880] = {.lex_state = 23}, + [2881] = {.lex_state = 876}, + [2882] = {.lex_state = 876}, + [2883] = {.lex_state = 102}, + [2884] = {.lex_state = 876}, + [2885] = {.lex_state = 876}, + [2886] = {.lex_state = 35}, + [2887] = {.lex_state = 876}, + [2888] = {.lex_state = 33}, + [2889] = {.lex_state = 876}, + [2890] = {.lex_state = 876}, + [2891] = {.lex_state = 102}, + [2892] = {.lex_state = 99}, + [2893] = {.lex_state = 876}, + [2894] = {.lex_state = 876}, + [2895] = {.lex_state = 876}, + [2896] = {.lex_state = 35}, + [2897] = {.lex_state = 33}, + [2898] = {.lex_state = 876, .external_lex_state = 5}, + [2899] = {.lex_state = 876}, + [2900] = {.lex_state = 95}, + [2901] = {.lex_state = 876}, + [2902] = {.lex_state = 876}, + [2903] = {.lex_state = 876}, + [2904] = {.lex_state = 876}, + [2905] = {.lex_state = 99}, + [2906] = {.lex_state = 35}, + [2907] = {.lex_state = 33}, + [2908] = {.lex_state = 876}, + [2909] = {.lex_state = 876}, + [2910] = {.lex_state = 876}, + [2911] = {.lex_state = 876}, + [2912] = {.lex_state = 876}, + [2913] = {.lex_state = 876}, + [2914] = {.lex_state = 876}, + [2915] = {.lex_state = 876}, + [2916] = {.lex_state = 876}, + [2917] = {.lex_state = 33}, + [2918] = {.lex_state = 33}, + [2919] = {.lex_state = 35}, + [2920] = {.lex_state = 876}, + [2921] = {.lex_state = 33}, + [2922] = {.lex_state = 35}, + [2923] = {.lex_state = 33}, + [2924] = {.lex_state = 876}, + [2925] = {.lex_state = 41}, + [2926] = {.lex_state = 35}, + [2927] = {.lex_state = 33}, + [2928] = {.lex_state = 95}, + [2929] = {.lex_state = 35}, + [2930] = {.lex_state = 33}, + [2931] = {.lex_state = 99}, + [2932] = {.lex_state = 41}, + [2933] = {.lex_state = 876}, + [2934] = {.lex_state = 41}, + [2935] = {.lex_state = 35}, + [2936] = {.lex_state = 33}, + [2937] = {.lex_state = 35}, + [2938] = {.lex_state = 35}, + [2939] = {.lex_state = 33}, + [2940] = {.lex_state = 23}, + [2941] = {.lex_state = 23}, + [2942] = {.lex_state = 33}, + [2943] = {.lex_state = 23}, + [2944] = {.lex_state = 23}, + [2945] = {.lex_state = 33}, + [2946] = {.lex_state = 35}, + [2947] = {.lex_state = 102}, + [2948] = {.lex_state = 50}, + [2949] = {.lex_state = 876}, + [2950] = {.lex_state = 102}, + [2951] = {.lex_state = 23}, + [2952] = {.lex_state = 876}, + [2953] = {.lex_state = 876}, + [2954] = {.lex_state = 876}, + [2955] = {.lex_state = 85}, + [2956] = {.lex_state = 99}, + [2957] = {.lex_state = 876}, + [2958] = {.lex_state = 876}, + [2959] = {.lex_state = 876}, + [2960] = {.lex_state = 876}, + [2961] = {.lex_state = 35}, + [2962] = {.lex_state = 33}, + [2963] = {.lex_state = 876}, + [2964] = {.lex_state = 876}, + [2965] = {.lex_state = 876, .external_lex_state = 5}, + [2966] = {.lex_state = 35}, + [2967] = {.lex_state = 33}, + [2968] = {.lex_state = 99}, + [2969] = {.lex_state = 99}, + [2970] = {.lex_state = 95}, + [2971] = {.lex_state = 85}, + [2972] = {.lex_state = 23}, + [2973] = {.lex_state = 876}, + [2974] = {.lex_state = 876}, + [2975] = {.lex_state = 876}, + [2976] = {.lex_state = 876}, + [2977] = {.lex_state = 876}, + [2978] = {.lex_state = 876}, + [2979] = {.lex_state = 50}, + [2980] = {.lex_state = 876}, + [2981] = {.lex_state = 876}, + [2982] = {.lex_state = 102}, + [2983] = {.lex_state = 876}, + [2984] = {.lex_state = 102}, + [2985] = {.lex_state = 50}, + [2986] = {.lex_state = 876}, + [2987] = {.lex_state = 35}, + [2988] = {.lex_state = 876}, + [2989] = {.lex_state = 35}, + [2990] = {.lex_state = 33}, + [2991] = {.lex_state = 876}, + [2992] = {.lex_state = 85}, + [2993] = {.lex_state = 876}, + [2994] = {.lex_state = 33}, + [2995] = {.lex_state = 876}, + [2996] = {.lex_state = 35}, + [2997] = {.lex_state = 876}, + [2998] = {.lex_state = 876}, + [2999] = {.lex_state = 102}, + [3000] = {.lex_state = 876}, + [3001] = {.lex_state = 876}, + [3002] = {.lex_state = 33}, + [3003] = {.lex_state = 35}, + [3004] = {.lex_state = 50}, + [3005] = {.lex_state = 33}, + [3006] = {.lex_state = 50}, + [3007] = {.lex_state = 876}, + [3008] = {.lex_state = 876}, + [3009] = {.lex_state = 876}, + [3010] = {.lex_state = 876}, + [3011] = {.lex_state = 876}, + [3012] = {.lex_state = 23}, + [3013] = {.lex_state = 876}, + [3014] = {.lex_state = 876}, + [3015] = {.lex_state = 876}, + [3016] = {.lex_state = 876}, + [3017] = {.lex_state = 97}, + [3018] = {.lex_state = 23}, + [3019] = {.lex_state = 23}, + [3020] = {.lex_state = 876}, + [3021] = {.lex_state = 876}, + [3022] = {.lex_state = 876}, + [3023] = {.lex_state = 876}, + [3024] = {.lex_state = 876}, + [3025] = {.lex_state = 876}, + [3026] = {.lex_state = 876}, + [3027] = {.lex_state = 876}, + [3028] = {.lex_state = 876}, + [3029] = {.lex_state = 876}, + [3030] = {.lex_state = 876}, + [3031] = {.lex_state = 34}, + [3032] = {.lex_state = 876}, + [3033] = {.lex_state = 94}, + [3034] = {.lex_state = 876}, + [3035] = {.lex_state = 876}, + [3036] = {.lex_state = 876}, + [3037] = {.lex_state = 876}, + [3038] = {.lex_state = 876}, + [3039] = {.lex_state = 876}, + [3040] = {.lex_state = 876}, + [3041] = {.lex_state = 876}, + [3042] = {.lex_state = 876}, + [3043] = {.lex_state = 876}, + [3044] = {.lex_state = 876}, + [3045] = {.lex_state = 876, .external_lex_state = 5}, + [3046] = {.lex_state = 97}, + [3047] = {.lex_state = 23}, + [3048] = {.lex_state = 876}, + [3049] = {.lex_state = 876}, + [3050] = {.lex_state = 876}, + [3051] = {.lex_state = 38}, + [3052] = {.lex_state = 876}, + [3053] = {.lex_state = 876}, + [3054] = {.lex_state = 876}, + [3055] = {.lex_state = 876}, + [3056] = {.lex_state = 876, .external_lex_state = 5}, + [3057] = {.lex_state = 876}, + [3058] = {.lex_state = 876, .external_lex_state = 5}, + [3059] = {.lex_state = 876}, + [3060] = {.lex_state = 38}, + [3061] = {.lex_state = 97}, + [3062] = {.lex_state = 876}, + [3063] = {.lex_state = 23}, + [3064] = {.lex_state = 876, .external_lex_state = 6}, + [3065] = {.lex_state = 876}, + [3066] = {.lex_state = 38}, + [3067] = {.lex_state = 876}, + [3068] = {.lex_state = 876, .external_lex_state = 5}, + [3069] = {.lex_state = 876, .external_lex_state = 5}, + [3070] = {.lex_state = 876}, + [3071] = {.lex_state = 34}, + [3072] = {.lex_state = 876}, + [3073] = {.lex_state = 23}, + [3074] = {.lex_state = 876}, + [3075] = {.lex_state = 23}, + [3076] = {.lex_state = 876, .external_lex_state = 5}, + [3077] = {.lex_state = 34}, + [3078] = {.lex_state = 876, .external_lex_state = 5}, + [3079] = {.lex_state = 876}, + [3080] = {.lex_state = 34}, + [3081] = {.lex_state = 876}, + [3082] = {.lex_state = 876}, + [3083] = {.lex_state = 876}, + [3084] = {.lex_state = 876}, + [3085] = {.lex_state = 876}, + [3086] = {.lex_state = 876}, + [3087] = {.lex_state = 876, .external_lex_state = 5}, + [3088] = {.lex_state = 876, .external_lex_state = 5}, + [3089] = {.lex_state = 876}, + [3090] = {.lex_state = 876}, + [3091] = {.lex_state = 876}, + [3092] = {.lex_state = 876}, + [3093] = {.lex_state = 876}, + [3094] = {.lex_state = 876}, + [3095] = {.lex_state = 876}, + [3096] = {.lex_state = 876}, + [3097] = {.lex_state = 876}, + [3098] = {.lex_state = 23}, + [3099] = {.lex_state = 876}, + [3100] = {.lex_state = 876, .external_lex_state = 5}, + [3101] = {.lex_state = 876}, + [3102] = {.lex_state = 876}, + [3103] = {.lex_state = 876}, + [3104] = {.lex_state = 876}, + [3105] = {.lex_state = 876}, + [3106] = {.lex_state = 876}, + [3107] = {.lex_state = 876}, + [3108] = {.lex_state = 876}, + [3109] = {.lex_state = 876}, + [3110] = {.lex_state = 876}, + [3111] = {.lex_state = 876}, + [3112] = {.lex_state = 876}, + [3113] = {.lex_state = 876}, + [3114] = {.lex_state = 876}, + [3115] = {.lex_state = 876}, + [3116] = {.lex_state = 876}, + [3117] = {.lex_state = 876}, + [3118] = {.lex_state = 876}, + [3119] = {.lex_state = 876}, + [3120] = {.lex_state = 876}, + [3121] = {.lex_state = 876}, + [3122] = {.lex_state = 876}, + [3123] = {.lex_state = 876}, + [3124] = {.lex_state = 876, .external_lex_state = 5}, + [3125] = {.lex_state = 876, .external_lex_state = 5}, + [3126] = {.lex_state = 876}, + [3127] = {.lex_state = 876}, + [3128] = {.lex_state = 876}, + [3129] = {.lex_state = 876}, + [3130] = {.lex_state = 876}, + [3131] = {.lex_state = 876}, + [3132] = {.lex_state = 21}, + [3133] = {.lex_state = 876, .external_lex_state = 5}, + [3134] = {.lex_state = 876}, + [3135] = {.lex_state = 876}, + [3136] = {.lex_state = 876}, + [3137] = {.lex_state = 876}, + [3138] = {.lex_state = 876}, + [3139] = {.lex_state = 876}, + [3140] = {.lex_state = 876}, + [3141] = {.lex_state = 876}, + [3142] = {.lex_state = 876}, + [3143] = {.lex_state = 876, .external_lex_state = 5}, + [3144] = {.lex_state = 876}, + [3145] = {.lex_state = 876}, + [3146] = {.lex_state = 876}, + [3147] = {.lex_state = 23}, + [3148] = {.lex_state = 876}, + [3149] = {.lex_state = 876}, + [3150] = {.lex_state = 876}, + [3151] = {.lex_state = 876}, + [3152] = {.lex_state = 21}, + [3153] = {.lex_state = 876}, + [3154] = {.lex_state = 876}, + [3155] = {.lex_state = 876}, + [3156] = {.lex_state = 876}, + [3157] = {.lex_state = 876}, + [3158] = {.lex_state = 876}, + [3159] = {.lex_state = 101}, + [3160] = {.lex_state = 876}, + [3161] = {.lex_state = 876}, + [3162] = {.lex_state = 21}, + [3163] = {.lex_state = 876}, + [3164] = {.lex_state = 876, .external_lex_state = 5}, + [3165] = {.lex_state = 876}, + [3166] = {.lex_state = 876}, + [3167] = {.lex_state = 876}, + [3168] = {.lex_state = 876}, + [3169] = {.lex_state = 876}, + [3170] = {.lex_state = 101}, + [3171] = {.lex_state = 876}, + [3172] = {.lex_state = 876}, + [3173] = {.lex_state = 876}, + [3174] = {.lex_state = 876}, + [3175] = {.lex_state = 876}, + [3176] = {.lex_state = 876}, + [3177] = {.lex_state = 876}, + [3178] = {.lex_state = 876, .external_lex_state = 5}, + [3179] = {.lex_state = 21}, + [3180] = {.lex_state = 23, .external_lex_state = 5}, + [3181] = {.lex_state = 876}, + [3182] = {.lex_state = 876}, + [3183] = {.lex_state = 876}, + [3184] = {.lex_state = 34}, + [3185] = {.lex_state = 876}, + [3186] = {.lex_state = 876}, + [3187] = {.lex_state = 876}, + [3188] = {.lex_state = 876}, + [3189] = {.lex_state = 876}, + [3190] = {.lex_state = 876}, + [3191] = {.lex_state = 876}, + [3192] = {.lex_state = 876}, + [3193] = {.lex_state = 876}, + [3194] = {.lex_state = 876}, + [3195] = {.lex_state = 876}, + [3196] = {.lex_state = 876}, + [3197] = {.lex_state = 876}, + [3198] = {.lex_state = 876}, + [3199] = {.lex_state = 876}, + [3200] = {.lex_state = 876}, + [3201] = {.lex_state = 876}, + [3202] = {.lex_state = 876}, + [3203] = {.lex_state = 876}, + [3204] = {.lex_state = 876, .external_lex_state = 5}, + [3205] = {.lex_state = 876}, + [3206] = {.lex_state = 876}, + [3207] = {.lex_state = 876}, + [3208] = {.lex_state = 876}, + [3209] = {.lex_state = 23, .external_lex_state = 5}, + [3210] = {.lex_state = 876}, + [3211] = {.lex_state = 876}, + [3212] = {.lex_state = 876}, + [3213] = {.lex_state = 876}, + [3214] = {.lex_state = 876}, + [3215] = {.lex_state = 51}, + [3216] = {.lex_state = 876}, + [3217] = {.lex_state = 876}, + [3218] = {.lex_state = 101}, + [3219] = {.lex_state = 876}, + [3220] = {.lex_state = 876}, + [3221] = {.lex_state = 876, .external_lex_state = 5}, + [3222] = {.lex_state = 876}, + [3223] = {.lex_state = 876}, + [3224] = {.lex_state = 876}, + [3225] = {.lex_state = 876}, + [3226] = {.lex_state = 876}, + [3227] = {.lex_state = 876}, + [3228] = {.lex_state = 876}, + [3229] = {.lex_state = 876}, + [3230] = {.lex_state = 876}, + [3231] = {.lex_state = 876}, + [3232] = {.lex_state = 876}, + [3233] = {.lex_state = 876}, + [3234] = {.lex_state = 97}, + [3235] = {.lex_state = 97}, + [3236] = {.lex_state = 23}, + [3237] = {.lex_state = 876}, + [3238] = {.lex_state = 876}, + [3239] = {.lex_state = 23}, + [3240] = {.lex_state = 876}, + [3241] = {.lex_state = 38}, + [3242] = {.lex_state = 876}, + [3243] = {.lex_state = 23}, + [3244] = {.lex_state = 876}, + [3245] = {.lex_state = 876}, + [3246] = {.lex_state = 21}, + [3247] = {.lex_state = 876}, + [3248] = {.lex_state = 876}, + [3249] = {.lex_state = 876}, + [3250] = {.lex_state = 876}, + [3251] = {.lex_state = 101}, + [3252] = {.lex_state = 21}, + [3253] = {.lex_state = 94}, + [3254] = {.lex_state = 876}, + [3255] = {.lex_state = 876}, + [3256] = {.lex_state = 876}, + [3257] = {.lex_state = 876}, + [3258] = {.lex_state = 876}, + [3259] = {.lex_state = 876}, + [3260] = {.lex_state = 876}, + [3261] = {.lex_state = 876}, + [3262] = {.lex_state = 101}, + [3263] = {.lex_state = 876}, + [3264] = {.lex_state = 876}, + [3265] = {.lex_state = 876}, + [3266] = {.lex_state = 876}, + [3267] = {.lex_state = 876}, + [3268] = {.lex_state = 876}, + [3269] = {.lex_state = 876}, + [3270] = {.lex_state = 876}, + [3271] = {.lex_state = 876, .external_lex_state = 5}, + [3272] = {.lex_state = 876}, + [3273] = {.lex_state = 876}, + [3274] = {.lex_state = 876}, + [3275] = {.lex_state = 876}, + [3276] = {.lex_state = 101}, + [3277] = {.lex_state = 34}, + [3278] = {.lex_state = 876}, + [3279] = {.lex_state = 876}, + [3280] = {.lex_state = 876}, + [3281] = {.lex_state = 876}, + [3282] = {.lex_state = 876}, + [3283] = {.lex_state = 876}, + [3284] = {.lex_state = 876}, + [3285] = {.lex_state = 876}, + [3286] = {.lex_state = 876}, + [3287] = {.lex_state = 876}, + [3288] = {.lex_state = 876}, + [3289] = {.lex_state = 876}, + [3290] = {.lex_state = 876}, + [3291] = {.lex_state = 38}, + [3292] = {.lex_state = 876}, + [3293] = {.lex_state = 876, .external_lex_state = 6}, + [3294] = {.lex_state = 876}, + [3295] = {.lex_state = 876}, + [3296] = {.lex_state = 876}, + [3297] = {.lex_state = 876}, + [3298] = {.lex_state = 876}, + [3299] = {.lex_state = 876}, + [3300] = {.lex_state = 876}, + [3301] = {.lex_state = 876}, + [3302] = {.lex_state = 876}, + [3303] = {.lex_state = 876}, + [3304] = {.lex_state = 876}, + [3305] = {.lex_state = 876}, + [3306] = {.lex_state = 876}, + [3307] = {.lex_state = 876}, + [3308] = {.lex_state = 876}, + [3309] = {.lex_state = 876, .external_lex_state = 5}, + [3310] = {.lex_state = 876}, + [3311] = {.lex_state = 876}, + [3312] = {.lex_state = 876}, + [3313] = {.lex_state = 876}, + [3314] = {.lex_state = 876}, + [3315] = {.lex_state = 876}, + [3316] = {.lex_state = 876}, + [3317] = {.lex_state = 876, .external_lex_state = 5}, + [3318] = {.lex_state = 876, .external_lex_state = 5}, + [3319] = {.lex_state = 876}, + [3320] = {.lex_state = 876}, + [3321] = {.lex_state = 876}, + [3322] = {.lex_state = 876}, + [3323] = {.lex_state = 876}, + [3324] = {.lex_state = 876}, + [3325] = {.lex_state = 876}, + [3326] = {.lex_state = 876}, + [3327] = {.lex_state = 876}, + [3328] = {.lex_state = 876}, + [3329] = {.lex_state = 876}, + [3330] = {.lex_state = 21}, + [3331] = {.lex_state = 876}, + [3332] = {.lex_state = 876}, + [3333] = {.lex_state = 23}, + [3334] = {.lex_state = 876, .external_lex_state = 5}, + [3335] = {.lex_state = 876}, + [3336] = {.lex_state = 876}, + [3337] = {.lex_state = 876}, + [3338] = {.lex_state = 101}, + [3339] = {.lex_state = 876}, + [3340] = {.lex_state = 21}, + [3341] = {.lex_state = 876}, + [3342] = {.lex_state = 876}, + [3343] = {.lex_state = 38}, + [3344] = {.lex_state = 876}, + [3345] = {.lex_state = 876}, + [3346] = {.lex_state = 876}, + [3347] = {.lex_state = 23}, + [3348] = {.lex_state = 876}, + [3349] = {.lex_state = 876}, + [3350] = {.lex_state = 876}, + [3351] = {.lex_state = 101}, + [3352] = {.lex_state = 876}, + [3353] = {.lex_state = 876}, + [3354] = {.lex_state = 876}, + [3355] = {.lex_state = 876, .external_lex_state = 5}, + [3356] = {.lex_state = 876}, + [3357] = {.lex_state = 876, .external_lex_state = 5}, + [3358] = {.lex_state = 876}, + [3359] = {.lex_state = 876}, + [3360] = {.lex_state = 876}, + [3361] = {.lex_state = 876}, + [3362] = {.lex_state = 876}, + [3363] = {.lex_state = 876, .external_lex_state = 5}, + [3364] = {.lex_state = 23}, + [3365] = {.lex_state = 876}, + [3366] = {.lex_state = 876}, + [3367] = {.lex_state = 83}, + [3368] = {.lex_state = 876}, + [3369] = {.lex_state = 876}, + [3370] = {.lex_state = 34}, + [3371] = {.lex_state = 876}, + [3372] = {.lex_state = 876}, + [3373] = {.lex_state = 876}, + [3374] = {.lex_state = 876, .external_lex_state = 5}, + [3375] = {.lex_state = 876}, + [3376] = {.lex_state = 876}, + [3377] = {.lex_state = 876}, + [3378] = {.lex_state = 97}, + [3379] = {.lex_state = 876}, + [3380] = {.lex_state = 876}, + [3381] = {.lex_state = 876}, + [3382] = {.lex_state = 876}, + [3383] = {.lex_state = 876}, + [3384] = {.lex_state = 876}, + [3385] = {.lex_state = 876}, + [3386] = {.lex_state = 876}, + [3387] = {.lex_state = 876, .external_lex_state = 5}, + [3388] = {.lex_state = 876}, + [3389] = {.lex_state = 876}, + [3390] = {.lex_state = 876}, + [3391] = {.lex_state = 876}, + [3392] = {.lex_state = 876}, + [3393] = {.lex_state = 876}, + [3394] = {.lex_state = 876, .external_lex_state = 5}, + [3395] = {.lex_state = 876}, + [3396] = {.lex_state = 876}, + [3397] = {.lex_state = 876}, + [3398] = {.lex_state = 876}, + [3399] = {.lex_state = 876}, + [3400] = {.lex_state = 35}, + [3401] = {.lex_state = 876}, + [3402] = {.lex_state = 876}, + [3403] = {.lex_state = 876}, + [3404] = {.lex_state = 23}, + [3405] = {.lex_state = 876}, + [3406] = {.lex_state = 876}, + [3407] = {.lex_state = 876}, + [3408] = {.lex_state = 876}, + [3409] = {.lex_state = 33}, + [3410] = {.lex_state = 876}, + [3411] = {.lex_state = 876}, + [3412] = {.lex_state = 876}, + [3413] = {.lex_state = 876}, + [3414] = {.lex_state = 876}, + [3415] = {.lex_state = 876}, + [3416] = {.lex_state = 876}, + [3417] = {.lex_state = 876}, + [3418] = {.lex_state = 876}, + [3419] = {.lex_state = 21}, + [3420] = {.lex_state = 876}, + [3421] = {.lex_state = 876}, + [3422] = {.lex_state = 876}, + [3423] = {.lex_state = 876}, + [3424] = {.lex_state = 876}, + [3425] = {.lex_state = 876}, + [3426] = {.lex_state = 876}, + [3427] = {.lex_state = 876}, + [3428] = {.lex_state = 876}, + [3429] = {.lex_state = 876}, + [3430] = {.lex_state = 876}, + [3431] = {.lex_state = 876}, + [3432] = {.lex_state = 876}, + [3433] = {.lex_state = 876}, + [3434] = {.lex_state = 876}, + [3435] = {.lex_state = 876}, + [3436] = {.lex_state = 876}, + [3437] = {.lex_state = 876}, + [3438] = {.lex_state = 876}, + [3439] = {.lex_state = 876}, + [3440] = {.lex_state = 876}, + [3441] = {.lex_state = 876}, + [3442] = {.lex_state = 876}, + [3443] = {.lex_state = 876}, + [3444] = {.lex_state = 876}, + [3445] = {.lex_state = 21}, + [3446] = {.lex_state = 876}, + [3447] = {.lex_state = 876}, + [3448] = {.lex_state = 876}, + [3449] = {.lex_state = 876}, + [3450] = {.lex_state = 876}, + [3451] = {.lex_state = 876}, + [3452] = {.lex_state = 101}, + [3453] = {.lex_state = 876}, + [3454] = {.lex_state = 21}, + [3455] = {.lex_state = 876}, + [3456] = {.lex_state = 876}, + [3457] = {.lex_state = 876}, + [3458] = {.lex_state = 876, .external_lex_state = 5}, + [3459] = {.lex_state = 97}, + [3460] = {.lex_state = 876}, + [3461] = {.lex_state = 23}, + [3462] = {.lex_state = 876}, + [3463] = {.lex_state = 876}, + [3464] = {.lex_state = 876}, + [3465] = {.lex_state = 876}, + [3466] = {.lex_state = 101}, + [3467] = {.lex_state = 876}, + [3468] = {.lex_state = 876}, + [3469] = {.lex_state = 876}, + [3470] = {.lex_state = 876}, + [3471] = {.lex_state = 876, .external_lex_state = 5}, + [3472] = {.lex_state = 876, .external_lex_state = 5}, + [3473] = {.lex_state = 876}, + [3474] = {.lex_state = 876}, + [3475] = {.lex_state = 876}, + [3476] = {.lex_state = 876, .external_lex_state = 5}, + [3477] = {.lex_state = 876}, + [3478] = {.lex_state = 876}, + [3479] = {.lex_state = 876}, + [3480] = {.lex_state = 876}, + [3481] = {.lex_state = 876}, + [3482] = {.lex_state = 23}, + [3483] = {.lex_state = 876}, + [3484] = {.lex_state = 876}, + [3485] = {.lex_state = 34}, + [3486] = {.lex_state = 876}, + [3487] = {.lex_state = 876}, + [3488] = {.lex_state = 97}, + [3489] = {.lex_state = 23, .external_lex_state = 5}, + [3490] = {.lex_state = 23}, + [3491] = {.lex_state = 876}, + [3492] = {.lex_state = 876}, + [3493] = {.lex_state = 876}, + [3494] = {.lex_state = 876}, + [3495] = {.lex_state = 876}, + [3496] = {.lex_state = 23}, + [3497] = {.lex_state = 876}, + [3498] = {.lex_state = 23}, + [3499] = {.lex_state = 876}, + [3500] = {.lex_state = 876}, + [3501] = {.lex_state = 37}, + [3502] = {.lex_state = 876}, + [3503] = {.lex_state = 876}, + [3504] = {.lex_state = 876}, + [3505] = {.lex_state = 23}, + [3506] = {.lex_state = 23}, + [3507] = {.lex_state = 876}, + [3508] = {.lex_state = 23}, + [3509] = {.lex_state = 23}, + [3510] = {.lex_state = 23}, + [3511] = {.lex_state = 876}, + [3512] = {.lex_state = 23}, + [3513] = {.lex_state = 44}, + [3514] = {.lex_state = 876}, + [3515] = {.lex_state = 876}, + [3516] = {.lex_state = 876}, + [3517] = {.lex_state = 876}, + [3518] = {.lex_state = 23}, + [3519] = {.lex_state = 23}, + [3520] = {.lex_state = 23}, + [3521] = {.lex_state = 876}, + [3522] = {.lex_state = 876}, + [3523] = {.lex_state = 876}, + [3524] = {.lex_state = 23}, + [3525] = {.lex_state = 876}, + [3526] = {.lex_state = 44}, + [3527] = {.lex_state = 23}, + [3528] = {.lex_state = 23}, + [3529] = {.lex_state = 23}, + [3530] = {.lex_state = 876}, + [3531] = {.lex_state = 876}, + [3532] = {.lex_state = 876}, + [3533] = {.lex_state = 876}, + [3534] = {.lex_state = 23}, + [3535] = {.lex_state = 23}, + [3536] = {.lex_state = 23}, + [3537] = {.lex_state = 23}, + [3538] = {.lex_state = 23}, + [3539] = {.lex_state = 876}, + [3540] = {.lex_state = 23}, + [3541] = {.lex_state = 876}, + [3542] = {.lex_state = 23}, + [3543] = {.lex_state = 44}, + [3544] = {.lex_state = 876}, + [3545] = {.lex_state = 876}, + [3546] = {.lex_state = 23}, + [3547] = {.lex_state = 876}, + [3548] = {.lex_state = 23}, + [3549] = {.lex_state = 876}, + [3550] = {.lex_state = 23}, + [3551] = {.lex_state = 23}, + [3552] = {.lex_state = 96}, + [3553] = {.lex_state = 876}, + [3554] = {.lex_state = 876}, + [3555] = {.lex_state = 876}, + [3556] = {.lex_state = 23}, + [3557] = {.lex_state = 876}, + [3558] = {.lex_state = 876}, + [3559] = {.lex_state = 876}, + [3560] = {.lex_state = 876}, + [3561] = {.lex_state = 23}, + [3562] = {.lex_state = 876}, + [3563] = {.lex_state = 96}, + [3564] = {.lex_state = 876}, + [3565] = {.lex_state = 876}, + [3566] = {.lex_state = 23}, + [3567] = {.lex_state = 23}, + [3568] = {.lex_state = 876}, + [3569] = {.lex_state = 23}, + [3570] = {.lex_state = 23}, + [3571] = {.lex_state = 23}, + [3572] = {.lex_state = 876}, + [3573] = {.lex_state = 23}, + [3574] = {.lex_state = 23}, + [3575] = {.lex_state = 876}, + [3576] = {.lex_state = 876}, + [3577] = {.lex_state = 876}, + [3578] = {.lex_state = 876}, + [3579] = {.lex_state = 102}, + [3580] = {.lex_state = 876}, + [3581] = {.lex_state = 876}, + [3582] = {.lex_state = 876}, + [3583] = {.lex_state = 876}, + [3584] = {.lex_state = 876}, + [3585] = {.lex_state = 23}, + [3586] = {.lex_state = 876}, + [3587] = {.lex_state = 23}, + [3588] = {.lex_state = 876}, + [3589] = {.lex_state = 876}, + [3590] = {.lex_state = 23}, + [3591] = {.lex_state = 36}, + [3592] = {.lex_state = 876}, + [3593] = {.lex_state = 876}, + [3594] = {.lex_state = 876}, + [3595] = {.lex_state = 102}, + [3596] = {.lex_state = 23}, + [3597] = {.lex_state = 36}, + [3598] = {.lex_state = 21}, + [3599] = {.lex_state = 23}, + [3600] = {.lex_state = 23}, + [3601] = {.lex_state = 876}, + [3602] = {.lex_state = 876}, + [3603] = {.lex_state = 876}, + [3604] = {.lex_state = 23}, + [3605] = {.lex_state = 23}, + [3606] = {.lex_state = 876}, + [3607] = {.lex_state = 876}, + [3608] = {.lex_state = 23}, + [3609] = {.lex_state = 876}, + [3610] = {.lex_state = 23}, + [3611] = {.lex_state = 23}, + [3612] = {.lex_state = 876}, + [3613] = {.lex_state = 876}, + [3614] = {.lex_state = 876}, + [3615] = {.lex_state = 876}, + [3616] = {.lex_state = 23}, + [3617] = {.lex_state = 23}, + [3618] = {.lex_state = 876}, + [3619] = {.lex_state = 876}, + [3620] = {.lex_state = 876}, + [3621] = {.lex_state = 876}, + [3622] = {.lex_state = 876}, + [3623] = {.lex_state = 23}, + [3624] = {.lex_state = 23}, + [3625] = {.lex_state = 876}, + [3626] = {.lex_state = 23}, + [3627] = {.lex_state = 876, .external_lex_state = 5}, + [3628] = {.lex_state = 23}, + [3629] = {.lex_state = 23}, + [3630] = {.lex_state = 23}, + [3631] = {.lex_state = 876}, + [3632] = {.lex_state = 102}, + [3633] = {.lex_state = 876}, + [3634] = {.lex_state = 876}, + [3635] = {.lex_state = 876}, + [3636] = {.lex_state = 876}, + [3637] = {.lex_state = 876}, + [3638] = {.lex_state = 876}, + [3639] = {.lex_state = 876}, + [3640] = {.lex_state = 44}, + [3641] = {.lex_state = 876}, + [3642] = {.lex_state = 23}, + [3643] = {.lex_state = 23}, + [3644] = {.lex_state = 23}, + [3645] = {.lex_state = 876}, + [3646] = {.lex_state = 23}, + [3647] = {.lex_state = 876}, + [3648] = {.lex_state = 876}, + [3649] = {.lex_state = 876}, + [3650] = {.lex_state = 876}, + [3651] = {.lex_state = 876}, + [3652] = {.lex_state = 876}, + [3653] = {.lex_state = 876}, + [3654] = {.lex_state = 876}, + [3655] = {.lex_state = 876}, + [3656] = {.lex_state = 876}, + [3657] = {.lex_state = 876}, + [3658] = {.lex_state = 876}, + [3659] = {.lex_state = 23}, + [3660] = {.lex_state = 36}, + [3661] = {.lex_state = 23}, + [3662] = {.lex_state = 23}, + [3663] = {.lex_state = 876}, + [3664] = {.lex_state = 876}, + [3665] = {.lex_state = 44}, + [3666] = {.lex_state = 876}, + [3667] = {.lex_state = 876}, + [3668] = {.lex_state = 23}, + [3669] = {.lex_state = 876}, + [3670] = {.lex_state = 44}, + [3671] = {.lex_state = 23}, + [3672] = {.lex_state = 876}, + [3673] = {.lex_state = 23}, + [3674] = {.lex_state = 876}, + [3675] = {.lex_state = 23}, + [3676] = {.lex_state = 876}, + [3677] = {.lex_state = 876}, + [3678] = {.lex_state = 876}, + [3679] = {.lex_state = 876}, + [3680] = {.lex_state = 876}, + [3681] = {.lex_state = 23}, + [3682] = {.lex_state = 23}, + [3683] = {.lex_state = 876}, + [3684] = {.lex_state = 876}, + [3685] = {.lex_state = 23}, + [3686] = {.lex_state = 23}, + [3687] = {.lex_state = 876}, + [3688] = {.lex_state = 876}, + [3689] = {.lex_state = 23}, + [3690] = {.lex_state = 876}, + [3691] = {.lex_state = 876}, + [3692] = {.lex_state = 876}, + [3693] = {.lex_state = 876}, + [3694] = {.lex_state = 876}, + [3695] = {.lex_state = 876}, + [3696] = {.lex_state = 876}, + [3697] = {.lex_state = 876}, + [3698] = {.lex_state = 876}, + [3699] = {.lex_state = 876}, + [3700] = {.lex_state = 876}, + [3701] = {.lex_state = 876}, + [3702] = {.lex_state = 876}, + [3703] = {.lex_state = 876}, + [3704] = {.lex_state = 876}, + [3705] = {.lex_state = 876}, + [3706] = {.lex_state = 876}, + [3707] = {.lex_state = 876}, + [3708] = {.lex_state = 876, .external_lex_state = 6}, + [3709] = {.lex_state = 876}, + [3710] = {.lex_state = 876}, + [3711] = {.lex_state = 876}, + [3712] = {.lex_state = 876}, + [3713] = {.lex_state = 876}, + [3714] = {.lex_state = 876}, + [3715] = {.lex_state = 23}, + [3716] = {.lex_state = 876}, + [3717] = {.lex_state = 38}, + [3718] = {.lex_state = 23}, + [3719] = {.lex_state = 876}, + [3720] = {.lex_state = 876}, + [3721] = {.lex_state = 876}, + [3722] = {.lex_state = 876}, + [3723] = {.lex_state = 36}, + [3724] = {.lex_state = 876}, + [3725] = {.lex_state = 36}, + [3726] = {.lex_state = 876}, + [3727] = {.lex_state = 876}, + [3728] = {.lex_state = 876}, + [3729] = {.lex_state = 876}, + [3730] = {.lex_state = 876}, + [3731] = {.lex_state = 876}, + [3732] = {.lex_state = 876}, + [3733] = {.lex_state = 876}, + [3734] = {.lex_state = 876}, + [3735] = {.lex_state = 876}, + [3736] = {.lex_state = 23}, + [3737] = {.lex_state = 876}, + [3738] = {.lex_state = 876}, + [3739] = {.lex_state = 876}, + [3740] = {.lex_state = 876}, + [3741] = {.lex_state = 876, .external_lex_state = 5}, + [3742] = {.lex_state = 876}, + [3743] = {.lex_state = 876}, + [3744] = {.lex_state = 876}, + [3745] = {.lex_state = 876}, + [3746] = {.lex_state = 23}, + [3747] = {.lex_state = 876}, + [3748] = {.lex_state = 876}, + [3749] = {.lex_state = 876}, + [3750] = {.lex_state = 23}, + [3751] = {.lex_state = 876}, + [3752] = {.lex_state = 876}, + [3753] = {.lex_state = 876}, + [3754] = {.lex_state = 876}, + [3755] = {.lex_state = 23}, + [3756] = {.lex_state = 876}, + [3757] = {.lex_state = 876}, + [3758] = {.lex_state = 23}, + [3759] = {.lex_state = 876}, + [3760] = {.lex_state = 876}, + [3761] = {.lex_state = 876}, + [3762] = {.lex_state = 876}, + [3763] = {.lex_state = 876}, + [3764] = {.lex_state = 876}, + [3765] = {.lex_state = 23}, + [3766] = {.lex_state = 36}, + [3767] = {.lex_state = 44}, + [3768] = {.lex_state = 876}, + [3769] = {.lex_state = 876}, + [3770] = {.lex_state = 23}, + [3771] = {.lex_state = 876}, + [3772] = {.lex_state = 23}, + [3773] = {.lex_state = 876}, + [3774] = {.lex_state = 876}, + [3775] = {.lex_state = 876}, + [3776] = {.lex_state = 876}, + [3777] = {.lex_state = 876}, + [3778] = {.lex_state = 876}, + [3779] = {.lex_state = 23}, + [3780] = {.lex_state = 23}, + [3781] = {.lex_state = 876}, + [3782] = {.lex_state = 876}, + [3783] = {.lex_state = 876}, + [3784] = {.lex_state = 876}, + [3785] = {.lex_state = 876}, + [3786] = {.lex_state = 876}, + [3787] = {.lex_state = 23}, + [3788] = {.lex_state = 876}, + [3789] = {.lex_state = 23}, + [3790] = {.lex_state = 876}, + [3791] = {.lex_state = 876}, + [3792] = {.lex_state = 23}, + [3793] = {.lex_state = 876}, + [3794] = {.lex_state = 876}, + [3795] = {.lex_state = 23}, + [3796] = {.lex_state = 97}, + [3797] = {.lex_state = 876}, + [3798] = {.lex_state = 876}, + [3799] = {.lex_state = 97}, + [3800] = {.lex_state = 876}, + [3801] = {.lex_state = 876}, + [3802] = {.lex_state = 876}, + [3803] = {.lex_state = 876}, + [3804] = {.lex_state = 876}, + [3805] = {.lex_state = 44}, + [3806] = {.lex_state = 876}, + [3807] = {.lex_state = 876}, + [3808] = {.lex_state = 876}, + [3809] = {.lex_state = 876}, + [3810] = {.lex_state = 23}, + [3811] = {.lex_state = 23}, + [3812] = {.lex_state = 876}, + [3813] = {.lex_state = 102}, + [3814] = {.lex_state = 23}, + [3815] = {.lex_state = 876}, + [3816] = {.lex_state = 876}, + [3817] = {.lex_state = 876}, + [3818] = {.lex_state = 876}, + [3819] = {.lex_state = 876}, + [3820] = {.lex_state = 876}, + [3821] = {.lex_state = 23}, + [3822] = {.lex_state = 36}, + [3823] = {.lex_state = 876}, + [3824] = {.lex_state = 102}, + [3825] = {.lex_state = 876}, + [3826] = {.lex_state = 876}, + [3827] = {.lex_state = 876}, + [3828] = {.lex_state = 876}, + [3829] = {.lex_state = 876}, + [3830] = {.lex_state = 876}, + [3831] = {.lex_state = 23}, + [3832] = {.lex_state = 876}, + [3833] = {.lex_state = 36}, + [3834] = {.lex_state = 876}, + [3835] = {.lex_state = 876}, + [3836] = {.lex_state = 36}, + [3837] = {.lex_state = 876}, + [3838] = {.lex_state = 876}, + [3839] = {.lex_state = 23}, + [3840] = {.lex_state = 23}, + [3841] = {.lex_state = 876}, + [3842] = {.lex_state = 876}, + [3843] = {.lex_state = 876}, + [3844] = {.lex_state = 876}, + [3845] = {.lex_state = 23}, + [3846] = {.lex_state = 876}, + [3847] = {.lex_state = 102}, + [3848] = {.lex_state = 876}, + [3849] = {.lex_state = 102}, + [3850] = {.lex_state = 876}, + [3851] = {.lex_state = 876}, + [3852] = {.lex_state = 876}, + [3853] = {.lex_state = 876}, + [3854] = {.lex_state = 876}, + [3855] = {.lex_state = 23}, + [3856] = {.lex_state = 102}, + [3857] = {.lex_state = 23}, + [3858] = {.lex_state = 23}, + [3859] = {.lex_state = 876}, + [3860] = {.lex_state = 876}, + [3861] = {.lex_state = 876}, + [3862] = {.lex_state = 876}, + [3863] = {.lex_state = 876}, + [3864] = {.lex_state = 876}, + [3865] = {.lex_state = 876}, + [3866] = {.lex_state = 876}, + [3867] = {.lex_state = 876}, + [3868] = {.lex_state = 876}, + [3869] = {.lex_state = 876}, + [3870] = {.lex_state = 36}, + [3871] = {.lex_state = 23}, + [3872] = {.lex_state = 876}, + [3873] = {.lex_state = 23, .external_lex_state = 5}, + [3874] = {.lex_state = 876}, + [3875] = {.lex_state = 23}, + [3876] = {.lex_state = 876}, + [3877] = {.lex_state = 876}, + [3878] = {.lex_state = 876}, + [3879] = {.lex_state = 876}, + [3880] = {.lex_state = 876}, + [3881] = {.lex_state = 876}, + [3882] = {.lex_state = 876}, + [3883] = {.lex_state = 876}, + [3884] = {.lex_state = 876}, + [3885] = {.lex_state = 876}, + [3886] = {.lex_state = 876}, + [3887] = {.lex_state = 876}, + [3888] = {.lex_state = 876}, + [3889] = {.lex_state = 876}, + [3890] = {.lex_state = 876}, + [3891] = {.lex_state = 876}, + [3892] = {.lex_state = 23}, + [3893] = {.lex_state = 23}, + [3894] = {.lex_state = 44}, + [3895] = {.lex_state = 876}, + [3896] = {.lex_state = 876}, + [3897] = {.lex_state = 876}, + [3898] = {.lex_state = 23}, + [3899] = {.lex_state = 876}, + [3900] = {.lex_state = 876}, + [3901] = {.lex_state = 23}, + [3902] = {.lex_state = 876}, + [3903] = {.lex_state = 876}, + [3904] = {.lex_state = 876}, + [3905] = {.lex_state = 23}, + [3906] = {.lex_state = 876}, + [3907] = {.lex_state = 876}, + [3908] = {.lex_state = 876}, + [3909] = {.lex_state = 876}, + [3910] = {.lex_state = 876}, + [3911] = {.lex_state = 876}, + [3912] = {.lex_state = 876}, + [3913] = {.lex_state = 876}, + [3914] = {.lex_state = 876}, + [3915] = {.lex_state = 876}, + [3916] = {.lex_state = 876}, + [3917] = {.lex_state = 876}, + [3918] = {.lex_state = 876}, + [3919] = {.lex_state = 876}, + [3920] = {.lex_state = 36}, + [3921] = {.lex_state = 876}, + [3922] = {.lex_state = 876}, + [3923] = {.lex_state = 23}, + [3924] = {.lex_state = 876}, + [3925] = {.lex_state = 876}, + [3926] = {.lex_state = 876}, + [3927] = {.lex_state = 36}, + [3928] = {.lex_state = 876}, + [3929] = {.lex_state = 876}, + [3930] = {.lex_state = 876}, + [3931] = {.lex_state = 876}, + [3932] = {.lex_state = 876}, + [3933] = {.lex_state = 876}, + [3934] = {.lex_state = 23}, + [3935] = {.lex_state = 36}, + [3936] = {.lex_state = 876}, + [3937] = {.lex_state = 876}, + [3938] = {.lex_state = 23}, + [3939] = {.lex_state = 876}, + [3940] = {.lex_state = 876}, + [3941] = {.lex_state = 876}, + [3942] = {.lex_state = 876}, + [3943] = {.lex_state = 876}, + [3944] = {.lex_state = 876}, + [3945] = {.lex_state = 876}, + [3946] = {.lex_state = 876}, + [3947] = {.lex_state = 876}, + [3948] = {.lex_state = 876}, + [3949] = {.lex_state = 876}, + [3950] = {.lex_state = 876}, + [3951] = {.lex_state = 876}, + [3952] = {.lex_state = 876}, + [3953] = {.lex_state = 876}, + [3954] = {.lex_state = 876}, + [3955] = {.lex_state = 23}, + [3956] = {.lex_state = 876}, + [3957] = {.lex_state = 23}, + [3958] = {.lex_state = 876}, + [3959] = {.lex_state = 23}, + [3960] = {.lex_state = 36}, + [3961] = {.lex_state = 23}, + [3962] = {.lex_state = 876}, + [3963] = {.lex_state = 23}, + [3964] = {.lex_state = 876}, + [3965] = {.lex_state = 876}, + [3966] = {.lex_state = 876}, + [3967] = {.lex_state = 876}, + [3968] = {.lex_state = 876}, + [3969] = {.lex_state = 876}, + [3970] = {.lex_state = 36}, + [3971] = {.lex_state = 876}, + [3972] = {.lex_state = 876}, + [3973] = {.lex_state = 876}, + [3974] = {.lex_state = 876}, + [3975] = {.lex_state = 36}, + [3976] = {.lex_state = 23}, + [3977] = {.lex_state = 876}, + [3978] = {.lex_state = 23}, + [3979] = {.lex_state = 23}, + [3980] = {.lex_state = 23}, + [3981] = {.lex_state = 876}, + [3982] = {.lex_state = 876}, + [3983] = {.lex_state = 876}, + [3984] = {.lex_state = 23}, + [3985] = {.lex_state = 876}, + [3986] = {.lex_state = 102}, + [3987] = {.lex_state = 876}, + [3988] = {.lex_state = 876}, + [3989] = {.lex_state = 876}, + [3990] = {.lex_state = 876}, + [3991] = {.lex_state = 876}, + [3992] = {.lex_state = 23}, + [3993] = {.lex_state = 876}, + [3994] = {.lex_state = 876}, + [3995] = {.lex_state = 23}, + [3996] = {.lex_state = 23}, + [3997] = {.lex_state = 23}, + [3998] = {.lex_state = 23}, + [3999] = {.lex_state = 21}, + [4000] = {.lex_state = 876}, + [4001] = {.lex_state = 876}, + [4002] = {.lex_state = 876}, + [4003] = {.lex_state = 876}, + [4004] = {.lex_state = 23}, + [4005] = {.lex_state = 876}, + [4006] = {.lex_state = 876}, + [4007] = {.lex_state = 876}, + [4008] = {.lex_state = 23}, + [4009] = {.lex_state = 23}, + [4010] = {.lex_state = 876}, + [4011] = {.lex_state = 23}, + [4012] = {.lex_state = 876}, + [4013] = {.lex_state = 102}, + [4014] = {.lex_state = 876}, + [4015] = {.lex_state = 876}, + [4016] = {.lex_state = 23}, + [4017] = {.lex_state = 876}, + [4018] = {.lex_state = 876}, [4019] = {.lex_state = 44}, - [4020] = {.lex_state = 48}, - [4021] = {.lex_state = 875}, - [4022] = {.lex_state = 875}, - [4023] = {.lex_state = 48}, - [4024] = {.lex_state = 875}, - [4025] = {.lex_state = 48}, - [4026] = {.lex_state = 48}, - [4027] = {.lex_state = 875}, - [4028] = {.lex_state = 875}, - [4029] = {.lex_state = 875}, - [4030] = {.lex_state = 875}, - [4031] = {.lex_state = 48}, - [4032] = {.lex_state = 875}, - [4033] = {.lex_state = 875}, - [4034] = {.lex_state = 48}, - [4035] = {.lex_state = 48}, - [4036] = {.lex_state = 875}, - [4037] = {.lex_state = 875}, - [4038] = {.lex_state = 875}, - [4039] = {.lex_state = 875}, - [4040] = {.lex_state = 875}, - [4041] = {.lex_state = 875}, - [4042] = {.lex_state = 875}, - [4043] = {.lex_state = 875}, - [4044] = {.lex_state = 875}, - [4045] = {.lex_state = 875}, - [4046] = {.lex_state = 875}, - [4047] = {.lex_state = 48}, - [4048] = {.lex_state = 875}, - [4049] = {.lex_state = 48}, - [4050] = {.lex_state = 875}, - [4051] = {.lex_state = 48}, - [4052] = {.lex_state = 48}, - [4053] = {.lex_state = 875}, - [4054] = {.lex_state = 875}, - [4055] = {.lex_state = 875}, - [4056] = {.lex_state = 48}, - [4057] = {.lex_state = 875}, - [4058] = {.lex_state = 48}, - [4059] = {.lex_state = 48}, - [4060] = {.lex_state = 58}, - [4061] = {.lex_state = 875}, - [4062] = {.lex_state = 58}, - [4063] = {.lex_state = 875}, - [4064] = {.lex_state = 875}, - [4065] = {.lex_state = 48}, - [4066] = {.lex_state = 875}, - [4067] = {.lex_state = 48}, - [4068] = {.lex_state = 875}, - [4069] = {.lex_state = 875}, - [4070] = {.lex_state = 875}, - [4071] = {.lex_state = 48}, - [4072] = {.lex_state = 875}, - [4073] = {.lex_state = 48}, - [4074] = {.lex_state = 48}, - [4075] = {.lex_state = 875}, - [4076] = {.lex_state = 875}, - [4077] = {.lex_state = 875}, - [4078] = {.lex_state = 875}, - [4079] = {.lex_state = 875}, - [4080] = {.lex_state = 875}, - [4081] = {.lex_state = 875}, - [4082] = {.lex_state = 875}, - [4083] = {.lex_state = 875}, - [4084] = {.lex_state = 875}, - [4085] = {.lex_state = 48}, - [4086] = {.lex_state = 875}, - [4087] = {.lex_state = 48}, - [4088] = {.lex_state = 875}, - [4089] = {.lex_state = 875}, - [4090] = {.lex_state = 875}, - [4091] = {.lex_state = 875}, - [4092] = {.lex_state = 875}, - [4093] = {.lex_state = 48}, - [4094] = {.lex_state = 875}, - [4095] = {.lex_state = 875}, - [4096] = {.lex_state = 96}, - [4097] = {.lex_state = 875}, - [4098] = {.lex_state = 48}, - [4099] = {.lex_state = 875}, - [4100] = {.lex_state = 875}, - [4101] = {.lex_state = 48}, - [4102] = {.lex_state = 875}, - [4103] = {.lex_state = 875}, - [4104] = {.lex_state = 58}, - [4105] = {.lex_state = 875}, - [4106] = {.lex_state = 875}, - [4107] = {.lex_state = 875}, - [4108] = {.lex_state = 875}, - [4109] = {.lex_state = 875}, - [4110] = {.lex_state = 875}, - [4111] = {.lex_state = 58}, - [4112] = {.lex_state = 875}, - [4113] = {.lex_state = 48}, - [4114] = {.lex_state = 875}, - [4115] = {.lex_state = 875}, - [4116] = {.lex_state = 875}, - [4117] = {.lex_state = 875}, - [4118] = {.lex_state = 48}, - [4119] = {.lex_state = 875}, - [4120] = {.lex_state = 34}, - [4121] = {.lex_state = 875}, - [4122] = {.lex_state = 875}, - [4123] = {.lex_state = 875}, - [4124] = {.lex_state = 875}, - [4125] = {.lex_state = 875}, - [4126] = {.lex_state = 875}, - [4127] = {.lex_state = 875}, - [4128] = {.lex_state = 875}, - [4129] = {.lex_state = 875}, - [4130] = {.lex_state = 875}, - [4131] = {.lex_state = 875}, - [4132] = {.lex_state = 875}, - [4133] = {.lex_state = 875}, - [4134] = {.lex_state = 875}, - [4135] = {.lex_state = 875}, - [4136] = {.lex_state = 875}, - [4137] = {.lex_state = 96}, - [4138] = {.lex_state = 875}, - [4139] = {.lex_state = 875}, - [4140] = {.lex_state = 875}, - [4141] = {.lex_state = 875}, - [4142] = {.lex_state = 875}, - [4143] = {.lex_state = 875}, - [4144] = {.lex_state = 875}, - [4145] = {.lex_state = 48}, - [4146] = {.lex_state = 875}, - [4147] = {.lex_state = 875}, - [4148] = {.lex_state = 96}, - [4149] = {.lex_state = 875}, - [4150] = {.lex_state = 48}, - [4151] = {.lex_state = 48}, - [4152] = {.lex_state = 875}, - [4153] = {.lex_state = 875}, - [4154] = {.lex_state = 875}, - [4155] = {.lex_state = 875}, - [4156] = {.lex_state = 875}, - [4157] = {.lex_state = 875}, - [4158] = {.lex_state = 875}, - [4159] = {.lex_state = 875}, - [4160] = {.lex_state = 48}, - [4161] = {.lex_state = 875}, - [4162] = {.lex_state = 48}, - [4163] = {.lex_state = 875}, - [4164] = {.lex_state = 875}, - [4165] = {.lex_state = 875}, - [4166] = {.lex_state = 875}, - [4167] = {.lex_state = 875}, - [4168] = {.lex_state = 875}, - [4169] = {.lex_state = 875}, - [4170] = {.lex_state = 875}, - [4171] = {.lex_state = 875}, - [4172] = {.lex_state = 875}, - [4173] = {.lex_state = 875}, - [4174] = {.lex_state = 875}, - [4175] = {.lex_state = 875}, - [4176] = {.lex_state = 875}, - [4177] = {.lex_state = 875}, - [4178] = {.lex_state = 875}, - [4179] = {.lex_state = 875}, - [4180] = {.lex_state = 875}, - [4181] = {.lex_state = 48}, - [4182] = {.lex_state = 48}, - [4183] = {.lex_state = 875}, - [4184] = {.lex_state = 875}, - [4185] = {.lex_state = 875}, - [4186] = {.lex_state = 58}, - [4187] = {.lex_state = 875}, - [4188] = {.lex_state = 875}, - [4189] = {.lex_state = 875}, - [4190] = {.lex_state = 48}, - [4191] = {.lex_state = 875}, - [4192] = {.lex_state = 875}, - [4193] = {.lex_state = 875}, - [4194] = {.lex_state = 875}, - [4195] = {.lex_state = 48}, - [4196] = {.lex_state = 875}, - [4197] = {.lex_state = 875}, - [4198] = {.lex_state = 875}, - [4199] = {.lex_state = 875}, - [4200] = {.lex_state = 875}, - [4201] = {.lex_state = 48}, - [4202] = {.lex_state = 875}, - [4203] = {.lex_state = 875}, - [4204] = {.lex_state = 875}, - [4205] = {.lex_state = 875}, - [4206] = {.lex_state = 875}, - [4207] = {.lex_state = 875}, - [4208] = {.lex_state = 48}, - [4209] = {.lex_state = 48}, - [4210] = {.lex_state = 875}, - [4211] = {.lex_state = 875}, - [4212] = {.lex_state = 875}, - [4213] = {.lex_state = 48}, - [4214] = {.lex_state = 875}, - [4215] = {.lex_state = 875}, - [4216] = {.lex_state = 875}, - [4217] = {.lex_state = 875}, - [4218] = {.lex_state = 875}, - [4219] = {.lex_state = 48}, - [4220] = {.lex_state = 875}, - [4221] = {.lex_state = 48}, - [4222] = {.lex_state = 875}, - [4223] = {.lex_state = 875}, - [4224] = {.lex_state = 48}, - [4225] = {.lex_state = 875}, - [4226] = {.lex_state = 875}, - [4227] = {.lex_state = 875}, - [4228] = {.lex_state = 875}, - [4229] = {.lex_state = 875}, - [4230] = {.lex_state = 875}, - [4231] = {.lex_state = 875}, - [4232] = {.lex_state = 875}, - [4233] = {.lex_state = 875}, - [4234] = {.lex_state = 48}, - [4235] = {.lex_state = 875}, - [4236] = {.lex_state = 48}, - [4237] = {.lex_state = 48}, - [4238] = {.lex_state = 875}, - [4239] = {.lex_state = 875}, - [4240] = {.lex_state = 875}, - [4241] = {.lex_state = 875}, - [4242] = {.lex_state = 48}, - [4243] = {.lex_state = 875}, - [4244] = {.lex_state = 875}, - [4245] = {.lex_state = 48}, - [4246] = {.lex_state = 875}, - [4247] = {.lex_state = 875}, - [4248] = {.lex_state = 875}, - [4249] = {.lex_state = 875}, - [4250] = {.lex_state = 48}, - [4251] = {.lex_state = 875}, - [4252] = {.lex_state = 875}, - [4253] = {.lex_state = 875}, - [4254] = {.lex_state = 875}, - [4255] = {.lex_state = 875}, - [4256] = {.lex_state = 875}, - [4257] = {.lex_state = 875}, - [4258] = {.lex_state = 875}, - [4259] = {.lex_state = 875}, - [4260] = {.lex_state = 875}, - [4261] = {.lex_state = 875}, - [4262] = {.lex_state = 875}, - [4263] = {.lex_state = 875}, - [4264] = {.lex_state = 875}, - [4265] = {.lex_state = 48}, - [4266] = {.lex_state = 875}, - [4267] = {.lex_state = 875}, - [4268] = {.lex_state = 48}, - [4269] = {.lex_state = 875}, - [4270] = {.lex_state = 48}, - [4271] = {.lex_state = 58}, - [4272] = {.lex_state = 875}, - [4273] = {.lex_state = 875}, - [4274] = {.lex_state = 58}, - [4275] = {.lex_state = 875}, - [4276] = {.lex_state = 875}, - [4277] = {.lex_state = 875}, - [4278] = {.lex_state = 875}, - [4279] = {.lex_state = 875}, - [4280] = {.lex_state = 875}, - [4281] = {.lex_state = 875}, - [4282] = {.lex_state = 875}, - [4283] = {.lex_state = 48}, - [4284] = {.lex_state = 875}, - [4285] = {.lex_state = 875}, - [4286] = {.lex_state = 875}, - [4287] = {.lex_state = 875}, - [4288] = {.lex_state = 875}, - [4289] = {.lex_state = 875}, - [4290] = {.lex_state = 875}, - [4291] = {.lex_state = 48}, - [4292] = {.lex_state = 48}, - [4293] = {.lex_state = 58}, - [4294] = {.lex_state = 875}, - [4295] = {.lex_state = 875}, - [4296] = {.lex_state = 58}, - [4297] = {.lex_state = 875}, - [4298] = {.lex_state = 875}, - [4299] = {.lex_state = 875}, - [4300] = {.lex_state = 875}, - [4301] = {.lex_state = 875}, - [4302] = {.lex_state = 48}, - [4303] = {.lex_state = 48}, - [4304] = {.lex_state = 875}, - [4305] = {.lex_state = 875}, - [4306] = {.lex_state = 875}, - [4307] = {.lex_state = 875}, - [4308] = {.lex_state = 875}, - [4309] = {.lex_state = 875}, - [4310] = {.lex_state = 875}, - [4311] = {.lex_state = 875}, - [4312] = {.lex_state = 48}, - [4313] = {.lex_state = 96}, - [4314] = {.lex_state = 48}, - [4315] = {.lex_state = 875}, - [4316] = {.lex_state = 875}, - [4317] = {.lex_state = 875}, - [4318] = {.lex_state = 875}, - [4319] = {.lex_state = 48}, - [4320] = {.lex_state = 875}, - [4321] = {.lex_state = 875}, - [4322] = {.lex_state = 875}, - [4323] = {.lex_state = 875}, - [4324] = {.lex_state = 48}, - [4325] = {.lex_state = 875}, - [4326] = {.lex_state = 875}, - [4327] = {.lex_state = 48}, - [4328] = {.lex_state = 48}, - [4329] = {.lex_state = 875}, - [4330] = {.lex_state = 875}, - [4331] = {.lex_state = 58}, - [4332] = {.lex_state = 875}, - [4333] = {.lex_state = 875}, - [4334] = {.lex_state = 875}, - [4335] = {.lex_state = 875}, - [4336] = {.lex_state = 875}, - [4337] = {.lex_state = 875}, - [4338] = {.lex_state = 875}, - [4339] = {.lex_state = 875}, - [4340] = {.lex_state = 875}, - [4341] = {.lex_state = 875}, - [4342] = {.lex_state = 875}, - [4343] = {.lex_state = 875}, - [4344] = {.lex_state = 875}, - [4345] = {.lex_state = 875}, - [4346] = {.lex_state = 875}, - [4347] = {.lex_state = 875}, - [4348] = {.lex_state = 875}, - [4349] = {.lex_state = 875}, - [4350] = {.lex_state = 875}, - [4351] = {.lex_state = 875}, - [4352] = {.lex_state = 875}, - [4353] = {.lex_state = 48}, - [4354] = {.lex_state = 875}, - [4355] = {.lex_state = 875}, - [4356] = {.lex_state = 875}, - [4357] = {.lex_state = 875}, - [4358] = {.lex_state = 875}, - [4359] = {.lex_state = 48}, - [4360] = {.lex_state = 875}, - [4361] = {.lex_state = 48}, - [4362] = {.lex_state = 875}, - [4363] = {.lex_state = 48}, - [4364] = {.lex_state = 875}, - [4365] = {.lex_state = 875}, - [4366] = {.lex_state = 875}, - [4367] = {.lex_state = 875}, - [4368] = {.lex_state = 875}, - [4369] = {.lex_state = 875}, - [4370] = {.lex_state = 875}, - [4371] = {.lex_state = 875}, - [4372] = {.lex_state = 875}, - [4373] = {.lex_state = 875}, - [4374] = {.lex_state = 875}, - [4375] = {.lex_state = 48}, - [4376] = {.lex_state = 875}, - [4377] = {.lex_state = 875}, - [4378] = {.lex_state = 875}, - [4379] = {.lex_state = 48}, - [4380] = {.lex_state = 875}, - [4381] = {.lex_state = 875}, - [4382] = {.lex_state = 875}, - [4383] = {.lex_state = 875}, - [4384] = {.lex_state = 875}, - [4385] = {.lex_state = 875}, - [4386] = {.lex_state = 875}, - [4387] = {.lex_state = 875}, - [4388] = {.lex_state = 48}, - [4389] = {.lex_state = 875}, - [4390] = {.lex_state = 875}, - [4391] = {.lex_state = 875}, - [4392] = {.lex_state = 875}, - [4393] = {.lex_state = 48}, - [4394] = {.lex_state = 875}, - [4395] = {.lex_state = 48}, - [4396] = {.lex_state = 48}, - [4397] = {.lex_state = 48}, - [4398] = {.lex_state = 875}, - [4399] = {.lex_state = 48}, - [4400] = {.lex_state = 48}, - [4401] = {.lex_state = 875}, - [4402] = {.lex_state = 48}, - [4403] = {.lex_state = 48}, - [4404] = {.lex_state = 875}, - [4405] = {.lex_state = 48}, - [4406] = {.lex_state = 875}, - [4407] = {.lex_state = 875}, - [4408] = {.lex_state = 875}, - [4409] = {.lex_state = 48}, - [4410] = {.lex_state = 48}, - [4411] = {.lex_state = 875}, - [4412] = {.lex_state = 875}, - [4413] = {.lex_state = 875}, - [4414] = {.lex_state = 875}, - [4415] = {.lex_state = 48}, - [4416] = {.lex_state = 48}, - [4417] = {.lex_state = 875}, - [4418] = {.lex_state = 875}, - [4419] = {.lex_state = 875}, - [4420] = {.lex_state = 875}, - [4421] = {.lex_state = 875}, - [4422] = {.lex_state = 875}, - [4423] = {.lex_state = 875}, - [4424] = {.lex_state = 875}, - [4425] = {.lex_state = 58}, - [4426] = {.lex_state = 58}, - [4427] = {.lex_state = 875}, - [4428] = {.lex_state = 875}, - [4429] = {.lex_state = 875}, - [4430] = {.lex_state = 875}, - [4431] = {.lex_state = 875}, - [4432] = {.lex_state = 58}, - [4433] = {.lex_state = 875}, - [4434] = {.lex_state = 875}, - [4435] = {.lex_state = 48}, - [4436] = {.lex_state = 58}, - [4437] = {.lex_state = 58}, - [4438] = {.lex_state = 875}, - [4439] = {.lex_state = 875}, - [4440] = {.lex_state = 875}, - [4441] = {.lex_state = 875}, - [4442] = {.lex_state = 48}, - [4443] = {.lex_state = 875}, - [4444] = {.lex_state = 875}, - [4445] = {.lex_state = 875}, - [4446] = {.lex_state = 875}, - [4447] = {.lex_state = 875}, - [4448] = {.lex_state = 48}, - [4449] = {.lex_state = 96}, - [4450] = {.lex_state = 875}, - [4451] = {.lex_state = 48}, - [4452] = {.lex_state = 48}, - [4453] = {.lex_state = 875}, - [4454] = {.lex_state = 48}, - [4455] = {.lex_state = 875}, - [4456] = {.lex_state = 875}, - [4457] = {.lex_state = 48}, - [4458] = {.lex_state = 48}, - [4459] = {.lex_state = 875}, - [4460] = {.lex_state = 875}, - [4461] = {.lex_state = 48}, - [4462] = {.lex_state = 875}, - [4463] = {.lex_state = 48}, - [4464] = {.lex_state = 875}, - [4465] = {.lex_state = 875}, - [4466] = {.lex_state = 58}, - [4467] = {.lex_state = 58}, - [4468] = {.lex_state = 875}, - [4469] = {.lex_state = 875}, - [4470] = {.lex_state = 48}, - [4471] = {.lex_state = 48}, - [4472] = {.lex_state = 875}, - [4473] = {.lex_state = 875}, - [4474] = {.lex_state = 875}, - [4475] = {.lex_state = 58}, - [4476] = {.lex_state = 58}, - [4477] = {.lex_state = 875}, - [4478] = {.lex_state = 875}, - [4479] = {.lex_state = 875}, - [4480] = {.lex_state = 875}, - [4481] = {.lex_state = 48}, - [4482] = {.lex_state = 875}, - [4483] = {.lex_state = 875}, - [4484] = {.lex_state = 48}, - [4485] = {.lex_state = 48}, - [4486] = {.lex_state = 875}, - [4487] = {.lex_state = 875}, - [4488] = {.lex_state = 875}, - [4489] = {.lex_state = 875}, - [4490] = {.lex_state = 48}, - [4491] = {.lex_state = 48}, - [4492] = {.lex_state = 875}, - [4493] = {.lex_state = 875}, - [4494] = {.lex_state = 48}, - [4495] = {.lex_state = 875}, - [4496] = {.lex_state = 48}, - [4497] = {.lex_state = 875}, - [4498] = {.lex_state = 48}, - [4499] = {.lex_state = 58}, - [4500] = {.lex_state = 58}, - [4501] = {.lex_state = 875}, - [4502] = {.lex_state = 875}, - [4503] = {.lex_state = 875}, - [4504] = {.lex_state = 48}, - [4505] = {.lex_state = 875}, - [4506] = {.lex_state = 875}, - [4507] = {.lex_state = 875}, - [4508] = {.lex_state = 58}, - [4509] = {.lex_state = 58}, - [4510] = {.lex_state = 875}, - [4511] = {.lex_state = 48}, - [4512] = {.lex_state = 48}, - [4513] = {.lex_state = 48}, - [4514] = {.lex_state = 48}, - [4515] = {.lex_state = 875}, - [4516] = {.lex_state = 48}, - [4517] = {.lex_state = 48}, - [4518] = {.lex_state = 875}, - [4519] = {.lex_state = 48}, - [4520] = {.lex_state = 875}, - [4521] = {.lex_state = 875}, - [4522] = {.lex_state = 48}, - [4523] = {.lex_state = 48}, - [4524] = {.lex_state = 96}, - [4525] = {.lex_state = 875}, - [4526] = {.lex_state = 888}, - [4527] = {.lex_state = 875}, - [4528] = {.lex_state = 875}, - [4529] = {.lex_state = 875}, - [4530] = {.lex_state = 875}, - [4531] = {.lex_state = 58}, - [4532] = {.lex_state = 58}, - [4533] = {.lex_state = 875}, - [4534] = {.lex_state = 875}, - [4535] = {.lex_state = 48}, - [4536] = {.lex_state = 875}, - [4537] = {.lex_state = 875}, - [4538] = {.lex_state = 875}, - [4539] = {.lex_state = 875}, - [4540] = {.lex_state = 58}, - [4541] = {.lex_state = 58}, - [4542] = {.lex_state = 875}, - [4543] = {.lex_state = 875}, - [4544] = {.lex_state = 875}, - [4545] = {.lex_state = 875}, - [4546] = {.lex_state = 875}, - [4547] = {.lex_state = 875}, - [4548] = {.lex_state = 875}, - [4549] = {.lex_state = 48}, - [4550] = {.lex_state = 875}, - [4551] = {.lex_state = 875}, - [4552] = {.lex_state = 875}, - [4553] = {.lex_state = 875}, - [4554] = {.lex_state = 875}, - [4555] = {.lex_state = 48}, - [4556] = {.lex_state = 48}, - [4557] = {.lex_state = 48}, - [4558] = {.lex_state = 48}, - [4559] = {.lex_state = 48}, - [4560] = {.lex_state = 875}, - [4561] = {.lex_state = 875}, - [4562] = {.lex_state = 48}, - [4563] = {.lex_state = 48}, - [4564] = {.lex_state = 48}, - [4565] = {.lex_state = 48}, - [4566] = {.lex_state = 875}, - [4567] = {.lex_state = 875}, - [4568] = {.lex_state = 48}, - [4569] = {.lex_state = 875}, - [4570] = {.lex_state = 875}, - [4571] = {.lex_state = 875}, - [4572] = {.lex_state = 48}, - [4573] = {.lex_state = 875}, - [4574] = {.lex_state = 875}, - [4575] = {.lex_state = 875}, - [4576] = {.lex_state = 875}, - [4577] = {.lex_state = 875}, - [4578] = {.lex_state = 875}, - [4579] = {.lex_state = 48}, - [4580] = {.lex_state = 48}, - [4581] = {.lex_state = 875}, - [4582] = {.lex_state = 875}, - [4583] = {.lex_state = 875}, - [4584] = {.lex_state = 875}, - [4585] = {.lex_state = 875}, - [4586] = {.lex_state = 875}, - [4587] = {.lex_state = 48}, - [4588] = {.lex_state = 875}, - [4589] = {.lex_state = 48}, - [4590] = {.lex_state = 875}, - [4591] = {.lex_state = 48}, - [4592] = {.lex_state = 875}, - [4593] = {.lex_state = 875}, - [4594] = {.lex_state = 48}, - [4595] = {.lex_state = 48}, - [4596] = {.lex_state = 48}, - [4597] = {.lex_state = 875}, - [4598] = {.lex_state = 875}, - [4599] = {.lex_state = 875}, - [4600] = {.lex_state = 48}, - [4601] = {.lex_state = 48}, - [4602] = {.lex_state = 48}, - [4603] = {.lex_state = 875}, - [4604] = {.lex_state = 875}, - [4605] = {.lex_state = 875}, - [4606] = {.lex_state = 875}, - [4607] = {.lex_state = 48}, - [4608] = {.lex_state = 48}, - [4609] = {.lex_state = 48}, - [4610] = {.lex_state = 48}, - [4611] = {.lex_state = 875}, - [4612] = {.lex_state = 875}, - [4613] = {.lex_state = 96}, - [4614] = {.lex_state = 48}, - [4615] = {.lex_state = 48}, - [4616] = {.lex_state = 48}, - [4617] = {.lex_state = 875}, - [4618] = {.lex_state = 875}, - [4619] = {.lex_state = 875}, - [4620] = {.lex_state = 48}, - [4621] = {.lex_state = 875}, - [4622] = {.lex_state = 48}, - [4623] = {.lex_state = 48}, - [4624] = {.lex_state = 48}, - [4625] = {.lex_state = 875}, - [4626] = {.lex_state = 875}, - [4627] = {.lex_state = 875}, - [4628] = {.lex_state = 48}, - [4629] = {.lex_state = 48}, - [4630] = {.lex_state = 48}, - [4631] = {.lex_state = 875}, - [4632] = {.lex_state = 48}, - [4633] = {.lex_state = 48}, - [4634] = {.lex_state = 875}, - [4635] = {.lex_state = 48}, - [4636] = {.lex_state = 875}, - [4637] = {.lex_state = 875}, - [4638] = {.lex_state = 875}, - [4639] = {.lex_state = 875}, - [4640] = {.lex_state = 875}, - [4641] = {.lex_state = 875}, - [4642] = {.lex_state = 875}, - [4643] = {.lex_state = 875}, - [4644] = {.lex_state = 48}, - [4645] = {.lex_state = 875}, - [4646] = {.lex_state = 116}, - [4647] = {.lex_state = 875}, - [4648] = {.lex_state = 62}, + [4020] = {.lex_state = 876}, + [4021] = {.lex_state = 876}, + [4022] = {.lex_state = 876}, + [4023] = {.lex_state = 23}, + [4024] = {.lex_state = 876}, + [4025] = {.lex_state = 876}, + [4026] = {.lex_state = 876}, + [4027] = {.lex_state = 23}, + [4028] = {.lex_state = 876}, + [4029] = {.lex_state = 23}, + [4030] = {.lex_state = 876}, + [4031] = {.lex_state = 876}, + [4032] = {.lex_state = 23}, + [4033] = {.lex_state = 23}, + [4034] = {.lex_state = 23}, + [4035] = {.lex_state = 44}, + [4036] = {.lex_state = 876}, + [4037] = {.lex_state = 876}, + [4038] = {.lex_state = 876}, + [4039] = {.lex_state = 876}, + [4040] = {.lex_state = 876}, + [4041] = {.lex_state = 876}, + [4042] = {.lex_state = 876}, + [4043] = {.lex_state = 876}, + [4044] = {.lex_state = 876}, + [4045] = {.lex_state = 23}, + [4046] = {.lex_state = 876}, + [4047] = {.lex_state = 876}, + [4048] = {.lex_state = 876}, + [4049] = {.lex_state = 44}, + [4050] = {.lex_state = 876}, + [4051] = {.lex_state = 876}, + [4052] = {.lex_state = 876}, + [4053] = {.lex_state = 876}, + [4054] = {.lex_state = 876}, + [4055] = {.lex_state = 876}, + [4056] = {.lex_state = 23}, + [4057] = {.lex_state = 876}, + [4058] = {.lex_state = 876}, + [4059] = {.lex_state = 876}, + [4060] = {.lex_state = 876}, + [4061] = {.lex_state = 23}, + [4062] = {.lex_state = 876}, + [4063] = {.lex_state = 23}, + [4064] = {.lex_state = 876}, + [4065] = {.lex_state = 23}, + [4066] = {.lex_state = 876}, + [4067] = {.lex_state = 876}, + [4068] = {.lex_state = 23}, + [4069] = {.lex_state = 876}, + [4070] = {.lex_state = 876}, + [4071] = {.lex_state = 876}, + [4072] = {.lex_state = 23}, + [4073] = {.lex_state = 876}, + [4074] = {.lex_state = 876}, + [4075] = {.lex_state = 876}, + [4076] = {.lex_state = 876}, + [4077] = {.lex_state = 876}, + [4078] = {.lex_state = 876}, + [4079] = {.lex_state = 876}, + [4080] = {.lex_state = 876}, + [4081] = {.lex_state = 876}, + [4082] = {.lex_state = 876}, + [4083] = {.lex_state = 876}, + [4084] = {.lex_state = 23}, + [4085] = {.lex_state = 876}, + [4086] = {.lex_state = 876}, + [4087] = {.lex_state = 876}, + [4088] = {.lex_state = 876}, + [4089] = {.lex_state = 23}, + [4090] = {.lex_state = 876}, + [4091] = {.lex_state = 876}, + [4092] = {.lex_state = 876}, + [4093] = {.lex_state = 876}, + [4094] = {.lex_state = 23}, + [4095] = {.lex_state = 23}, + [4096] = {.lex_state = 23}, + [4097] = {.lex_state = 876}, + [4098] = {.lex_state = 876}, + [4099] = {.lex_state = 23}, + [4100] = {.lex_state = 23}, + [4101] = {.lex_state = 876}, + [4102] = {.lex_state = 876}, + [4103] = {.lex_state = 876}, + [4104] = {.lex_state = 876}, + [4105] = {.lex_state = 876}, + [4106] = {.lex_state = 876}, + [4107] = {.lex_state = 23}, + [4108] = {.lex_state = 876}, + [4109] = {.lex_state = 23}, + [4110] = {.lex_state = 876}, + [4111] = {.lex_state = 876}, + [4112] = {.lex_state = 876}, + [4113] = {.lex_state = 876}, + [4114] = {.lex_state = 38}, + [4115] = {.lex_state = 876}, + [4116] = {.lex_state = 876}, + [4117] = {.lex_state = 876}, + [4118] = {.lex_state = 876}, + [4119] = {.lex_state = 876}, + [4120] = {.lex_state = 23}, + [4121] = {.lex_state = 876}, + [4122] = {.lex_state = 876}, + [4123] = {.lex_state = 38}, + [4124] = {.lex_state = 876}, + [4125] = {.lex_state = 876}, + [4126] = {.lex_state = 876}, + [4127] = {.lex_state = 876}, + [4128] = {.lex_state = 876}, + [4129] = {.lex_state = 23}, + [4130] = {.lex_state = 876}, + [4131] = {.lex_state = 876}, + [4132] = {.lex_state = 876}, + [4133] = {.lex_state = 876}, + [4134] = {.lex_state = 876}, + [4135] = {.lex_state = 23}, + [4136] = {.lex_state = 23}, + [4137] = {.lex_state = 876}, + [4138] = {.lex_state = 876}, + [4139] = {.lex_state = 876}, + [4140] = {.lex_state = 876}, + [4141] = {.lex_state = 23}, + [4142] = {.lex_state = 876}, + [4143] = {.lex_state = 23}, + [4144] = {.lex_state = 23}, + [4145] = {.lex_state = 876}, + [4146] = {.lex_state = 876}, + [4147] = {.lex_state = 23}, + [4148] = {.lex_state = 876}, + [4149] = {.lex_state = 876}, + [4150] = {.lex_state = 23}, + [4151] = {.lex_state = 876}, + [4152] = {.lex_state = 23}, + [4153] = {.lex_state = 876}, + [4154] = {.lex_state = 876}, + [4155] = {.lex_state = 876}, + [4156] = {.lex_state = 23}, + [4157] = {.lex_state = 23}, + [4158] = {.lex_state = 23}, + [4159] = {.lex_state = 876}, + [4160] = {.lex_state = 876}, + [4161] = {.lex_state = 876}, + [4162] = {.lex_state = 23}, + [4163] = {.lex_state = 876}, + [4164] = {.lex_state = 876}, + [4165] = {.lex_state = 23}, + [4166] = {.lex_state = 876}, + [4167] = {.lex_state = 876}, + [4168] = {.lex_state = 876}, + [4169] = {.lex_state = 876}, + [4170] = {.lex_state = 876}, + [4171] = {.lex_state = 876}, + [4172] = {.lex_state = 38}, + [4173] = {.lex_state = 876}, + [4174] = {.lex_state = 876}, + [4175] = {.lex_state = 876}, + [4176] = {.lex_state = 876}, + [4177] = {.lex_state = 876}, + [4178] = {.lex_state = 876}, + [4179] = {.lex_state = 23}, + [4180] = {.lex_state = 23}, + [4181] = {.lex_state = 23}, + [4182] = {.lex_state = 23}, + [4183] = {.lex_state = 876}, + [4184] = {.lex_state = 876}, + [4185] = {.lex_state = 876}, + [4186] = {.lex_state = 876}, + [4187] = {.lex_state = 23}, + [4188] = {.lex_state = 23}, + [4189] = {.lex_state = 23}, + [4190] = {.lex_state = 876}, + [4191] = {.lex_state = 23}, + [4192] = {.lex_state = 876}, + [4193] = {.lex_state = 23}, + [4194] = {.lex_state = 876}, + [4195] = {.lex_state = 876}, + [4196] = {.lex_state = 876}, + [4197] = {.lex_state = 876}, + [4198] = {.lex_state = 876}, + [4199] = {.lex_state = 23}, + [4200] = {.lex_state = 876}, + [4201] = {.lex_state = 876}, + [4202] = {.lex_state = 876}, + [4203] = {.lex_state = 876}, + [4204] = {.lex_state = 876}, + [4205] = {.lex_state = 876}, + [4206] = {.lex_state = 23}, + [4207] = {.lex_state = 23}, + [4208] = {.lex_state = 23}, + [4209] = {.lex_state = 23}, + [4210] = {.lex_state = 876}, + [4211] = {.lex_state = 23}, + [4212] = {.lex_state = 876}, + [4213] = {.lex_state = 876}, + [4214] = {.lex_state = 876}, + [4215] = {.lex_state = 876}, + [4216] = {.lex_state = 23}, + [4217] = {.lex_state = 876}, + [4218] = {.lex_state = 876}, + [4219] = {.lex_state = 876}, + [4220] = {.lex_state = 876}, + [4221] = {.lex_state = 876}, + [4222] = {.lex_state = 38}, + [4223] = {.lex_state = 876}, + [4224] = {.lex_state = 876}, + [4225] = {.lex_state = 876}, + [4226] = {.lex_state = 23}, + [4227] = {.lex_state = 876}, + [4228] = {.lex_state = 876}, + [4229] = {.lex_state = 876}, + [4230] = {.lex_state = 23}, + [4231] = {.lex_state = 876}, + [4232] = {.lex_state = 23}, + [4233] = {.lex_state = 876}, + [4234] = {.lex_state = 876}, + [4235] = {.lex_state = 23}, + [4236] = {.lex_state = 44}, + [4237] = {.lex_state = 876}, + [4238] = {.lex_state = 38}, + [4239] = {.lex_state = 876}, + [4240] = {.lex_state = 876}, + [4241] = {.lex_state = 876}, + [4242] = {.lex_state = 38}, + [4243] = {.lex_state = 876}, + [4244] = {.lex_state = 876}, + [4245] = {.lex_state = 876}, + [4246] = {.lex_state = 876}, + [4247] = {.lex_state = 876}, + [4248] = {.lex_state = 876}, + [4249] = {.lex_state = 876}, + [4250] = {.lex_state = 23}, + [4251] = {.lex_state = 876}, + [4252] = {.lex_state = 23}, + [4253] = {.lex_state = 876}, + [4254] = {.lex_state = 876}, + [4255] = {.lex_state = 876}, + [4256] = {.lex_state = 876}, + [4257] = {.lex_state = 876}, + [4258] = {.lex_state = 876}, + [4259] = {.lex_state = 876}, + [4260] = {.lex_state = 38}, + [4261] = {.lex_state = 876}, + [4262] = {.lex_state = 876}, + [4263] = {.lex_state = 876}, + [4264] = {.lex_state = 876}, + [4265] = {.lex_state = 876}, + [4266] = {.lex_state = 23}, + [4267] = {.lex_state = 876}, + [4268] = {.lex_state = 23}, + [4269] = {.lex_state = 876}, + [4270] = {.lex_state = 876}, + [4271] = {.lex_state = 876}, + [4272] = {.lex_state = 23}, + [4273] = {.lex_state = 876}, + [4274] = {.lex_state = 876}, + [4275] = {.lex_state = 23}, + [4276] = {.lex_state = 876}, + [4277] = {.lex_state = 876}, + [4278] = {.lex_state = 876}, + [4279] = {.lex_state = 876}, + [4280] = {.lex_state = 876}, + [4281] = {.lex_state = 23}, + [4282] = {.lex_state = 876}, + [4283] = {.lex_state = 876}, + [4284] = {.lex_state = 876}, + [4285] = {.lex_state = 876}, + [4286] = {.lex_state = 23}, + [4287] = {.lex_state = 23}, + [4288] = {.lex_state = 876}, + [4289] = {.lex_state = 876}, + [4290] = {.lex_state = 876}, + [4291] = {.lex_state = 876}, + [4292] = {.lex_state = 37}, + [4293] = {.lex_state = 876}, + [4294] = {.lex_state = 876}, + [4295] = {.lex_state = 876}, + [4296] = {.lex_state = 876}, + [4297] = {.lex_state = 876}, + [4298] = {.lex_state = 876}, + [4299] = {.lex_state = 38}, + [4300] = {.lex_state = 876}, + [4301] = {.lex_state = 876}, + [4302] = {.lex_state = 876}, + [4303] = {.lex_state = 876}, + [4304] = {.lex_state = 876}, + [4305] = {.lex_state = 23}, + [4306] = {.lex_state = 23}, + [4307] = {.lex_state = 876}, + [4308] = {.lex_state = 876}, + [4309] = {.lex_state = 23}, + [4310] = {.lex_state = 876}, + [4311] = {.lex_state = 876}, + [4312] = {.lex_state = 876}, + [4313] = {.lex_state = 876}, + [4314] = {.lex_state = 876}, + [4315] = {.lex_state = 23}, + [4316] = {.lex_state = 876}, + [4317] = {.lex_state = 876}, + [4318] = {.lex_state = 876}, + [4319] = {.lex_state = 876}, + [4320] = {.lex_state = 876}, + [4321] = {.lex_state = 876}, + [4322] = {.lex_state = 876}, + [4323] = {.lex_state = 876}, + [4324] = {.lex_state = 876}, + [4325] = {.lex_state = 876}, + [4326] = {.lex_state = 876}, + [4327] = {.lex_state = 876}, + [4328] = {.lex_state = 876}, + [4329] = {.lex_state = 876}, + [4330] = {.lex_state = 876}, + [4331] = {.lex_state = 876}, + [4332] = {.lex_state = 876}, + [4333] = {.lex_state = 23}, + [4334] = {.lex_state = 876}, + [4335] = {.lex_state = 876}, + [4336] = {.lex_state = 876}, + [4337] = {.lex_state = 876}, + [4338] = {.lex_state = 876}, + [4339] = {.lex_state = 876}, + [4340] = {.lex_state = 876}, + [4341] = {.lex_state = 876}, + [4342] = {.lex_state = 876}, + [4343] = {.lex_state = 876}, + [4344] = {.lex_state = 876}, + [4345] = {.lex_state = 876}, + [4346] = {.lex_state = 876}, + [4347] = {.lex_state = 876}, + [4348] = {.lex_state = 876}, + [4349] = {.lex_state = 876}, + [4350] = {.lex_state = 876}, + [4351] = {.lex_state = 876}, + [4352] = {.lex_state = 876}, + [4353] = {.lex_state = 876}, + [4354] = {.lex_state = 876}, + [4355] = {.lex_state = 876}, + [4356] = {.lex_state = 876}, + [4357] = {.lex_state = 876}, + [4358] = {.lex_state = 38}, + [4359] = {.lex_state = 876}, + [4360] = {.lex_state = 876}, + [4361] = {.lex_state = 876}, + [4362] = {.lex_state = 876}, + [4363] = {.lex_state = 876}, + [4364] = {.lex_state = 876}, + [4365] = {.lex_state = 876}, + [4366] = {.lex_state = 876}, + [4367] = {.lex_state = 876}, + [4368] = {.lex_state = 876}, + [4369] = {.lex_state = 876}, + [4370] = {.lex_state = 876}, + [4371] = {.lex_state = 876}, + [4372] = {.lex_state = 876}, + [4373] = {.lex_state = 876}, + [4374] = {.lex_state = 876}, + [4375] = {.lex_state = 876}, + [4376] = {.lex_state = 876}, + [4377] = {.lex_state = 23}, + [4378] = {.lex_state = 876}, + [4379] = {.lex_state = 876}, + [4380] = {.lex_state = 38}, + [4381] = {.lex_state = 876}, + [4382] = {.lex_state = 876}, + [4383] = {.lex_state = 876}, + [4384] = {.lex_state = 876}, + [4385] = {.lex_state = 876}, + [4386] = {.lex_state = 23}, + [4387] = {.lex_state = 876}, + [4388] = {.lex_state = 876}, + [4389] = {.lex_state = 876}, + [4390] = {.lex_state = 876}, + [4391] = {.lex_state = 23}, + [4392] = {.lex_state = 876}, + [4393] = {.lex_state = 876}, + [4394] = {.lex_state = 876}, + [4395] = {.lex_state = 876}, + [4396] = {.lex_state = 876}, + [4397] = {.lex_state = 876}, + [4398] = {.lex_state = 876}, + [4399] = {.lex_state = 876}, + [4400] = {.lex_state = 23}, + [4401] = {.lex_state = 23}, + [4402] = {.lex_state = 876}, + [4403] = {.lex_state = 23}, + [4404] = {.lex_state = 876}, + [4405] = {.lex_state = 876}, + [4406] = {.lex_state = 876}, + [4407] = {.lex_state = 23}, + [4408] = {.lex_state = 23}, + [4409] = {.lex_state = 876}, + [4410] = {.lex_state = 876}, + [4411] = {.lex_state = 876}, + [4412] = {.lex_state = 23}, + [4413] = {.lex_state = 23}, + [4414] = {.lex_state = 23}, + [4415] = {.lex_state = 876}, + [4416] = {.lex_state = 876}, + [4417] = {.lex_state = 876}, + [4418] = {.lex_state = 876}, + [4419] = {.lex_state = 876}, + [4420] = {.lex_state = 23}, + [4421] = {.lex_state = 876}, + [4422] = {.lex_state = 876}, + [4423] = {.lex_state = 38}, + [4424] = {.lex_state = 38}, + [4425] = {.lex_state = 876}, + [4426] = {.lex_state = 876}, + [4427] = {.lex_state = 876}, + [4428] = {.lex_state = 876}, + [4429] = {.lex_state = 23}, + [4430] = {.lex_state = 876}, + [4431] = {.lex_state = 23}, + [4432] = {.lex_state = 876}, + [4433] = {.lex_state = 23}, + [4434] = {.lex_state = 38}, + [4435] = {.lex_state = 38}, + [4436] = {.lex_state = 876}, + [4437] = {.lex_state = 876}, + [4438] = {.lex_state = 876}, + [4439] = {.lex_state = 876}, + [4440] = {.lex_state = 876}, + [4441] = {.lex_state = 876}, + [4442] = {.lex_state = 876}, + [4443] = {.lex_state = 23}, + [4444] = {.lex_state = 876}, + [4445] = {.lex_state = 876}, + [4446] = {.lex_state = 23}, + [4447] = {.lex_state = 876}, + [4448] = {.lex_state = 876}, + [4449] = {.lex_state = 23}, + [4450] = {.lex_state = 23}, + [4451] = {.lex_state = 876}, + [4452] = {.lex_state = 876}, + [4453] = {.lex_state = 876}, + [4454] = {.lex_state = 876}, + [4455] = {.lex_state = 23}, + [4456] = {.lex_state = 23}, + [4457] = {.lex_state = 876}, + [4458] = {.lex_state = 876}, + [4459] = {.lex_state = 876}, + [4460] = {.lex_state = 876}, + [4461] = {.lex_state = 23}, + [4462] = {.lex_state = 876}, + [4463] = {.lex_state = 876}, + [4464] = {.lex_state = 38}, + [4465] = {.lex_state = 38}, + [4466] = {.lex_state = 876}, + [4467] = {.lex_state = 876}, + [4468] = {.lex_state = 876}, + [4469] = {.lex_state = 23}, + [4470] = {.lex_state = 876}, + [4471] = {.lex_state = 876}, + [4472] = {.lex_state = 876}, + [4473] = {.lex_state = 38}, + [4474] = {.lex_state = 38}, + [4475] = {.lex_state = 876}, + [4476] = {.lex_state = 876}, + [4477] = {.lex_state = 876}, + [4478] = {.lex_state = 876}, + [4479] = {.lex_state = 23}, + [4480] = {.lex_state = 876}, + [4481] = {.lex_state = 876}, + [4482] = {.lex_state = 23}, + [4483] = {.lex_state = 23}, + [4484] = {.lex_state = 876}, + [4485] = {.lex_state = 876}, + [4486] = {.lex_state = 876}, + [4487] = {.lex_state = 876}, + [4488] = {.lex_state = 23}, + [4489] = {.lex_state = 23}, + [4490] = {.lex_state = 876}, + [4491] = {.lex_state = 876}, + [4492] = {.lex_state = 876}, + [4493] = {.lex_state = 876}, + [4494] = {.lex_state = 876}, + [4495] = {.lex_state = 876}, + [4496] = {.lex_state = 876}, + [4497] = {.lex_state = 38}, + [4498] = {.lex_state = 38}, + [4499] = {.lex_state = 876}, + [4500] = {.lex_state = 876}, + [4501] = {.lex_state = 876}, + [4502] = {.lex_state = 876}, + [4503] = {.lex_state = 23}, + [4504] = {.lex_state = 876}, + [4505] = {.lex_state = 876}, + [4506] = {.lex_state = 38}, + [4507] = {.lex_state = 38}, + [4508] = {.lex_state = 876}, + [4509] = {.lex_state = 876}, + [4510] = {.lex_state = 23}, + [4511] = {.lex_state = 23}, + [4512] = {.lex_state = 876}, + [4513] = {.lex_state = 876}, + [4514] = {.lex_state = 23}, + [4515] = {.lex_state = 23}, + [4516] = {.lex_state = 876}, + [4517] = {.lex_state = 876}, + [4518] = {.lex_state = 876}, + [4519] = {.lex_state = 876}, + [4520] = {.lex_state = 23}, + [4521] = {.lex_state = 23}, + [4522] = {.lex_state = 876}, + [4523] = {.lex_state = 38}, + [4524] = {.lex_state = 889}, + [4525] = {.lex_state = 876}, + [4526] = {.lex_state = 876}, + [4527] = {.lex_state = 23}, + [4528] = {.lex_state = 44}, + [4529] = {.lex_state = 38}, + [4530] = {.lex_state = 38}, + [4531] = {.lex_state = 876}, + [4532] = {.lex_state = 876}, + [4533] = {.lex_state = 23}, + [4534] = {.lex_state = 876}, + [4535] = {.lex_state = 23}, + [4536] = {.lex_state = 876}, + [4537] = {.lex_state = 23}, + [4538] = {.lex_state = 38}, + [4539] = {.lex_state = 38}, + [4540] = {.lex_state = 876}, + [4541] = {.lex_state = 23}, + [4542] = {.lex_state = 876}, + [4543] = {.lex_state = 876}, + [4544] = {.lex_state = 876}, + [4545] = {.lex_state = 876}, + [4546] = {.lex_state = 876}, + [4547] = {.lex_state = 876}, + [4548] = {.lex_state = 876}, + [4549] = {.lex_state = 876}, + [4550] = {.lex_state = 876}, + [4551] = {.lex_state = 23}, + [4552] = {.lex_state = 876}, + [4553] = {.lex_state = 876}, + [4554] = {.lex_state = 23}, + [4555] = {.lex_state = 23}, + [4556] = {.lex_state = 23}, + [4557] = {.lex_state = 876}, + [4558] = {.lex_state = 876}, + [4559] = {.lex_state = 44}, + [4560] = {.lex_state = 23}, + [4561] = {.lex_state = 23}, + [4562] = {.lex_state = 23}, + [4563] = {.lex_state = 23}, + [4564] = {.lex_state = 876}, + [4565] = {.lex_state = 876}, + [4566] = {.lex_state = 876}, + [4567] = {.lex_state = 876}, + [4568] = {.lex_state = 23}, + [4569] = {.lex_state = 23}, + [4570] = {.lex_state = 876}, + [4571] = {.lex_state = 38}, + [4572] = {.lex_state = 876}, + [4573] = {.lex_state = 876}, + [4574] = {.lex_state = 876}, + [4575] = {.lex_state = 876}, + [4576] = {.lex_state = 876}, + [4577] = {.lex_state = 876}, + [4578] = {.lex_state = 876}, + [4579] = {.lex_state = 876}, + [4580] = {.lex_state = 876}, + [4581] = {.lex_state = 876}, + [4582] = {.lex_state = 23}, + [4583] = {.lex_state = 876}, + [4584] = {.lex_state = 876}, + [4585] = {.lex_state = 876}, + [4586] = {.lex_state = 23}, + [4587] = {.lex_state = 876}, + [4588] = {.lex_state = 876}, + [4589] = {.lex_state = 876}, + [4590] = {.lex_state = 876}, + [4591] = {.lex_state = 23}, + [4592] = {.lex_state = 23}, + [4593] = {.lex_state = 23}, + [4594] = {.lex_state = 23}, + [4595] = {.lex_state = 876}, + [4596] = {.lex_state = 876}, + [4597] = {.lex_state = 876}, + [4598] = {.lex_state = 23}, + [4599] = {.lex_state = 23}, + [4600] = {.lex_state = 23}, + [4601] = {.lex_state = 876}, + [4602] = {.lex_state = 876}, + [4603] = {.lex_state = 876}, + [4604] = {.lex_state = 876}, + [4605] = {.lex_state = 23}, + [4606] = {.lex_state = 23}, + [4607] = {.lex_state = 23}, + [4608] = {.lex_state = 23}, + [4609] = {.lex_state = 876}, + [4610] = {.lex_state = 23}, + [4611] = {.lex_state = 23}, + [4612] = {.lex_state = 23}, + [4613] = {.lex_state = 23}, + [4614] = {.lex_state = 23}, + [4615] = {.lex_state = 876}, + [4616] = {.lex_state = 876}, + [4617] = {.lex_state = 876}, + [4618] = {.lex_state = 23}, + [4619] = {.lex_state = 876}, + [4620] = {.lex_state = 23}, + [4621] = {.lex_state = 23}, + [4622] = {.lex_state = 23}, + [4623] = {.lex_state = 876}, + [4624] = {.lex_state = 876}, + [4625] = {.lex_state = 876}, + [4626] = {.lex_state = 23}, + [4627] = {.lex_state = 23}, + [4628] = {.lex_state = 23}, + [4629] = {.lex_state = 23}, + [4630] = {.lex_state = 23}, + [4631] = {.lex_state = 876}, + [4632] = {.lex_state = 876}, + [4633] = {.lex_state = 876}, + [4634] = {.lex_state = 876}, + [4635] = {.lex_state = 876}, + [4636] = {.lex_state = 876}, + [4637] = {.lex_state = 23}, + [4638] = {.lex_state = 876}, + [4639] = {.lex_state = 876}, + [4640] = {.lex_state = 23}, + [4641] = {.lex_state = 44}, + [4642] = {.lex_state = 23}, + [4643] = {.lex_state = 103}, + [4644] = {.lex_state = 876}, + [4645] = {.lex_state = 47}, + [4646] = {(TSStateId)(-1)}, + [4647] = {(TSStateId)(-1)}, + [4648] = {(TSStateId)(-1)}, [4649] = {(TSStateId)(-1)}, - [4650] = {(TSStateId)(-1)}, - [4651] = {(TSStateId)(-1)}, - [4652] = {(TSStateId)(-1)}, }; enum { ts_external_token__namedot = 0, ts_external_token__namecolon = 1, + ts_external_token__or_operator = 2, + ts_external_token__and_operator = 3, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__namedot] = sym__namedot, [ts_external_token__namecolon] = sym__namecolon, + [ts_external_token__or_operator] = sym__or_operator, + [ts_external_token__and_operator] = sym__and_operator, }; -static const bool ts_external_scanner_states[4][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__namedot] = true, [ts_external_token__namecolon] = true, + [ts_external_token__or_operator] = true, + [ts_external_token__and_operator] = true, }, [2] = { [ts_external_token__namedot] = true, + [ts_external_token__or_operator] = true, + [ts_external_token__and_operator] = true, }, [3] = { [ts_external_token__namecolon] = true, + [ts_external_token__or_operator] = true, + [ts_external_token__and_operator] = true, + }, + [4] = { + [ts_external_token__or_operator] = true, + [ts_external_token__and_operator] = true, + }, + [5] = { + [ts_external_token__namedot] = true, + }, + [6] = { + [ts_external_token__namecolon] = true, + }, + [7] = { + [ts_external_token__namedot] = true, + [ts_external_token__namecolon] = true, }, }; @@ -26555,9 +25916,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), - [aux_sym__logical_operator_token4] = ACTIONS(1), - [aux_sym__logical_operator_token5] = ACTIONS(1), - [aux_sym__logical_operator_token6] = ACTIONS(1), [aux_sym_unary_expression_token1] = ACTIONS(1), [aux_sym_unary_expression_token2] = ACTIONS(1), [aux_sym_ambiguous_expression_token1] = ACTIONS(1), @@ -26746,50 +26104,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_data_source_definition_token1] = ACTIONS(1), [sym__namedot] = ACTIONS(1), [sym__namecolon] = ACTIONS(1), + [sym__or_operator] = ACTIONS(1), + [sym__and_operator] = ACTIONS(1), }, [1] = { - [sym_source_code] = STATE(4597), + [sym_source_code] = STATE(4579), [sym_comment] = STATE(1), [sym_include] = STATE(1), - [sym_assignment] = STATE(4593), - [sym_variable_definition] = STATE(1332), - [sym_variable_assignment] = STATE(1332), - [sym_buffer_definition] = STATE(1332), - [sym_query_definition] = STATE(1332), - [sym_function_call_statement] = STATE(1332), - [sym_function_call] = STATE(4588), - [sym_if_statement] = STATE(1332), - [sym_label] = STATE(1340), - [sym_repeat_statement] = STATE(1332), - [sym_procedure_statement] = STATE(1332), - [sym_procedure_parameter_definition] = STATE(1332), - [sym_function_statement] = STATE(1332), - [sym_return_statement] = STATE(1332), - [sym_interface_statement] = STATE(1332), - [sym_using_statement] = STATE(1332), - [sym_class_statement] = STATE(1332), - [sym_object_access] = STATE(4586), - [sym_stream_definition] = STATE(1332), - [sym_input_close_statement] = STATE(1332), - [sym_output_close_statement] = STATE(1332), - [sym__stream_statement] = STATE(1332), - [sym_input_stream_statement] = STATE(1346), - [sym_output_stream_statement] = STATE(1346), - [sym_do_block] = STATE(1332), - [sym_case_statement] = STATE(1332), - [sym_for_statement] = STATE(1332), - [sym_find_statement] = STATE(1332), - [sym_abl_statement] = STATE(1332), - [sym_assign_statement] = STATE(1332), - [sym_catch_statement] = STATE(1332), - [sym_finally_statement] = STATE(1332), - [sym_accumulate_statement] = STATE(1332), - [sym_undo_statement] = STATE(1332), - [sym_error_scope_statement] = STATE(1332), - [sym_temp_table_definition] = STATE(1332), - [sym_on_statement] = STATE(1332), - [sym__statement] = STATE(1347), - [aux_sym_source_code_repeat1] = STATE(274), + [sym_assignment] = STATE(4578), + [sym_variable_definition] = STATE(1137), + [sym_variable_assignment] = STATE(1137), + [sym_buffer_definition] = STATE(1137), + [sym_query_definition] = STATE(1137), + [sym_function_call_statement] = STATE(1137), + [sym_function_call] = STATE(4576), + [sym_if_statement] = STATE(1137), + [sym_label] = STATE(1141), + [sym_repeat_statement] = STATE(1137), + [sym_procedure_statement] = STATE(1137), + [sym_procedure_parameter_definition] = STATE(1137), + [sym_function_statement] = STATE(1137), + [sym_return_statement] = STATE(1137), + [sym_interface_statement] = STATE(1137), + [sym_using_statement] = STATE(1137), + [sym_class_statement] = STATE(1137), + [sym_object_access] = STATE(4574), + [sym_stream_definition] = STATE(1137), + [sym_input_close_statement] = STATE(1137), + [sym_output_close_statement] = STATE(1137), + [sym__stream_statement] = STATE(1137), + [sym_input_stream_statement] = STATE(1142), + [sym_output_stream_statement] = STATE(1142), + [sym_do_block] = STATE(1137), + [sym_case_statement] = STATE(1137), + [sym_for_statement] = STATE(1137), + [sym_find_statement] = STATE(1137), + [sym_abl_statement] = STATE(1137), + [sym_assign_statement] = STATE(1137), + [sym_catch_statement] = STATE(1137), + [sym_finally_statement] = STATE(1137), + [sym_accumulate_statement] = STATE(1137), + [sym_undo_statement] = STATE(1137), + [sym_error_scope_statement] = STATE(1137), + [sym_temp_table_definition] = STATE(1137), + [sym_on_statement] = STATE(1137), + [sym__statement] = STATE(1144), + [aux_sym_source_code_repeat1] = STATE(272), [ts_builtin_sym_end] = ACTIONS(9), [sym_identifier] = ACTIONS(11), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -26823,21 +26183,16 @@ 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(3), + [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), [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), - [aux_sym__logical_operator_token1] = ACTIONS(67), - [aux_sym__logical_operator_token2] = ACTIONS(67), - [aux_sym__logical_operator_token3] = ACTIONS(67), - [aux_sym__logical_operator_token4] = ACTIONS(67), - [aux_sym__logical_operator_token5] = ACTIONS(67), - [aux_sym__logical_operator_token6] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), [anon_sym_LT] = ACTIONS(63), @@ -26861,23 +26216,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token4] = ACTIONS(67), [aux_sym_variable_tuning_token5] = ACTIONS(67), [aux_sym_variable_tuning_token6] = ACTIONS(67), - [aux_sym_serialization_tuning_token1] = ACTIONS(67), - [aux_sym_variable_definition_token6] = ACTIONS(67), [anon_sym_COMMA] = ACTIONS(67), [aux_sym_if_statement_token2] = ACTIONS(67), [aux_sym_else_if_statement_token1] = ACTIONS(67), [anon_sym_COLON] = ACTIONS(67), - [aux_sym_property_type_token1] = 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_data_relation_token1] = ACTIONS(67), - [aux_sym_data_relation_token2] = ACTIONS(67), [aux_sym_using_statement_token1] = ACTIONS(67), - [aux_sym_using_statement_token2] = ACTIONS(67), - [aux_sym_inherits_token1] = ACTIONS(67), - [aux_sym_implements_token1] = ACTIONS(67), - [aux_sym_use_widget_pool_token1] = ACTIONS(67), - [aux_sym_final_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), @@ -26900,6 +26246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -26907,657 +26254,426 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token4] = ACTIONS(67), [aux_sym_query_tuning_token5] = ACTIONS(67), [aux_sym_query_tuning_token6] = ACTIONS(67), - [aux_sym_sort_clause_token1] = ACTIONS(67), - [aux_sym_sort_clause_token2] = ACTIONS(67), [aux_sym_of_token1] = ACTIONS(67), - [aux_sym_temp_table_tuning_token1] = ACTIONS(67), - [anon_sym_LIKE] = ACTIONS(63), [aux_sym_field_definition_token1] = ACTIONS(67), [aux_sym_index_definition_token1] = ACTIONS(67), [aux_sym_on_statement_token1] = ACTIONS(67), - [sym__namedot] = ACTIONS(69), + [sym__namedot] = ACTIONS(71), + [sym__namecolon] = ACTIONS(73), + [sym__or_operator] = ACTIONS(67), + [sym__and_operator] = ACTIONS(67), }, [3] = { [sym_comment] = STATE(3), [sym_include] = STATE(3), - [aux_sym_qualified_name_repeat1] = STATE(3), + [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(71), + [anon_sym_SLASH] = ACTIONS(75), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(73), - [sym__terminator] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(73), - [anon_sym_RPAREN] = ACTIONS(73), - [aux_sym__logical_operator_token1] = ACTIONS(73), - [aux_sym__logical_operator_token2] = ACTIONS(73), - [aux_sym__logical_operator_token3] = ACTIONS(73), - [aux_sym__logical_operator_token4] = ACTIONS(73), - [aux_sym__logical_operator_token5] = ACTIONS(73), - [aux_sym__logical_operator_token6] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_LT_GT] = ACTIONS(73), - [anon_sym_EQ] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(71), - [anon_sym_GT_EQ] = ACTIONS(73), - [aux_sym__comparison_operator_token1] = ACTIONS(73), - [aux_sym__comparison_operator_token2] = ACTIONS(73), - [aux_sym__comparison_operator_token3] = ACTIONS(73), - [aux_sym__comparison_operator_token4] = ACTIONS(73), - [aux_sym__comparison_operator_token5] = ACTIONS(73), - [aux_sym__comparison_operator_token6] = ACTIONS(73), - [aux_sym__comparison_operator_token7] = ACTIONS(73), - [aux_sym__comparison_operator_token8] = ACTIONS(73), - [aux_sym__comparison_operator_token9] = ACTIONS(73), - [aux_sym_variable_tuning_token1] = ACTIONS(73), - [aux_sym_variable_tuning_token2] = ACTIONS(73), - [aux_sym_variable_tuning_token3] = ACTIONS(73), - [aux_sym_variable_tuning_token4] = ACTIONS(73), - [aux_sym_variable_tuning_token5] = ACTIONS(73), - [aux_sym_variable_tuning_token6] = ACTIONS(73), - [aux_sym_serialization_tuning_token1] = ACTIONS(73), - [aux_sym_variable_definition_token6] = ACTIONS(73), - [anon_sym_COMMA] = ACTIONS(73), - [aux_sym_if_statement_token2] = ACTIONS(73), - [aux_sym_else_if_statement_token1] = ACTIONS(73), - [anon_sym_COLON] = ACTIONS(73), - [aux_sym_property_type_token1] = ACTIONS(73), - [aux_sym_property_tuning_token1] = ACTIONS(73), - [aux_sym_event_definition_token1] = ACTIONS(73), - [aux_sym_data_relation_token1] = ACTIONS(73), - [aux_sym_data_relation_token2] = ACTIONS(73), - [aux_sym_using_statement_token1] = ACTIONS(73), - [aux_sym_using_statement_token2] = ACTIONS(73), - [aux_sym_inherits_token1] = ACTIONS(73), - [aux_sym_implements_token1] = ACTIONS(73), - [aux_sym_use_widget_pool_token1] = ACTIONS(73), - [aux_sym_final_token1] = ACTIONS(73), - [aux_sym_input_stream_tuning_token1] = ACTIONS(73), - [aux_sym_input_stream_tuning_token2] = ACTIONS(73), - [aux_sym_input_stream_tuning_token3] = ACTIONS(73), - [aux_sym_input_stream_tuning_token4] = ACTIONS(73), - [aux_sym_input_stream_tuning_token5] = ACTIONS(73), - [aux_sym_input_stream_tuning_token6] = ACTIONS(73), - [aux_sym_input_stream_tuning_token7] = ACTIONS(73), - [aux_sym_input_stream_tuning_token8] = ACTIONS(73), - [aux_sym_input_stream_tuning_token9] = ACTIONS(73), - [aux_sym_input_stream_tuning_token11] = ACTIONS(73), - [aux_sym_output_stream_tuning_token1] = ACTIONS(73), - [aux_sym_output_stream_tuning_token2] = ACTIONS(73), - [aux_sym_output_stream_tuning_token3] = ACTIONS(73), - [aux_sym_output_stream_tuning_token4] = ACTIONS(73), - [aux_sym_output_stream_tuning_token5] = ACTIONS(73), - [aux_sym_output_stream_tuning_token6] = ACTIONS(73), - [aux_sym_output_stream_tuning_token7] = ACTIONS(73), - [aux_sym_output_stream_tuning_token8] = ACTIONS(73), - [aux_sym_output_stream_statement_token1] = ACTIONS(73), - [aux_sym_on_error_phrase_token1] = ACTIONS(73), - [aux_sym_stop_after_phrase_token1] = ACTIONS(73), - [aux_sym_do_tuning_token1] = ACTIONS(73), - [aux_sym_where_clause_token1] = ACTIONS(73), - [aux_sym_query_tuning_token1] = ACTIONS(73), - [aux_sym_query_tuning_token2] = ACTIONS(73), - [aux_sym_query_tuning_token3] = ACTIONS(73), - [aux_sym_query_tuning_token4] = ACTIONS(73), - [aux_sym_query_tuning_token5] = ACTIONS(73), - [aux_sym_query_tuning_token6] = ACTIONS(73), - [aux_sym_sort_clause_token1] = ACTIONS(73), - [aux_sym_sort_clause_token2] = ACTIONS(73), - [aux_sym_of_token1] = ACTIONS(73), - [aux_sym_temp_table_tuning_token1] = ACTIONS(73), - [anon_sym_LIKE] = ACTIONS(71), - [aux_sym_field_definition_token1] = ACTIONS(73), - [aux_sym_index_definition_token1] = ACTIONS(73), - [aux_sym_on_statement_token1] = ACTIONS(73), - [sym__namedot] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(77), + [sym__terminator] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_LT_GT] = ACTIONS(77), + [anon_sym_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(77), + [aux_sym__comparison_operator_token1] = ACTIONS(77), + [aux_sym__comparison_operator_token2] = ACTIONS(77), + [aux_sym__comparison_operator_token3] = ACTIONS(77), + [aux_sym__comparison_operator_token4] = ACTIONS(77), + [aux_sym__comparison_operator_token5] = ACTIONS(77), + [aux_sym__comparison_operator_token6] = ACTIONS(77), + [aux_sym__comparison_operator_token7] = ACTIONS(77), + [aux_sym__comparison_operator_token8] = ACTIONS(77), + [aux_sym__comparison_operator_token9] = ACTIONS(77), + [aux_sym_variable_tuning_token1] = ACTIONS(77), + [aux_sym_variable_tuning_token2] = ACTIONS(77), + [aux_sym_variable_tuning_token3] = ACTIONS(77), + [aux_sym_variable_tuning_token4] = ACTIONS(77), + [aux_sym_variable_tuning_token5] = ACTIONS(77), + [aux_sym_variable_tuning_token6] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(77), + [aux_sym_if_statement_token2] = ACTIONS(77), + [aux_sym_else_if_statement_token1] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(77), + [aux_sym_while_phrase_token1] = ACTIONS(77), + [aux_sym_property_tuning_token1] = ACTIONS(77), + [aux_sym_event_definition_token1] = ACTIONS(77), + [aux_sym_using_statement_token1] = ACTIONS(77), + [aux_sym_input_stream_tuning_token1] = ACTIONS(77), + [aux_sym_input_stream_tuning_token2] = ACTIONS(77), + [aux_sym_input_stream_tuning_token3] = ACTIONS(77), + [aux_sym_input_stream_tuning_token4] = ACTIONS(77), + [aux_sym_input_stream_tuning_token5] = ACTIONS(77), + [aux_sym_input_stream_tuning_token6] = ACTIONS(77), + [aux_sym_input_stream_tuning_token7] = ACTIONS(77), + [aux_sym_input_stream_tuning_token8] = ACTIONS(77), + [aux_sym_input_stream_tuning_token9] = ACTIONS(77), + [aux_sym_input_stream_tuning_token11] = ACTIONS(77), + [aux_sym_output_stream_tuning_token1] = ACTIONS(77), + [aux_sym_output_stream_tuning_token2] = ACTIONS(77), + [aux_sym_output_stream_tuning_token3] = ACTIONS(77), + [aux_sym_output_stream_tuning_token4] = ACTIONS(77), + [aux_sym_output_stream_tuning_token5] = ACTIONS(77), + [aux_sym_output_stream_tuning_token6] = ACTIONS(77), + [aux_sym_output_stream_tuning_token7] = ACTIONS(77), + [aux_sym_output_stream_tuning_token8] = ACTIONS(77), + [aux_sym_output_stream_statement_token1] = ACTIONS(77), + [aux_sym_on_error_phrase_token1] = ACTIONS(77), + [aux_sym_stop_after_phrase_token1] = ACTIONS(77), + [aux_sym_do_tuning_token1] = ACTIONS(77), + [anon_sym_BY] = ACTIONS(77), + [aux_sym_where_clause_token1] = ACTIONS(77), + [aux_sym_query_tuning_token1] = ACTIONS(77), + [aux_sym_query_tuning_token2] = ACTIONS(77), + [aux_sym_query_tuning_token3] = ACTIONS(77), + [aux_sym_query_tuning_token4] = ACTIONS(77), + [aux_sym_query_tuning_token5] = ACTIONS(77), + [aux_sym_query_tuning_token6] = ACTIONS(77), + [aux_sym_of_token1] = ACTIONS(77), + [aux_sym_field_definition_token1] = ACTIONS(77), + [aux_sym_index_definition_token1] = ACTIONS(77), + [aux_sym_on_statement_token1] = ACTIONS(77), + [sym__namedot] = ACTIONS(71), + [sym__namecolon] = ACTIONS(73), + [sym__or_operator] = ACTIONS(77), + [sym__and_operator] = ACTIONS(77), }, [4] = { [sym_comment] = STATE(4), [sym_include] = STATE(4), + [aux_sym_qualified_name_repeat1] = STATE(7), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(73), - [sym__terminator] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(73), - [anon_sym_RPAREN] = ACTIONS(73), - [aux_sym__logical_operator_token1] = ACTIONS(73), - [aux_sym__logical_operator_token2] = ACTIONS(73), - [aux_sym__logical_operator_token3] = ACTIONS(73), - [aux_sym__logical_operator_token4] = ACTIONS(73), - [aux_sym__logical_operator_token5] = ACTIONS(73), - [aux_sym__logical_operator_token6] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_LT_GT] = ACTIONS(73), - [anon_sym_EQ] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(71), - [anon_sym_GT_EQ] = ACTIONS(73), - [aux_sym__comparison_operator_token1] = ACTIONS(73), - [aux_sym__comparison_operator_token2] = ACTIONS(73), - [aux_sym__comparison_operator_token3] = ACTIONS(73), - [aux_sym__comparison_operator_token4] = ACTIONS(73), - [aux_sym__comparison_operator_token5] = ACTIONS(73), - [aux_sym__comparison_operator_token6] = ACTIONS(73), - [aux_sym__comparison_operator_token7] = ACTIONS(73), - [aux_sym__comparison_operator_token8] = ACTIONS(73), - [aux_sym__comparison_operator_token9] = ACTIONS(73), - [aux_sym_variable_tuning_token1] = ACTIONS(73), - [aux_sym_variable_tuning_token2] = ACTIONS(73), - [aux_sym_variable_tuning_token3] = ACTIONS(73), - [aux_sym_variable_tuning_token4] = ACTIONS(73), - [aux_sym_variable_tuning_token5] = ACTIONS(73), - [aux_sym_variable_tuning_token6] = ACTIONS(73), - [aux_sym_serialization_tuning_token1] = ACTIONS(73), - [aux_sym_variable_definition_token6] = ACTIONS(73), - [anon_sym_COMMA] = ACTIONS(73), - [aux_sym_if_statement_token2] = ACTIONS(73), - [aux_sym_else_if_statement_token1] = ACTIONS(73), - [anon_sym_COLON] = ACTIONS(73), - [aux_sym_property_type_token1] = ACTIONS(73), - [aux_sym_property_tuning_token1] = ACTIONS(73), - [aux_sym_event_definition_token1] = ACTIONS(73), - [aux_sym_data_relation_token1] = ACTIONS(73), - [aux_sym_data_relation_token2] = ACTIONS(73), - [aux_sym_using_statement_token1] = ACTIONS(73), - [aux_sym_using_statement_token2] = ACTIONS(73), - [aux_sym_inherits_token1] = ACTIONS(73), - [aux_sym_implements_token1] = ACTIONS(73), - [aux_sym_use_widget_pool_token1] = ACTIONS(73), - [aux_sym_final_token1] = ACTIONS(73), - [aux_sym_input_stream_tuning_token1] = ACTIONS(73), - [aux_sym_input_stream_tuning_token2] = ACTIONS(73), - [aux_sym_input_stream_tuning_token3] = ACTIONS(73), - [aux_sym_input_stream_tuning_token4] = ACTIONS(73), - [aux_sym_input_stream_tuning_token5] = ACTIONS(73), - [aux_sym_input_stream_tuning_token6] = ACTIONS(73), - [aux_sym_input_stream_tuning_token7] = ACTIONS(73), - [aux_sym_input_stream_tuning_token8] = ACTIONS(73), - [aux_sym_input_stream_tuning_token9] = ACTIONS(73), - [aux_sym_input_stream_tuning_token11] = ACTIONS(73), - [aux_sym_output_stream_tuning_token1] = ACTIONS(73), - [aux_sym_output_stream_tuning_token2] = ACTIONS(73), - [aux_sym_output_stream_tuning_token3] = ACTIONS(73), - [aux_sym_output_stream_tuning_token4] = ACTIONS(73), - [aux_sym_output_stream_tuning_token5] = ACTIONS(73), - [aux_sym_output_stream_tuning_token6] = ACTIONS(73), - [aux_sym_output_stream_tuning_token7] = ACTIONS(73), - [aux_sym_output_stream_tuning_token8] = ACTIONS(73), - [aux_sym_output_stream_statement_token1] = ACTIONS(73), - [aux_sym_on_error_phrase_token1] = ACTIONS(73), - [aux_sym_stop_after_phrase_token1] = ACTIONS(73), - [aux_sym_do_tuning_token1] = ACTIONS(73), - [aux_sym_where_clause_token1] = ACTIONS(73), - [aux_sym_query_tuning_token1] = ACTIONS(73), - [aux_sym_query_tuning_token2] = ACTIONS(73), - [aux_sym_query_tuning_token3] = ACTIONS(73), - [aux_sym_query_tuning_token4] = ACTIONS(73), - [aux_sym_query_tuning_token5] = ACTIONS(73), - [aux_sym_query_tuning_token6] = ACTIONS(73), - [aux_sym_sort_clause_token1] = ACTIONS(73), - [aux_sym_sort_clause_token2] = ACTIONS(73), - [aux_sym_of_token1] = ACTIONS(73), - [aux_sym_temp_table_tuning_token1] = ACTIONS(73), - [anon_sym_LIKE] = ACTIONS(71), - [aux_sym_field_definition_token1] = ACTIONS(73), - [aux_sym_index_definition_token1] = ACTIONS(73), - [aux_sym_on_statement_token1] = ACTIONS(73), - [sym__namedot] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(81), + [sym__terminator] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(81), + [anon_sym_LT_GT] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(81), + [aux_sym__comparison_operator_token1] = ACTIONS(81), + [aux_sym__comparison_operator_token2] = ACTIONS(81), + [aux_sym__comparison_operator_token3] = ACTIONS(81), + [aux_sym__comparison_operator_token4] = ACTIONS(81), + [aux_sym__comparison_operator_token5] = ACTIONS(81), + [aux_sym__comparison_operator_token6] = ACTIONS(81), + [aux_sym__comparison_operator_token7] = ACTIONS(81), + [aux_sym__comparison_operator_token8] = ACTIONS(81), + [aux_sym__comparison_operator_token9] = ACTIONS(81), + [aux_sym_variable_tuning_token1] = ACTIONS(81), + [aux_sym_variable_tuning_token2] = ACTIONS(81), + [aux_sym_variable_tuning_token3] = ACTIONS(81), + [aux_sym_variable_tuning_token4] = ACTIONS(81), + [aux_sym_variable_tuning_token5] = ACTIONS(81), + [aux_sym_variable_tuning_token6] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(81), + [aux_sym_if_statement_token2] = ACTIONS(81), + [aux_sym_else_if_statement_token1] = ACTIONS(81), + [anon_sym_COLON] = ACTIONS(81), + [aux_sym_while_phrase_token1] = ACTIONS(81), + [aux_sym_property_tuning_token1] = ACTIONS(81), + [aux_sym_event_definition_token1] = ACTIONS(81), + [aux_sym_using_statement_token1] = ACTIONS(81), + [aux_sym_input_stream_tuning_token1] = ACTIONS(81), + [aux_sym_input_stream_tuning_token2] = ACTIONS(81), + [aux_sym_input_stream_tuning_token3] = ACTIONS(81), + [aux_sym_input_stream_tuning_token4] = ACTIONS(81), + [aux_sym_input_stream_tuning_token5] = ACTIONS(81), + [aux_sym_input_stream_tuning_token6] = ACTIONS(81), + [aux_sym_input_stream_tuning_token7] = ACTIONS(81), + [aux_sym_input_stream_tuning_token8] = ACTIONS(81), + [aux_sym_input_stream_tuning_token9] = ACTIONS(81), + [aux_sym_input_stream_tuning_token11] = ACTIONS(81), + [aux_sym_output_stream_tuning_token1] = ACTIONS(81), + [aux_sym_output_stream_tuning_token2] = ACTIONS(81), + [aux_sym_output_stream_tuning_token3] = ACTIONS(81), + [aux_sym_output_stream_tuning_token4] = ACTIONS(81), + [aux_sym_output_stream_tuning_token5] = ACTIONS(81), + [aux_sym_output_stream_tuning_token6] = ACTIONS(81), + [aux_sym_output_stream_tuning_token7] = ACTIONS(81), + [aux_sym_output_stream_tuning_token8] = ACTIONS(81), + [aux_sym_output_stream_statement_token1] = ACTIONS(81), + [aux_sym_on_error_phrase_token1] = ACTIONS(81), + [aux_sym_stop_after_phrase_token1] = ACTIONS(81), + [aux_sym_do_tuning_token1] = ACTIONS(81), + [anon_sym_BY] = ACTIONS(81), + [aux_sym_where_clause_token1] = ACTIONS(81), + [aux_sym_query_tuning_token1] = ACTIONS(81), + [aux_sym_query_tuning_token2] = ACTIONS(81), + [aux_sym_query_tuning_token3] = ACTIONS(81), + [aux_sym_query_tuning_token4] = ACTIONS(81), + [aux_sym_query_tuning_token5] = ACTIONS(81), + [aux_sym_query_tuning_token6] = ACTIONS(81), + [aux_sym_of_token1] = ACTIONS(81), + [aux_sym_field_definition_token1] = ACTIONS(81), + [aux_sym_index_definition_token1] = ACTIONS(81), + [aux_sym_on_statement_token1] = ACTIONS(81), + [sym__namedot] = ACTIONS(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(4), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(78), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(80), - [sym__terminator] = ACTIONS(80), - [anon_sym_LPAREN] = ACTIONS(80), - [anon_sym_RPAREN] = ACTIONS(80), - [aux_sym__logical_operator_token1] = ACTIONS(80), - [aux_sym__logical_operator_token2] = ACTIONS(80), - [aux_sym__logical_operator_token3] = ACTIONS(80), - [aux_sym__logical_operator_token4] = ACTIONS(80), - [aux_sym__logical_operator_token5] = ACTIONS(80), - [aux_sym__logical_operator_token6] = ACTIONS(80), - [anon_sym_PLUS] = ACTIONS(80), - [anon_sym_DASH] = ACTIONS(80), - [anon_sym_LT] = ACTIONS(78), - [anon_sym_LT_EQ] = ACTIONS(80), - [anon_sym_LT_GT] = ACTIONS(80), - [anon_sym_EQ] = ACTIONS(80), - [anon_sym_GT] = ACTIONS(78), - [anon_sym_GT_EQ] = ACTIONS(80), - [aux_sym__comparison_operator_token1] = ACTIONS(80), - [aux_sym__comparison_operator_token2] = ACTIONS(80), - [aux_sym__comparison_operator_token3] = ACTIONS(80), - [aux_sym__comparison_operator_token4] = ACTIONS(80), - [aux_sym__comparison_operator_token5] = ACTIONS(80), - [aux_sym__comparison_operator_token6] = ACTIONS(80), - [aux_sym__comparison_operator_token7] = ACTIONS(80), - [aux_sym__comparison_operator_token8] = ACTIONS(80), - [aux_sym__comparison_operator_token9] = ACTIONS(80), - [aux_sym_variable_tuning_token1] = ACTIONS(80), - [aux_sym_variable_tuning_token2] = ACTIONS(80), - [aux_sym_variable_tuning_token3] = ACTIONS(80), - [aux_sym_variable_tuning_token4] = ACTIONS(80), - [aux_sym_variable_tuning_token5] = ACTIONS(80), - [aux_sym_variable_tuning_token6] = ACTIONS(80), - [aux_sym_serialization_tuning_token1] = ACTIONS(80), - [anon_sym_COMMA] = ACTIONS(80), - [aux_sym_if_statement_token2] = ACTIONS(80), - [aux_sym_else_if_statement_token1] = ACTIONS(80), - [anon_sym_COLON] = ACTIONS(80), - [aux_sym_while_phrase_token1] = ACTIONS(80), - [aux_sym_property_type_token1] = ACTIONS(80), - [aux_sym_property_tuning_token1] = ACTIONS(80), - [aux_sym_event_definition_token1] = ACTIONS(80), - [aux_sym_using_statement_token1] = ACTIONS(80), - [aux_sym_inherits_token1] = ACTIONS(80), - [aux_sym_implements_token1] = ACTIONS(80), - [aux_sym_use_widget_pool_token1] = ACTIONS(80), - [aux_sym_final_token1] = ACTIONS(80), - [aux_sym_input_stream_tuning_token1] = ACTIONS(80), - [aux_sym_input_stream_tuning_token2] = ACTIONS(80), - [aux_sym_input_stream_tuning_token3] = ACTIONS(80), - [aux_sym_input_stream_tuning_token4] = ACTIONS(80), - [aux_sym_input_stream_tuning_token5] = ACTIONS(80), - [aux_sym_input_stream_tuning_token6] = ACTIONS(80), - [aux_sym_input_stream_tuning_token7] = ACTIONS(80), - [aux_sym_input_stream_tuning_token8] = ACTIONS(80), - [aux_sym_input_stream_tuning_token9] = ACTIONS(80), - [aux_sym_input_stream_tuning_token11] = ACTIONS(80), - [aux_sym_output_stream_tuning_token1] = ACTIONS(80), - [aux_sym_output_stream_tuning_token2] = ACTIONS(80), - [aux_sym_output_stream_tuning_token3] = ACTIONS(80), - [aux_sym_output_stream_tuning_token4] = ACTIONS(80), - [aux_sym_output_stream_tuning_token5] = ACTIONS(80), - [aux_sym_output_stream_tuning_token6] = ACTIONS(80), - [aux_sym_output_stream_tuning_token7] = ACTIONS(80), - [aux_sym_output_stream_tuning_token8] = ACTIONS(80), - [aux_sym_output_stream_statement_token1] = ACTIONS(80), - [aux_sym_on_error_phrase_token1] = ACTIONS(80), - [aux_sym_stop_after_phrase_token1] = ACTIONS(80), - [aux_sym_do_tuning_token1] = ACTIONS(80), - [anon_sym_BY] = ACTIONS(80), - [aux_sym_where_clause_token1] = ACTIONS(80), - [aux_sym_query_tuning_token1] = ACTIONS(80), - [aux_sym_query_tuning_token2] = ACTIONS(80), - [aux_sym_query_tuning_token3] = ACTIONS(80), - [aux_sym_query_tuning_token4] = ACTIONS(80), - [aux_sym_query_tuning_token5] = ACTIONS(80), - [aux_sym_query_tuning_token6] = ACTIONS(80), - [aux_sym_of_token1] = ACTIONS(80), - [aux_sym_field_definition_token1] = ACTIONS(80), - [aux_sym_index_definition_token1] = ACTIONS(80), - [aux_sym_on_statement_token1] = ACTIONS(80), + [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_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_query_tuning_token6] = ACTIONS(85), + [aux_sym_of_token1] = ACTIONS(85), + [aux_sym_field_definition_token1] = ACTIONS(85), + [aux_sym_index_definition_token1] = ACTIONS(85), + [aux_sym_on_statement_token1] = ACTIONS(85), + [sym__namedot] = ACTIONS(71), + [sym__or_operator] = ACTIONS(85), + [sym__and_operator] = ACTIONS(85), }, [6] = { [sym_comment] = STATE(6), [sym_include] = STATE(6), + [aux_sym_qualified_name_repeat1] = STATE(4), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(82), + [anon_sym_SLASH] = ACTIONS(87), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(84), - [sym__terminator] = ACTIONS(84), - [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(84), - [aux_sym__logical_operator_token1] = ACTIONS(84), - [aux_sym__logical_operator_token2] = ACTIONS(84), - [aux_sym__logical_operator_token3] = ACTIONS(84), - [aux_sym__logical_operator_token4] = ACTIONS(84), - [aux_sym__logical_operator_token5] = ACTIONS(84), - [aux_sym__logical_operator_token6] = ACTIONS(84), - [anon_sym_PLUS] = ACTIONS(84), - [anon_sym_DASH] = ACTIONS(84), - [anon_sym_LT] = ACTIONS(82), - [anon_sym_LT_EQ] = ACTIONS(84), - [anon_sym_LT_GT] = ACTIONS(84), - [anon_sym_EQ] = ACTIONS(84), - [anon_sym_GT] = ACTIONS(82), - [anon_sym_GT_EQ] = ACTIONS(84), - [aux_sym__comparison_operator_token1] = ACTIONS(84), - [aux_sym__comparison_operator_token2] = ACTIONS(84), - [aux_sym__comparison_operator_token3] = ACTIONS(84), - [aux_sym__comparison_operator_token4] = ACTIONS(84), - [aux_sym__comparison_operator_token5] = ACTIONS(84), - [aux_sym__comparison_operator_token6] = ACTIONS(84), - [aux_sym__comparison_operator_token7] = ACTIONS(84), - [aux_sym__comparison_operator_token8] = ACTIONS(84), - [aux_sym__comparison_operator_token9] = ACTIONS(84), - [aux_sym_variable_tuning_token1] = ACTIONS(84), - [aux_sym_variable_tuning_token2] = ACTIONS(84), - [aux_sym_variable_tuning_token3] = ACTIONS(84), - [aux_sym_variable_tuning_token4] = ACTIONS(84), - [aux_sym_variable_tuning_token5] = ACTIONS(84), - [aux_sym_variable_tuning_token6] = ACTIONS(84), - [aux_sym_serialization_tuning_token1] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(84), - [aux_sym_if_statement_token2] = ACTIONS(84), - [aux_sym_else_if_statement_token1] = ACTIONS(84), - [anon_sym_COLON] = ACTIONS(84), - [aux_sym_while_phrase_token1] = ACTIONS(84), - [aux_sym_property_type_token1] = ACTIONS(84), - [aux_sym_property_tuning_token1] = ACTIONS(84), - [aux_sym_event_definition_token1] = ACTIONS(84), - [aux_sym_using_statement_token1] = ACTIONS(84), - [aux_sym_inherits_token1] = ACTIONS(84), - [aux_sym_implements_token1] = ACTIONS(84), - [aux_sym_use_widget_pool_token1] = ACTIONS(84), - [aux_sym_final_token1] = ACTIONS(84), - [aux_sym_input_stream_tuning_token1] = ACTIONS(84), - [aux_sym_input_stream_tuning_token2] = ACTIONS(84), - [aux_sym_input_stream_tuning_token3] = ACTIONS(84), - [aux_sym_input_stream_tuning_token4] = ACTIONS(84), - [aux_sym_input_stream_tuning_token5] = ACTIONS(84), - [aux_sym_input_stream_tuning_token6] = ACTIONS(84), - [aux_sym_input_stream_tuning_token7] = ACTIONS(84), - [aux_sym_input_stream_tuning_token8] = ACTIONS(84), - [aux_sym_input_stream_tuning_token9] = ACTIONS(84), - [aux_sym_input_stream_tuning_token11] = ACTIONS(84), - [aux_sym_output_stream_tuning_token1] = ACTIONS(84), - [aux_sym_output_stream_tuning_token2] = ACTIONS(84), - [aux_sym_output_stream_tuning_token3] = ACTIONS(84), - [aux_sym_output_stream_tuning_token4] = ACTIONS(84), - [aux_sym_output_stream_tuning_token5] = ACTIONS(84), - [aux_sym_output_stream_tuning_token6] = ACTIONS(84), - [aux_sym_output_stream_tuning_token7] = ACTIONS(84), - [aux_sym_output_stream_tuning_token8] = ACTIONS(84), - [aux_sym_output_stream_statement_token1] = ACTIONS(84), - [aux_sym_on_error_phrase_token1] = ACTIONS(84), - [aux_sym_stop_after_phrase_token1] = ACTIONS(84), - [aux_sym_do_tuning_token1] = ACTIONS(84), - [anon_sym_BY] = ACTIONS(84), - [aux_sym_where_clause_token1] = ACTIONS(84), - [aux_sym_query_tuning_token1] = ACTIONS(84), - [aux_sym_query_tuning_token2] = ACTIONS(84), - [aux_sym_query_tuning_token3] = ACTIONS(84), - [aux_sym_query_tuning_token4] = ACTIONS(84), - [aux_sym_query_tuning_token5] = ACTIONS(84), - [aux_sym_query_tuning_token6] = ACTIONS(84), - [aux_sym_of_token1] = ACTIONS(84), - [aux_sym_field_definition_token1] = ACTIONS(84), - [aux_sym_index_definition_token1] = ACTIONS(84), - [aux_sym_on_statement_token1] = ACTIONS(84), + [anon_sym_STAR] = ACTIONS(89), + [sym__terminator] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_RPAREN] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_EQ] = ACTIONS(89), + [aux_sym__comparison_operator_token1] = ACTIONS(89), + [aux_sym__comparison_operator_token2] = ACTIONS(89), + [aux_sym__comparison_operator_token3] = ACTIONS(89), + [aux_sym__comparison_operator_token4] = ACTIONS(89), + [aux_sym__comparison_operator_token5] = ACTIONS(89), + [aux_sym__comparison_operator_token6] = ACTIONS(89), + [aux_sym__comparison_operator_token7] = ACTIONS(89), + [aux_sym__comparison_operator_token8] = ACTIONS(89), + [aux_sym__comparison_operator_token9] = ACTIONS(89), + [aux_sym_variable_tuning_token1] = ACTIONS(89), + [aux_sym_variable_tuning_token2] = ACTIONS(89), + [aux_sym_variable_tuning_token3] = ACTIONS(89), + [aux_sym_variable_tuning_token4] = ACTIONS(89), + [aux_sym_variable_tuning_token5] = ACTIONS(89), + [aux_sym_variable_tuning_token6] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(89), + [aux_sym_if_statement_token2] = ACTIONS(89), + [aux_sym_else_if_statement_token1] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [aux_sym_while_phrase_token1] = ACTIONS(89), + [aux_sym_property_tuning_token1] = ACTIONS(89), + [aux_sym_event_definition_token1] = ACTIONS(89), + [aux_sym_using_statement_token1] = ACTIONS(89), + [aux_sym_input_stream_tuning_token1] = ACTIONS(89), + [aux_sym_input_stream_tuning_token2] = ACTIONS(89), + [aux_sym_input_stream_tuning_token3] = ACTIONS(89), + [aux_sym_input_stream_tuning_token4] = ACTIONS(89), + [aux_sym_input_stream_tuning_token5] = ACTIONS(89), + [aux_sym_input_stream_tuning_token6] = ACTIONS(89), + [aux_sym_input_stream_tuning_token7] = ACTIONS(89), + [aux_sym_input_stream_tuning_token8] = ACTIONS(89), + [aux_sym_input_stream_tuning_token9] = ACTIONS(89), + [aux_sym_input_stream_tuning_token11] = ACTIONS(89), + [aux_sym_output_stream_tuning_token1] = ACTIONS(89), + [aux_sym_output_stream_tuning_token2] = ACTIONS(89), + [aux_sym_output_stream_tuning_token3] = ACTIONS(89), + [aux_sym_output_stream_tuning_token4] = ACTIONS(89), + [aux_sym_output_stream_tuning_token5] = ACTIONS(89), + [aux_sym_output_stream_tuning_token6] = ACTIONS(89), + [aux_sym_output_stream_tuning_token7] = ACTIONS(89), + [aux_sym_output_stream_tuning_token8] = ACTIONS(89), + [aux_sym_output_stream_statement_token1] = ACTIONS(89), + [aux_sym_on_error_phrase_token1] = ACTIONS(89), + [aux_sym_stop_after_phrase_token1] = ACTIONS(89), + [aux_sym_do_tuning_token1] = ACTIONS(89), + [anon_sym_BY] = ACTIONS(89), + [aux_sym_where_clause_token1] = ACTIONS(89), + [aux_sym_query_tuning_token1] = ACTIONS(89), + [aux_sym_query_tuning_token2] = ACTIONS(89), + [aux_sym_query_tuning_token3] = ACTIONS(89), + [aux_sym_query_tuning_token4] = ACTIONS(89), + [aux_sym_query_tuning_token5] = ACTIONS(89), + [aux_sym_query_tuning_token6] = ACTIONS(89), + [aux_sym_of_token1] = ACTIONS(89), + [aux_sym_field_definition_token1] = ACTIONS(89), + [aux_sym_index_definition_token1] = ACTIONS(89), + [aux_sym_on_statement_token1] = ACTIONS(89), + [sym__namedot] = ACTIONS(71), + [sym__or_operator] = ACTIONS(89), + [sym__and_operator] = ACTIONS(89), }, [7] = { [sym_comment] = STATE(7), [sym_include] = STATE(7), + [aux_sym_qualified_name_repeat1] = STATE(7), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(86), + [anon_sym_SLASH] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(88), - [sym__terminator] = ACTIONS(88), - [anon_sym_LPAREN] = ACTIONS(88), - [anon_sym_RPAREN] = ACTIONS(88), - [aux_sym__logical_operator_token1] = ACTIONS(88), - [aux_sym__logical_operator_token2] = ACTIONS(88), - [aux_sym__logical_operator_token3] = ACTIONS(88), - [aux_sym__logical_operator_token4] = ACTIONS(88), - [aux_sym__logical_operator_token5] = ACTIONS(88), - [aux_sym__logical_operator_token6] = ACTIONS(88), - [anon_sym_PLUS] = ACTIONS(88), - [anon_sym_DASH] = ACTIONS(88), - [anon_sym_LT] = ACTIONS(86), - [anon_sym_LT_EQ] = ACTIONS(88), - [anon_sym_LT_GT] = ACTIONS(88), - [anon_sym_EQ] = ACTIONS(88), - [anon_sym_GT] = ACTIONS(86), - [anon_sym_GT_EQ] = ACTIONS(88), - [aux_sym__comparison_operator_token1] = ACTIONS(88), - [aux_sym__comparison_operator_token2] = ACTIONS(88), - [aux_sym__comparison_operator_token3] = ACTIONS(88), - [aux_sym__comparison_operator_token4] = ACTIONS(88), - [aux_sym__comparison_operator_token5] = ACTIONS(88), - [aux_sym__comparison_operator_token6] = ACTIONS(88), - [aux_sym__comparison_operator_token7] = ACTIONS(88), - [aux_sym__comparison_operator_token8] = ACTIONS(88), - [aux_sym__comparison_operator_token9] = ACTIONS(88), - [aux_sym_variable_tuning_token1] = ACTIONS(88), - [aux_sym_variable_tuning_token2] = ACTIONS(88), - [aux_sym_variable_tuning_token3] = ACTIONS(88), - [aux_sym_variable_tuning_token4] = ACTIONS(88), - [aux_sym_variable_tuning_token5] = ACTIONS(88), - [aux_sym_variable_tuning_token6] = ACTIONS(88), - [aux_sym_serialization_tuning_token1] = ACTIONS(88), - [anon_sym_COMMA] = ACTIONS(88), - [aux_sym_if_statement_token2] = ACTIONS(88), - [aux_sym_else_if_statement_token1] = ACTIONS(88), - [anon_sym_COLON] = ACTIONS(88), - [aux_sym_while_phrase_token1] = ACTIONS(88), - [aux_sym_property_type_token1] = ACTIONS(88), - [aux_sym_property_tuning_token1] = ACTIONS(88), - [aux_sym_event_definition_token1] = ACTIONS(88), - [aux_sym_using_statement_token1] = ACTIONS(88), - [aux_sym_inherits_token1] = ACTIONS(88), - [aux_sym_implements_token1] = ACTIONS(88), - [aux_sym_use_widget_pool_token1] = ACTIONS(88), - [aux_sym_final_token1] = ACTIONS(88), - [aux_sym_input_stream_tuning_token1] = ACTIONS(88), - [aux_sym_input_stream_tuning_token2] = ACTIONS(88), - [aux_sym_input_stream_tuning_token3] = ACTIONS(88), - [aux_sym_input_stream_tuning_token4] = ACTIONS(88), - [aux_sym_input_stream_tuning_token5] = ACTIONS(88), - [aux_sym_input_stream_tuning_token6] = ACTIONS(88), - [aux_sym_input_stream_tuning_token7] = ACTIONS(88), - [aux_sym_input_stream_tuning_token8] = ACTIONS(88), - [aux_sym_input_stream_tuning_token9] = ACTIONS(88), - [aux_sym_input_stream_tuning_token11] = ACTIONS(88), - [aux_sym_output_stream_tuning_token1] = ACTIONS(88), - [aux_sym_output_stream_tuning_token2] = ACTIONS(88), - [aux_sym_output_stream_tuning_token3] = ACTIONS(88), - [aux_sym_output_stream_tuning_token4] = ACTIONS(88), - [aux_sym_output_stream_tuning_token5] = ACTIONS(88), - [aux_sym_output_stream_tuning_token6] = ACTIONS(88), - [aux_sym_output_stream_tuning_token7] = ACTIONS(88), - [aux_sym_output_stream_tuning_token8] = ACTIONS(88), - [aux_sym_output_stream_statement_token1] = ACTIONS(88), - [aux_sym_on_error_phrase_token1] = ACTIONS(88), - [aux_sym_stop_after_phrase_token1] = ACTIONS(88), - [aux_sym_do_tuning_token1] = ACTIONS(88), - [anon_sym_BY] = ACTIONS(88), - [aux_sym_where_clause_token1] = ACTIONS(88), - [aux_sym_query_tuning_token1] = ACTIONS(88), - [aux_sym_query_tuning_token2] = ACTIONS(88), - [aux_sym_query_tuning_token3] = ACTIONS(88), - [aux_sym_query_tuning_token4] = ACTIONS(88), - [aux_sym_query_tuning_token5] = ACTIONS(88), - [aux_sym_query_tuning_token6] = ACTIONS(88), - [aux_sym_of_token1] = ACTIONS(88), - [aux_sym_field_definition_token1] = ACTIONS(88), - [aux_sym_index_definition_token1] = ACTIONS(88), - [aux_sym_on_statement_token1] = ACTIONS(88), + [anon_sym_STAR] = ACTIONS(93), + [sym__terminator] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_RPAREN] = ACTIONS(93), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(91), + [anon_sym_LT_EQ] = ACTIONS(93), + [anon_sym_LT_GT] = ACTIONS(93), + [anon_sym_EQ] = ACTIONS(93), + [anon_sym_GT] = ACTIONS(91), + [anon_sym_GT_EQ] = ACTIONS(93), + [aux_sym__comparison_operator_token1] = ACTIONS(93), + [aux_sym__comparison_operator_token2] = ACTIONS(93), + [aux_sym__comparison_operator_token3] = ACTIONS(93), + [aux_sym__comparison_operator_token4] = ACTIONS(93), + [aux_sym__comparison_operator_token5] = ACTIONS(93), + [aux_sym__comparison_operator_token6] = ACTIONS(93), + [aux_sym__comparison_operator_token7] = ACTIONS(93), + [aux_sym__comparison_operator_token8] = ACTIONS(93), + [aux_sym__comparison_operator_token9] = ACTIONS(93), + [aux_sym_variable_tuning_token1] = ACTIONS(93), + [aux_sym_variable_tuning_token2] = ACTIONS(93), + [aux_sym_variable_tuning_token3] = ACTIONS(93), + [aux_sym_variable_tuning_token4] = ACTIONS(93), + [aux_sym_variable_tuning_token5] = ACTIONS(93), + [aux_sym_variable_tuning_token6] = ACTIONS(93), + [anon_sym_COMMA] = ACTIONS(93), + [aux_sym_if_statement_token2] = ACTIONS(93), + [aux_sym_else_if_statement_token1] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(93), + [aux_sym_while_phrase_token1] = ACTIONS(93), + [aux_sym_property_tuning_token1] = ACTIONS(93), + [aux_sym_event_definition_token1] = ACTIONS(93), + [aux_sym_using_statement_token1] = ACTIONS(93), + [aux_sym_input_stream_tuning_token1] = ACTIONS(93), + [aux_sym_input_stream_tuning_token2] = ACTIONS(93), + [aux_sym_input_stream_tuning_token3] = ACTIONS(93), + [aux_sym_input_stream_tuning_token4] = ACTIONS(93), + [aux_sym_input_stream_tuning_token5] = ACTIONS(93), + [aux_sym_input_stream_tuning_token6] = ACTIONS(93), + [aux_sym_input_stream_tuning_token7] = ACTIONS(93), + [aux_sym_input_stream_tuning_token8] = ACTIONS(93), + [aux_sym_input_stream_tuning_token9] = ACTIONS(93), + [aux_sym_input_stream_tuning_token11] = ACTIONS(93), + [aux_sym_output_stream_tuning_token1] = ACTIONS(93), + [aux_sym_output_stream_tuning_token2] = ACTIONS(93), + [aux_sym_output_stream_tuning_token3] = ACTIONS(93), + [aux_sym_output_stream_tuning_token4] = ACTIONS(93), + [aux_sym_output_stream_tuning_token5] = ACTIONS(93), + [aux_sym_output_stream_tuning_token6] = ACTIONS(93), + [aux_sym_output_stream_tuning_token7] = ACTIONS(93), + [aux_sym_output_stream_tuning_token8] = ACTIONS(93), + [aux_sym_output_stream_statement_token1] = ACTIONS(93), + [aux_sym_on_error_phrase_token1] = ACTIONS(93), + [aux_sym_stop_after_phrase_token1] = ACTIONS(93), + [aux_sym_do_tuning_token1] = ACTIONS(93), + [anon_sym_BY] = ACTIONS(93), + [aux_sym_where_clause_token1] = ACTIONS(93), + [aux_sym_query_tuning_token1] = ACTIONS(93), + [aux_sym_query_tuning_token2] = ACTIONS(93), + [aux_sym_query_tuning_token3] = ACTIONS(93), + [aux_sym_query_tuning_token4] = ACTIONS(93), + [aux_sym_query_tuning_token5] = ACTIONS(93), + [aux_sym_query_tuning_token6] = ACTIONS(93), + [aux_sym_of_token1] = ACTIONS(93), + [aux_sym_field_definition_token1] = ACTIONS(93), + [aux_sym_index_definition_token1] = ACTIONS(93), + [aux_sym_on_statement_token1] = ACTIONS(93), + [sym__namedot] = ACTIONS(95), + [sym__or_operator] = ACTIONS(93), + [sym__and_operator] = ACTIONS(93), }, [8] = { [sym_comment] = STATE(8), [sym_include] = STATE(8), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(90), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(92), - [sym__terminator] = ACTIONS(92), - [anon_sym_LPAREN] = ACTIONS(92), - [anon_sym_RPAREN] = ACTIONS(92), - [aux_sym__logical_operator_token1] = ACTIONS(92), - [aux_sym__logical_operator_token2] = ACTIONS(92), - [aux_sym__logical_operator_token3] = ACTIONS(92), - [aux_sym__logical_operator_token4] = ACTIONS(92), - [aux_sym__logical_operator_token5] = ACTIONS(92), - [aux_sym__logical_operator_token6] = ACTIONS(92), - [anon_sym_PLUS] = ACTIONS(92), - [anon_sym_DASH] = ACTIONS(92), - [anon_sym_LT] = ACTIONS(90), - [anon_sym_LT_EQ] = ACTIONS(92), - [anon_sym_LT_GT] = ACTIONS(92), - [anon_sym_EQ] = ACTIONS(92), - [anon_sym_GT] = ACTIONS(90), - [anon_sym_GT_EQ] = ACTIONS(92), - [aux_sym__comparison_operator_token1] = ACTIONS(92), - [aux_sym__comparison_operator_token2] = ACTIONS(92), - [aux_sym__comparison_operator_token3] = ACTIONS(92), - [aux_sym__comparison_operator_token4] = ACTIONS(92), - [aux_sym__comparison_operator_token5] = ACTIONS(92), - [aux_sym__comparison_operator_token6] = ACTIONS(92), - [aux_sym__comparison_operator_token7] = ACTIONS(92), - [aux_sym__comparison_operator_token8] = ACTIONS(92), - [aux_sym__comparison_operator_token9] = ACTIONS(92), - [aux_sym_variable_tuning_token1] = ACTIONS(92), - [aux_sym_variable_tuning_token2] = ACTIONS(92), - [aux_sym_variable_tuning_token3] = ACTIONS(92), - [aux_sym_variable_tuning_token4] = ACTIONS(92), - [aux_sym_variable_tuning_token5] = ACTIONS(92), - [aux_sym_variable_tuning_token6] = ACTIONS(92), - [aux_sym_serialization_tuning_token1] = ACTIONS(92), - [anon_sym_COMMA] = ACTIONS(92), - [aux_sym_if_statement_token2] = ACTIONS(92), - [aux_sym_else_if_statement_token1] = ACTIONS(92), - [anon_sym_COLON] = ACTIONS(92), - [aux_sym_while_phrase_token1] = ACTIONS(92), - [aux_sym_property_type_token1] = ACTIONS(92), - [aux_sym_property_tuning_token1] = ACTIONS(92), - [aux_sym_event_definition_token1] = ACTIONS(92), - [aux_sym_using_statement_token1] = ACTIONS(92), - [aux_sym_inherits_token1] = ACTIONS(92), - [aux_sym_implements_token1] = ACTIONS(92), - [aux_sym_use_widget_pool_token1] = ACTIONS(92), - [aux_sym_final_token1] = ACTIONS(92), - [aux_sym_input_stream_tuning_token1] = ACTIONS(92), - [aux_sym_input_stream_tuning_token2] = ACTIONS(92), - [aux_sym_input_stream_tuning_token3] = ACTIONS(92), - [aux_sym_input_stream_tuning_token4] = ACTIONS(92), - [aux_sym_input_stream_tuning_token5] = ACTIONS(92), - [aux_sym_input_stream_tuning_token6] = ACTIONS(92), - [aux_sym_input_stream_tuning_token7] = ACTIONS(92), - [aux_sym_input_stream_tuning_token8] = ACTIONS(92), - [aux_sym_input_stream_tuning_token9] = ACTIONS(92), - [aux_sym_input_stream_tuning_token11] = ACTIONS(92), - [aux_sym_output_stream_tuning_token1] = ACTIONS(92), - [aux_sym_output_stream_tuning_token2] = ACTIONS(92), - [aux_sym_output_stream_tuning_token3] = ACTIONS(92), - [aux_sym_output_stream_tuning_token4] = ACTIONS(92), - [aux_sym_output_stream_tuning_token5] = ACTIONS(92), - [aux_sym_output_stream_tuning_token6] = ACTIONS(92), - [aux_sym_output_stream_tuning_token7] = ACTIONS(92), - [aux_sym_output_stream_tuning_token8] = ACTIONS(92), - [aux_sym_output_stream_statement_token1] = ACTIONS(92), - [aux_sym_on_error_phrase_token1] = ACTIONS(92), - [aux_sym_stop_after_phrase_token1] = ACTIONS(92), - [aux_sym_do_tuning_token1] = ACTIONS(92), - [anon_sym_BY] = ACTIONS(92), - [aux_sym_where_clause_token1] = ACTIONS(92), - [aux_sym_query_tuning_token1] = ACTIONS(92), - [aux_sym_query_tuning_token2] = ACTIONS(92), - [aux_sym_query_tuning_token3] = ACTIONS(92), - [aux_sym_query_tuning_token4] = ACTIONS(92), - [aux_sym_query_tuning_token5] = ACTIONS(92), - [aux_sym_query_tuning_token6] = ACTIONS(92), - [aux_sym_of_token1] = ACTIONS(92), - [aux_sym_field_definition_token1] = ACTIONS(92), - [aux_sym_index_definition_token1] = ACTIONS(92), - [aux_sym_on_statement_token1] = ACTIONS(92), - }, - [9] = { - [sym_comment] = STATE(9), - [sym_include] = STATE(9), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(94), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(96), - [sym__terminator] = ACTIONS(96), - [anon_sym_LPAREN] = ACTIONS(96), - [anon_sym_RPAREN] = ACTIONS(96), - [aux_sym__logical_operator_token1] = ACTIONS(96), - [aux_sym__logical_operator_token2] = ACTIONS(96), - [aux_sym__logical_operator_token3] = ACTIONS(96), - [aux_sym__logical_operator_token4] = ACTIONS(96), - [aux_sym__logical_operator_token5] = ACTIONS(96), - [aux_sym__logical_operator_token6] = ACTIONS(96), - [anon_sym_PLUS] = ACTIONS(96), - [anon_sym_DASH] = ACTIONS(96), - [anon_sym_LT] = ACTIONS(94), - [anon_sym_LT_EQ] = ACTIONS(96), - [anon_sym_LT_GT] = ACTIONS(96), - [anon_sym_EQ] = ACTIONS(96), - [anon_sym_GT] = ACTIONS(94), - [anon_sym_GT_EQ] = ACTIONS(96), - [aux_sym__comparison_operator_token1] = ACTIONS(96), - [aux_sym__comparison_operator_token2] = ACTIONS(96), - [aux_sym__comparison_operator_token3] = ACTIONS(96), - [aux_sym__comparison_operator_token4] = ACTIONS(96), - [aux_sym__comparison_operator_token5] = ACTIONS(96), - [aux_sym__comparison_operator_token6] = ACTIONS(96), - [aux_sym__comparison_operator_token7] = ACTIONS(96), - [aux_sym__comparison_operator_token8] = ACTIONS(96), - [aux_sym__comparison_operator_token9] = ACTIONS(96), - [aux_sym_variable_tuning_token1] = ACTIONS(96), - [aux_sym_variable_tuning_token2] = ACTIONS(96), - [aux_sym_variable_tuning_token3] = ACTIONS(96), - [aux_sym_variable_tuning_token4] = ACTIONS(96), - [aux_sym_variable_tuning_token5] = ACTIONS(96), - [aux_sym_variable_tuning_token6] = ACTIONS(96), - [aux_sym_serialization_tuning_token1] = ACTIONS(96), - [anon_sym_COMMA] = ACTIONS(96), - [aux_sym_if_statement_token2] = ACTIONS(96), - [aux_sym_else_if_statement_token1] = ACTIONS(96), - [anon_sym_COLON] = ACTIONS(96), - [aux_sym_while_phrase_token1] = ACTIONS(96), - [aux_sym_property_type_token1] = ACTIONS(96), - [aux_sym_property_tuning_token1] = ACTIONS(96), - [aux_sym_event_definition_token1] = ACTIONS(96), - [aux_sym_using_statement_token1] = ACTIONS(96), - [aux_sym_inherits_token1] = ACTIONS(96), - [aux_sym_implements_token1] = ACTIONS(96), - [aux_sym_use_widget_pool_token1] = ACTIONS(96), - [aux_sym_final_token1] = ACTIONS(96), - [aux_sym_input_stream_tuning_token1] = ACTIONS(96), - [aux_sym_input_stream_tuning_token2] = ACTIONS(96), - [aux_sym_input_stream_tuning_token3] = ACTIONS(96), - [aux_sym_input_stream_tuning_token4] = ACTIONS(96), - [aux_sym_input_stream_tuning_token5] = ACTIONS(96), - [aux_sym_input_stream_tuning_token6] = ACTIONS(96), - [aux_sym_input_stream_tuning_token7] = ACTIONS(96), - [aux_sym_input_stream_tuning_token8] = ACTIONS(96), - [aux_sym_input_stream_tuning_token9] = ACTIONS(96), - [aux_sym_input_stream_tuning_token11] = ACTIONS(96), - [aux_sym_output_stream_tuning_token1] = ACTIONS(96), - [aux_sym_output_stream_tuning_token2] = ACTIONS(96), - [aux_sym_output_stream_tuning_token3] = ACTIONS(96), - [aux_sym_output_stream_tuning_token4] = ACTIONS(96), - [aux_sym_output_stream_tuning_token5] = ACTIONS(96), - [aux_sym_output_stream_tuning_token6] = ACTIONS(96), - [aux_sym_output_stream_tuning_token7] = ACTIONS(96), - [aux_sym_output_stream_tuning_token8] = ACTIONS(96), - [aux_sym_output_stream_statement_token1] = ACTIONS(96), - [aux_sym_on_error_phrase_token1] = ACTIONS(96), - [aux_sym_stop_after_phrase_token1] = ACTIONS(96), - [aux_sym_do_tuning_token1] = ACTIONS(96), - [anon_sym_BY] = ACTIONS(96), - [aux_sym_where_clause_token1] = ACTIONS(96), - [aux_sym_query_tuning_token1] = ACTIONS(96), - [aux_sym_query_tuning_token2] = ACTIONS(96), - [aux_sym_query_tuning_token3] = ACTIONS(96), - [aux_sym_query_tuning_token4] = ACTIONS(96), - [aux_sym_query_tuning_token5] = ACTIONS(96), - [aux_sym_query_tuning_token6] = ACTIONS(96), - [aux_sym_of_token1] = ACTIONS(96), - [aux_sym_field_definition_token1] = ACTIONS(96), - [aux_sym_index_definition_token1] = ACTIONS(96), - [aux_sym_on_statement_token1] = ACTIONS(96), - }, - [10] = { - [sym_comment] = STATE(10), - [sym_include] = STATE(10), + [aux_sym_object_access_repeat1] = STATE(8), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(98), @@ -27566,12 +26682,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(100), [anon_sym_LPAREN] = ACTIONS(100), [anon_sym_RPAREN] = ACTIONS(100), - [aux_sym__logical_operator_token1] = ACTIONS(100), - [aux_sym__logical_operator_token2] = ACTIONS(100), - [aux_sym__logical_operator_token3] = ACTIONS(100), - [aux_sym__logical_operator_token4] = ACTIONS(100), - [aux_sym__logical_operator_token5] = ACTIONS(100), - [aux_sym__logical_operator_token6] = ACTIONS(100), [anon_sym_PLUS] = ACTIONS(100), [anon_sym_DASH] = ACTIONS(100), [anon_sym_LT] = ACTIONS(98), @@ -27595,9 +26705,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token4] = ACTIONS(100), [aux_sym_variable_tuning_token5] = ACTIONS(100), [aux_sym_variable_tuning_token6] = ACTIONS(100), - [aux_sym_query_definition_tuning_token1] = ACTIONS(100), - [anon_sym_SCROLLING] = ACTIONS(100), - [aux_sym_query_definition_tuning_token2] = ACTIONS(100), [anon_sym_COMMA] = ACTIONS(100), [aux_sym_if_statement_token2] = ACTIONS(100), [aux_sym_else_if_statement_token1] = ACTIONS(100), @@ -27640,454 +26747,579 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__namecolon] = ACTIONS(102), + [sym__or_operator] = ACTIONS(100), + [sym__and_operator] = ACTIONS(100), + }, + [9] = { + [sym_comment] = STATE(9), + [sym_include] = STATE(9), + [aux_sym_object_access_repeat1] = STATE(8), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(65), + [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_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_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_query_tuning_token6] = ACTIONS(107), + [aux_sym_of_token1] = ACTIONS(107), + [aux_sym_field_definition_token1] = ACTIONS(107), + [aux_sym_index_definition_token1] = ACTIONS(107), + [aux_sym_on_statement_token1] = ACTIONS(107), + [sym__namecolon] = ACTIONS(73), + [sym__or_operator] = ACTIONS(107), + [sym__and_operator] = ACTIONS(107), + }, + [10] = { + [sym_comment] = STATE(10), + [sym_include] = STATE(10), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(111), + [sym__terminator] = ACTIONS(111), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_RPAREN] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(111), + [anon_sym_DASH] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(109), + [anon_sym_LT_EQ] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(111), + [anon_sym_GT] = ACTIONS(109), + [anon_sym_GT_EQ] = ACTIONS(111), + [aux_sym__comparison_operator_token1] = ACTIONS(111), + [aux_sym__comparison_operator_token2] = ACTIONS(111), + [aux_sym__comparison_operator_token3] = ACTIONS(111), + [aux_sym__comparison_operator_token4] = ACTIONS(111), + [aux_sym__comparison_operator_token5] = ACTIONS(111), + [aux_sym__comparison_operator_token6] = ACTIONS(111), + [aux_sym__comparison_operator_token7] = ACTIONS(111), + [aux_sym__comparison_operator_token8] = ACTIONS(111), + [aux_sym__comparison_operator_token9] = ACTIONS(111), + [aux_sym_variable_tuning_token1] = ACTIONS(111), + [aux_sym_variable_tuning_token2] = ACTIONS(111), + [aux_sym_variable_tuning_token3] = ACTIONS(111), + [aux_sym_variable_tuning_token4] = ACTIONS(111), + [aux_sym_variable_tuning_token5] = ACTIONS(111), + [aux_sym_variable_tuning_token6] = ACTIONS(111), + [anon_sym_COMMA] = ACTIONS(111), + [aux_sym_if_statement_token2] = ACTIONS(111), + [aux_sym_else_if_statement_token1] = ACTIONS(111), + [anon_sym_COLON] = ACTIONS(111), + [aux_sym_while_phrase_token1] = ACTIONS(111), + [aux_sym_property_tuning_token1] = ACTIONS(111), + [aux_sym_event_definition_token1] = ACTIONS(111), + [aux_sym_using_statement_token1] = ACTIONS(111), + [aux_sym_input_stream_tuning_token1] = ACTIONS(111), + [aux_sym_input_stream_tuning_token2] = ACTIONS(111), + [aux_sym_input_stream_tuning_token3] = ACTIONS(111), + [aux_sym_input_stream_tuning_token4] = ACTIONS(111), + [aux_sym_input_stream_tuning_token5] = ACTIONS(111), + [aux_sym_input_stream_tuning_token6] = ACTIONS(111), + [aux_sym_input_stream_tuning_token7] = ACTIONS(111), + [aux_sym_input_stream_tuning_token8] = ACTIONS(111), + [aux_sym_input_stream_tuning_token9] = ACTIONS(111), + [aux_sym_input_stream_tuning_token11] = ACTIONS(111), + [aux_sym_output_stream_tuning_token1] = ACTIONS(111), + [aux_sym_output_stream_tuning_token2] = ACTIONS(111), + [aux_sym_output_stream_tuning_token3] = ACTIONS(111), + [aux_sym_output_stream_tuning_token4] = ACTIONS(111), + [aux_sym_output_stream_tuning_token5] = ACTIONS(111), + [aux_sym_output_stream_tuning_token6] = ACTIONS(111), + [aux_sym_output_stream_tuning_token7] = ACTIONS(111), + [aux_sym_output_stream_tuning_token8] = ACTIONS(111), + [aux_sym_output_stream_statement_token1] = ACTIONS(111), + [aux_sym_on_error_phrase_token1] = ACTIONS(111), + [aux_sym_stop_after_phrase_token1] = ACTIONS(111), + [aux_sym_do_tuning_token1] = ACTIONS(111), + [anon_sym_BY] = ACTIONS(111), + [aux_sym_where_clause_token1] = ACTIONS(111), + [aux_sym_query_tuning_token1] = ACTIONS(111), + [aux_sym_query_tuning_token2] = ACTIONS(111), + [aux_sym_query_tuning_token3] = ACTIONS(111), + [aux_sym_query_tuning_token4] = ACTIONS(111), + [aux_sym_query_tuning_token5] = ACTIONS(111), + [aux_sym_query_tuning_token6] = ACTIONS(111), + [aux_sym_of_token1] = ACTIONS(111), + [aux_sym_field_definition_token1] = ACTIONS(111), + [aux_sym_index_definition_token1] = ACTIONS(111), + [aux_sym_on_statement_token1] = ACTIONS(111), + [sym__namedot] = ACTIONS(113), + [sym__or_operator] = ACTIONS(111), + [sym__and_operator] = ACTIONS(111), }, [11] = { [sym_comment] = STATE(11), [sym_include] = STATE(11), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(98), + [anon_sym_SLASH] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(100), - [sym__terminator] = ACTIONS(100), - [anon_sym_LPAREN] = ACTIONS(100), - [anon_sym_RPAREN] = ACTIONS(100), - [aux_sym__logical_operator_token1] = ACTIONS(100), - [aux_sym__logical_operator_token2] = ACTIONS(100), - [aux_sym__logical_operator_token3] = ACTIONS(100), - [aux_sym__logical_operator_token4] = ACTIONS(100), - [aux_sym__logical_operator_token5] = ACTIONS(100), - [aux_sym__logical_operator_token6] = 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), - [aux_sym_query_definition_tuning_token1] = ACTIONS(100), - [anon_sym_SCROLLING] = ACTIONS(100), - [aux_sym_query_definition_tuning_token2] = ACTIONS(100), - [anon_sym_COMMA] = ACTIONS(100), - [aux_sym_if_statement_token2] = ACTIONS(100), - [aux_sym_else_if_statement_token1] = ACTIONS(100), - [anon_sym_COLON] = ACTIONS(100), - [aux_sym_while_phrase_token1] = ACTIONS(100), - [aux_sym_property_tuning_token1] = ACTIONS(100), - [aux_sym_event_definition_token1] = ACTIONS(100), - [aux_sym_using_statement_token1] = ACTIONS(100), - [aux_sym_input_stream_tuning_token1] = ACTIONS(100), - [aux_sym_input_stream_tuning_token2] = ACTIONS(100), - [aux_sym_input_stream_tuning_token3] = ACTIONS(100), - [aux_sym_input_stream_tuning_token4] = ACTIONS(100), - [aux_sym_input_stream_tuning_token5] = ACTIONS(100), - [aux_sym_input_stream_tuning_token6] = ACTIONS(100), - [aux_sym_input_stream_tuning_token7] = ACTIONS(100), - [aux_sym_input_stream_tuning_token8] = ACTIONS(100), - [aux_sym_input_stream_tuning_token9] = ACTIONS(100), - [aux_sym_input_stream_tuning_token11] = ACTIONS(100), - [aux_sym_output_stream_tuning_token1] = ACTIONS(100), - [aux_sym_output_stream_tuning_token2] = ACTIONS(100), - [aux_sym_output_stream_tuning_token3] = ACTIONS(100), - [aux_sym_output_stream_tuning_token4] = ACTIONS(100), - [aux_sym_output_stream_tuning_token5] = ACTIONS(100), - [aux_sym_output_stream_tuning_token6] = ACTIONS(100), - [aux_sym_output_stream_tuning_token7] = ACTIONS(100), - [aux_sym_output_stream_tuning_token8] = ACTIONS(100), - [aux_sym_output_stream_statement_token1] = ACTIONS(100), - [aux_sym_on_error_phrase_token1] = ACTIONS(100), - [aux_sym_stop_after_phrase_token1] = ACTIONS(100), - [aux_sym_do_tuning_token1] = ACTIONS(100), - [anon_sym_BY] = ACTIONS(100), - [aux_sym_where_clause_token1] = ACTIONS(100), - [aux_sym_query_tuning_token1] = ACTIONS(100), - [aux_sym_query_tuning_token2] = ACTIONS(100), - [aux_sym_query_tuning_token3] = ACTIONS(100), - [aux_sym_query_tuning_token4] = ACTIONS(100), - [aux_sym_query_tuning_token5] = ACTIONS(100), - [aux_sym_query_tuning_token6] = 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), + [anon_sym_STAR] = ACTIONS(93), + [sym__terminator] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_RPAREN] = ACTIONS(93), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(91), + [anon_sym_LT_EQ] = ACTIONS(93), + [anon_sym_LT_GT] = ACTIONS(93), + [anon_sym_EQ] = ACTIONS(93), + [anon_sym_GT] = ACTIONS(91), + [anon_sym_GT_EQ] = ACTIONS(93), + [aux_sym__comparison_operator_token1] = ACTIONS(93), + [aux_sym__comparison_operator_token2] = ACTIONS(93), + [aux_sym__comparison_operator_token3] = ACTIONS(93), + [aux_sym__comparison_operator_token4] = ACTIONS(93), + [aux_sym__comparison_operator_token5] = ACTIONS(93), + [aux_sym__comparison_operator_token6] = ACTIONS(93), + [aux_sym__comparison_operator_token7] = ACTIONS(93), + [aux_sym__comparison_operator_token8] = ACTIONS(93), + [aux_sym__comparison_operator_token9] = ACTIONS(93), + [aux_sym_variable_tuning_token1] = ACTIONS(93), + [aux_sym_variable_tuning_token2] = ACTIONS(93), + [aux_sym_variable_tuning_token3] = ACTIONS(93), + [aux_sym_variable_tuning_token4] = ACTIONS(93), + [aux_sym_variable_tuning_token5] = ACTIONS(93), + [aux_sym_variable_tuning_token6] = ACTIONS(93), + [anon_sym_COMMA] = ACTIONS(93), + [aux_sym_if_statement_token2] = ACTIONS(93), + [aux_sym_else_if_statement_token1] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(93), + [aux_sym_while_phrase_token1] = ACTIONS(93), + [aux_sym_property_tuning_token1] = ACTIONS(93), + [aux_sym_event_definition_token1] = ACTIONS(93), + [aux_sym_using_statement_token1] = ACTIONS(93), + [aux_sym_input_stream_tuning_token1] = ACTIONS(93), + [aux_sym_input_stream_tuning_token2] = ACTIONS(93), + [aux_sym_input_stream_tuning_token3] = ACTIONS(93), + [aux_sym_input_stream_tuning_token4] = ACTIONS(93), + [aux_sym_input_stream_tuning_token5] = ACTIONS(93), + [aux_sym_input_stream_tuning_token6] = ACTIONS(93), + [aux_sym_input_stream_tuning_token7] = ACTIONS(93), + [aux_sym_input_stream_tuning_token8] = ACTIONS(93), + [aux_sym_input_stream_tuning_token9] = ACTIONS(93), + [aux_sym_input_stream_tuning_token11] = ACTIONS(93), + [aux_sym_output_stream_tuning_token1] = ACTIONS(93), + [aux_sym_output_stream_tuning_token2] = ACTIONS(93), + [aux_sym_output_stream_tuning_token3] = ACTIONS(93), + [aux_sym_output_stream_tuning_token4] = ACTIONS(93), + [aux_sym_output_stream_tuning_token5] = ACTIONS(93), + [aux_sym_output_stream_tuning_token6] = ACTIONS(93), + [aux_sym_output_stream_tuning_token7] = ACTIONS(93), + [aux_sym_output_stream_tuning_token8] = ACTIONS(93), + [aux_sym_output_stream_statement_token1] = ACTIONS(93), + [aux_sym_on_error_phrase_token1] = ACTIONS(93), + [aux_sym_stop_after_phrase_token1] = ACTIONS(93), + [aux_sym_do_tuning_token1] = ACTIONS(93), + [anon_sym_BY] = ACTIONS(93), + [aux_sym_where_clause_token1] = ACTIONS(93), + [aux_sym_query_tuning_token1] = ACTIONS(93), + [aux_sym_query_tuning_token2] = ACTIONS(93), + [aux_sym_query_tuning_token3] = ACTIONS(93), + [aux_sym_query_tuning_token4] = ACTIONS(93), + [aux_sym_query_tuning_token5] = ACTIONS(93), + [aux_sym_query_tuning_token6] = ACTIONS(93), + [aux_sym_of_token1] = ACTIONS(93), + [aux_sym_field_definition_token1] = ACTIONS(93), + [aux_sym_index_definition_token1] = ACTIONS(93), + [aux_sym_on_statement_token1] = ACTIONS(93), + [sym__namedot] = ACTIONS(93), + [sym__or_operator] = ACTIONS(93), + [sym__and_operator] = ACTIONS(93), }, [12] = { [sym_comment] = STATE(12), [sym_include] = STATE(12), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(104), + [anon_sym_SLASH] = ACTIONS(115), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(106), - [sym__terminator] = ACTIONS(106), - [anon_sym_LPAREN] = ACTIONS(106), - [anon_sym_RPAREN] = ACTIONS(106), - [aux_sym__logical_operator_token1] = ACTIONS(106), - [aux_sym__logical_operator_token2] = ACTIONS(106), - [aux_sym__logical_operator_token3] = ACTIONS(106), - [aux_sym__logical_operator_token4] = ACTIONS(106), - [aux_sym__logical_operator_token5] = ACTIONS(106), - [aux_sym__logical_operator_token6] = ACTIONS(106), - [anon_sym_PLUS] = ACTIONS(106), - [anon_sym_DASH] = ACTIONS(106), - [anon_sym_LT] = ACTIONS(104), - [anon_sym_LT_EQ] = ACTIONS(106), - [anon_sym_LT_GT] = ACTIONS(106), - [anon_sym_EQ] = ACTIONS(106), - [anon_sym_GT] = ACTIONS(104), - [anon_sym_GT_EQ] = ACTIONS(106), - [aux_sym__comparison_operator_token1] = ACTIONS(106), - [aux_sym__comparison_operator_token2] = ACTIONS(106), - [aux_sym__comparison_operator_token3] = ACTIONS(106), - [aux_sym__comparison_operator_token4] = ACTIONS(106), - [aux_sym__comparison_operator_token5] = ACTIONS(106), - [aux_sym__comparison_operator_token6] = ACTIONS(106), - [aux_sym__comparison_operator_token7] = ACTIONS(106), - [aux_sym__comparison_operator_token8] = ACTIONS(106), - [aux_sym__comparison_operator_token9] = ACTIONS(106), - [aux_sym_variable_tuning_token1] = ACTIONS(106), - [aux_sym_variable_tuning_token2] = ACTIONS(106), - [aux_sym_variable_tuning_token3] = ACTIONS(106), - [aux_sym_variable_tuning_token4] = ACTIONS(106), - [aux_sym_variable_tuning_token5] = ACTIONS(106), - [aux_sym_variable_tuning_token6] = ACTIONS(106), - [aux_sym_query_definition_tuning_token1] = ACTIONS(106), - [anon_sym_SCROLLING] = ACTIONS(106), - [aux_sym_query_definition_tuning_token2] = ACTIONS(106), - [anon_sym_COMMA] = ACTIONS(106), - [aux_sym_if_statement_token2] = ACTIONS(106), - [aux_sym_else_if_statement_token1] = ACTIONS(106), - [anon_sym_COLON] = ACTIONS(106), - [aux_sym_while_phrase_token1] = ACTIONS(106), - [aux_sym_property_tuning_token1] = ACTIONS(106), - [aux_sym_event_definition_token1] = ACTIONS(106), - [aux_sym_using_statement_token1] = ACTIONS(106), - [aux_sym_input_stream_tuning_token1] = ACTIONS(106), - [aux_sym_input_stream_tuning_token2] = ACTIONS(106), - [aux_sym_input_stream_tuning_token3] = ACTIONS(106), - [aux_sym_input_stream_tuning_token4] = ACTIONS(106), - [aux_sym_input_stream_tuning_token5] = ACTIONS(106), - [aux_sym_input_stream_tuning_token6] = ACTIONS(106), - [aux_sym_input_stream_tuning_token7] = ACTIONS(106), - [aux_sym_input_stream_tuning_token8] = ACTIONS(106), - [aux_sym_input_stream_tuning_token9] = ACTIONS(106), - [aux_sym_input_stream_tuning_token11] = ACTIONS(106), - [aux_sym_output_stream_tuning_token1] = ACTIONS(106), - [aux_sym_output_stream_tuning_token2] = ACTIONS(106), - [aux_sym_output_stream_tuning_token3] = ACTIONS(106), - [aux_sym_output_stream_tuning_token4] = ACTIONS(106), - [aux_sym_output_stream_tuning_token5] = ACTIONS(106), - [aux_sym_output_stream_tuning_token6] = ACTIONS(106), - [aux_sym_output_stream_tuning_token7] = ACTIONS(106), - [aux_sym_output_stream_tuning_token8] = ACTIONS(106), - [aux_sym_output_stream_statement_token1] = ACTIONS(106), - [aux_sym_on_error_phrase_token1] = ACTIONS(106), - [aux_sym_stop_after_phrase_token1] = ACTIONS(106), - [aux_sym_do_tuning_token1] = ACTIONS(106), - [anon_sym_BY] = ACTIONS(106), - [aux_sym_where_clause_token1] = ACTIONS(106), - [aux_sym_query_tuning_token1] = ACTIONS(106), - [aux_sym_query_tuning_token2] = ACTIONS(106), - [aux_sym_query_tuning_token3] = ACTIONS(106), - [aux_sym_query_tuning_token4] = ACTIONS(106), - [aux_sym_query_tuning_token5] = ACTIONS(106), - [aux_sym_query_tuning_token6] = ACTIONS(106), - [aux_sym_of_token1] = ACTIONS(106), - [aux_sym_field_definition_token1] = ACTIONS(106), - [aux_sym_index_definition_token1] = ACTIONS(106), - [aux_sym_on_statement_token1] = ACTIONS(106), + [anon_sym_STAR] = ACTIONS(117), + [sym__terminator] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(117), + [anon_sym_RPAREN] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_LT] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(117), + [anon_sym_LT_GT] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_GT] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(117), + [aux_sym__comparison_operator_token1] = ACTIONS(117), + [aux_sym__comparison_operator_token2] = ACTIONS(117), + [aux_sym__comparison_operator_token3] = ACTIONS(117), + [aux_sym__comparison_operator_token4] = ACTIONS(117), + [aux_sym__comparison_operator_token5] = ACTIONS(117), + [aux_sym__comparison_operator_token6] = ACTIONS(117), + [aux_sym__comparison_operator_token7] = ACTIONS(117), + [aux_sym__comparison_operator_token8] = ACTIONS(117), + [aux_sym__comparison_operator_token9] = ACTIONS(117), + [aux_sym_variable_tuning_token1] = ACTIONS(117), + [aux_sym_variable_tuning_token2] = ACTIONS(117), + [aux_sym_variable_tuning_token3] = ACTIONS(117), + [aux_sym_variable_tuning_token4] = ACTIONS(117), + [aux_sym_variable_tuning_token5] = ACTIONS(117), + [aux_sym_variable_tuning_token6] = ACTIONS(117), + [anon_sym_COMMA] = ACTIONS(117), + [aux_sym_if_statement_token2] = ACTIONS(117), + [aux_sym_else_if_statement_token1] = ACTIONS(117), + [anon_sym_COLON] = ACTIONS(117), + [aux_sym_while_phrase_token1] = ACTIONS(117), + [aux_sym_property_tuning_token1] = ACTIONS(117), + [aux_sym_event_definition_token1] = ACTIONS(117), + [aux_sym_using_statement_token1] = ACTIONS(117), + [aux_sym_input_stream_tuning_token1] = ACTIONS(117), + [aux_sym_input_stream_tuning_token2] = ACTIONS(117), + [aux_sym_input_stream_tuning_token3] = ACTIONS(117), + [aux_sym_input_stream_tuning_token4] = ACTIONS(117), + [aux_sym_input_stream_tuning_token5] = ACTIONS(117), + [aux_sym_input_stream_tuning_token6] = ACTIONS(117), + [aux_sym_input_stream_tuning_token7] = ACTIONS(117), + [aux_sym_input_stream_tuning_token8] = ACTIONS(117), + [aux_sym_input_stream_tuning_token9] = ACTIONS(117), + [aux_sym_input_stream_tuning_token11] = ACTIONS(117), + [aux_sym_output_stream_tuning_token1] = ACTIONS(117), + [aux_sym_output_stream_tuning_token2] = ACTIONS(117), + [aux_sym_output_stream_tuning_token3] = ACTIONS(117), + [aux_sym_output_stream_tuning_token4] = ACTIONS(117), + [aux_sym_output_stream_tuning_token5] = ACTIONS(117), + [aux_sym_output_stream_tuning_token6] = ACTIONS(117), + [aux_sym_output_stream_tuning_token7] = ACTIONS(117), + [aux_sym_output_stream_tuning_token8] = ACTIONS(117), + [aux_sym_output_stream_statement_token1] = ACTIONS(117), + [aux_sym_on_error_phrase_token1] = ACTIONS(117), + [aux_sym_stop_after_phrase_token1] = ACTIONS(117), + [aux_sym_do_tuning_token1] = ACTIONS(117), + [anon_sym_BY] = ACTIONS(117), + [aux_sym_where_clause_token1] = ACTIONS(117), + [aux_sym_query_tuning_token1] = ACTIONS(117), + [aux_sym_query_tuning_token2] = ACTIONS(117), + [aux_sym_query_tuning_token3] = ACTIONS(117), + [aux_sym_query_tuning_token4] = ACTIONS(117), + [aux_sym_query_tuning_token5] = ACTIONS(117), + [aux_sym_query_tuning_token6] = ACTIONS(117), + [aux_sym_of_token1] = ACTIONS(117), + [aux_sym_field_definition_token1] = ACTIONS(117), + [aux_sym_index_definition_token1] = ACTIONS(117), + [aux_sym_on_statement_token1] = ACTIONS(117), + [sym__namecolon] = ACTIONS(117), + [sym__or_operator] = ACTIONS(117), + [sym__and_operator] = ACTIONS(117), }, [13] = { [sym_comment] = STATE(13), [sym_include] = STATE(13), - [aux_sym_qualified_name_repeat1] = STATE(2), - [aux_sym_object_access_repeat1] = STATE(14), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(108), + [anon_sym_SLASH] = ACTIONS(87), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(110), - [sym__terminator] = ACTIONS(110), - [anon_sym_LPAREN] = ACTIONS(112), - [anon_sym_RPAREN] = ACTIONS(110), - [aux_sym__logical_operator_token1] = ACTIONS(110), - [aux_sym__logical_operator_token2] = ACTIONS(110), - [aux_sym__logical_operator_token3] = ACTIONS(110), - [aux_sym__logical_operator_token4] = ACTIONS(110), - [aux_sym__logical_operator_token5] = ACTIONS(110), - [aux_sym__logical_operator_token6] = ACTIONS(110), - [anon_sym_PLUS] = ACTIONS(110), - [anon_sym_DASH] = ACTIONS(110), - [anon_sym_LT] = ACTIONS(108), - [anon_sym_LT_EQ] = ACTIONS(110), - [anon_sym_LT_GT] = ACTIONS(110), - [anon_sym_EQ] = ACTIONS(110), - [anon_sym_GT] = ACTIONS(108), - [anon_sym_GT_EQ] = ACTIONS(110), - [aux_sym__comparison_operator_token1] = ACTIONS(110), - [aux_sym__comparison_operator_token2] = ACTIONS(110), - [aux_sym__comparison_operator_token3] = ACTIONS(110), - [aux_sym__comparison_operator_token4] = ACTIONS(110), - [aux_sym__comparison_operator_token5] = ACTIONS(110), - [aux_sym__comparison_operator_token6] = ACTIONS(110), - [aux_sym__comparison_operator_token7] = ACTIONS(110), - [aux_sym__comparison_operator_token8] = ACTIONS(110), - [aux_sym__comparison_operator_token9] = ACTIONS(110), - [aux_sym_variable_tuning_token1] = ACTIONS(110), - [aux_sym_variable_tuning_token2] = ACTIONS(110), - [aux_sym_variable_tuning_token3] = ACTIONS(110), - [aux_sym_variable_tuning_token4] = ACTIONS(110), - [aux_sym_variable_tuning_token5] = ACTIONS(110), - [aux_sym_variable_tuning_token6] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(110), - [aux_sym_if_statement_token2] = ACTIONS(110), - [aux_sym_else_if_statement_token1] = ACTIONS(110), - [anon_sym_COLON] = ACTIONS(110), - [aux_sym_property_tuning_token1] = ACTIONS(110), - [aux_sym_event_definition_token1] = ACTIONS(110), - [aux_sym_using_statement_token1] = ACTIONS(110), - [aux_sym_input_stream_tuning_token1] = ACTIONS(110), - [aux_sym_input_stream_tuning_token2] = ACTIONS(110), - [aux_sym_input_stream_tuning_token3] = ACTIONS(110), - [aux_sym_input_stream_tuning_token4] = ACTIONS(110), - [aux_sym_input_stream_tuning_token5] = ACTIONS(110), - [aux_sym_input_stream_tuning_token6] = ACTIONS(110), - [aux_sym_input_stream_tuning_token7] = ACTIONS(110), - [aux_sym_input_stream_tuning_token8] = ACTIONS(110), - [aux_sym_input_stream_tuning_token9] = ACTIONS(110), - [aux_sym_input_stream_tuning_token11] = ACTIONS(110), - [aux_sym_output_stream_tuning_token1] = ACTIONS(110), - [aux_sym_output_stream_tuning_token2] = ACTIONS(110), - [aux_sym_output_stream_tuning_token3] = ACTIONS(110), - [aux_sym_output_stream_tuning_token4] = ACTIONS(110), - [aux_sym_output_stream_tuning_token5] = ACTIONS(110), - [aux_sym_output_stream_tuning_token6] = ACTIONS(110), - [aux_sym_output_stream_tuning_token7] = ACTIONS(110), - [aux_sym_output_stream_tuning_token8] = ACTIONS(110), - [aux_sym_output_stream_statement_token1] = ACTIONS(110), - [aux_sym_on_error_phrase_token1] = ACTIONS(110), - [aux_sym_stop_after_phrase_token1] = ACTIONS(110), - [aux_sym_do_tuning_token1] = ACTIONS(110), - [aux_sym_where_clause_token1] = ACTIONS(110), - [aux_sym_query_tuning_token1] = ACTIONS(110), - [aux_sym_query_tuning_token2] = ACTIONS(110), - [aux_sym_query_tuning_token3] = ACTIONS(110), - [aux_sym_query_tuning_token4] = ACTIONS(110), - [aux_sym_query_tuning_token5] = ACTIONS(110), - [aux_sym_query_tuning_token6] = ACTIONS(110), - [aux_sym_of_token1] = ACTIONS(110), - [aux_sym_field_definition_token1] = ACTIONS(110), - [aux_sym_index_definition_token1] = ACTIONS(110), - [aux_sym_on_statement_token1] = ACTIONS(110), - [sym__namedot] = ACTIONS(69), - [sym__namecolon] = ACTIONS(114), + [anon_sym_STAR] = ACTIONS(89), + [sym__terminator] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_RPAREN] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_EQ] = ACTIONS(89), + [aux_sym__comparison_operator_token1] = ACTIONS(89), + [aux_sym__comparison_operator_token2] = ACTIONS(89), + [aux_sym__comparison_operator_token3] = ACTIONS(89), + [aux_sym__comparison_operator_token4] = ACTIONS(89), + [aux_sym__comparison_operator_token5] = ACTIONS(89), + [aux_sym__comparison_operator_token6] = ACTIONS(89), + [aux_sym__comparison_operator_token7] = ACTIONS(89), + [aux_sym__comparison_operator_token8] = ACTIONS(89), + [aux_sym__comparison_operator_token9] = ACTIONS(89), + [aux_sym_variable_tuning_token1] = ACTIONS(89), + [aux_sym_variable_tuning_token2] = ACTIONS(89), + [aux_sym_variable_tuning_token3] = ACTIONS(89), + [aux_sym_variable_tuning_token4] = ACTIONS(89), + [aux_sym_variable_tuning_token5] = ACTIONS(89), + [aux_sym_variable_tuning_token6] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(89), + [aux_sym_if_statement_token2] = ACTIONS(89), + [aux_sym_else_if_statement_token1] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [aux_sym_while_phrase_token1] = ACTIONS(89), + [aux_sym_property_tuning_token1] = ACTIONS(89), + [aux_sym_event_definition_token1] = ACTIONS(89), + [aux_sym_using_statement_token1] = ACTIONS(89), + [aux_sym_input_stream_tuning_token1] = ACTIONS(89), + [aux_sym_input_stream_tuning_token2] = ACTIONS(89), + [aux_sym_input_stream_tuning_token3] = ACTIONS(89), + [aux_sym_input_stream_tuning_token4] = ACTIONS(89), + [aux_sym_input_stream_tuning_token5] = ACTIONS(89), + [aux_sym_input_stream_tuning_token6] = ACTIONS(89), + [aux_sym_input_stream_tuning_token7] = ACTIONS(89), + [aux_sym_input_stream_tuning_token8] = ACTIONS(89), + [aux_sym_input_stream_tuning_token9] = ACTIONS(89), + [aux_sym_input_stream_tuning_token11] = ACTIONS(89), + [aux_sym_output_stream_tuning_token1] = ACTIONS(89), + [aux_sym_output_stream_tuning_token2] = ACTIONS(89), + [aux_sym_output_stream_tuning_token3] = ACTIONS(89), + [aux_sym_output_stream_tuning_token4] = ACTIONS(89), + [aux_sym_output_stream_tuning_token5] = ACTIONS(89), + [aux_sym_output_stream_tuning_token6] = ACTIONS(89), + [aux_sym_output_stream_tuning_token7] = ACTIONS(89), + [aux_sym_output_stream_tuning_token8] = ACTIONS(89), + [aux_sym_output_stream_statement_token1] = ACTIONS(89), + [aux_sym_on_error_phrase_token1] = ACTIONS(89), + [aux_sym_stop_after_phrase_token1] = ACTIONS(89), + [aux_sym_do_tuning_token1] = ACTIONS(89), + [anon_sym_BY] = ACTIONS(89), + [aux_sym_where_clause_token1] = ACTIONS(89), + [aux_sym_query_tuning_token1] = ACTIONS(89), + [aux_sym_query_tuning_token2] = ACTIONS(89), + [aux_sym_query_tuning_token3] = ACTIONS(89), + [aux_sym_query_tuning_token4] = ACTIONS(89), + [aux_sym_query_tuning_token5] = ACTIONS(89), + [aux_sym_query_tuning_token6] = ACTIONS(89), + [aux_sym_of_token1] = ACTIONS(89), + [aux_sym_field_definition_token1] = ACTIONS(89), + [aux_sym_index_definition_token1] = ACTIONS(89), + [aux_sym_on_statement_token1] = ACTIONS(89), + [sym__or_operator] = ACTIONS(89), + [sym__and_operator] = ACTIONS(89), }, [14] = { [sym_comment] = STATE(14), [sym_include] = STATE(14), - [aux_sym_object_access_repeat1] = STATE(15), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(116), + [anon_sym_SLASH] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(118), - [sym__terminator] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(118), - [aux_sym__logical_operator_token1] = ACTIONS(118), - [aux_sym__logical_operator_token2] = ACTIONS(118), - [aux_sym__logical_operator_token3] = ACTIONS(118), - [aux_sym__logical_operator_token4] = ACTIONS(118), - [aux_sym__logical_operator_token5] = ACTIONS(118), - [aux_sym__logical_operator_token6] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(116), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_LT_GT] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(116), - [anon_sym_GT_EQ] = ACTIONS(118), - [aux_sym__comparison_operator_token1] = ACTIONS(118), - [aux_sym__comparison_operator_token2] = ACTIONS(118), - [aux_sym__comparison_operator_token3] = ACTIONS(118), - [aux_sym__comparison_operator_token4] = ACTIONS(118), - [aux_sym__comparison_operator_token5] = ACTIONS(118), - [aux_sym__comparison_operator_token6] = ACTIONS(118), - [aux_sym__comparison_operator_token7] = ACTIONS(118), - [aux_sym__comparison_operator_token8] = ACTIONS(118), - [aux_sym__comparison_operator_token9] = ACTIONS(118), - [aux_sym_variable_tuning_token1] = ACTIONS(118), - [aux_sym_variable_tuning_token2] = ACTIONS(118), - [aux_sym_variable_tuning_token3] = ACTIONS(118), - [aux_sym_variable_tuning_token4] = ACTIONS(118), - [aux_sym_variable_tuning_token5] = ACTIONS(118), - [aux_sym_variable_tuning_token6] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [aux_sym_if_statement_token2] = ACTIONS(118), - [aux_sym_else_if_statement_token1] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [aux_sym_while_phrase_token1] = ACTIONS(118), - [aux_sym_property_tuning_token1] = ACTIONS(118), - [aux_sym_event_definition_token1] = ACTIONS(118), - [aux_sym_using_statement_token1] = ACTIONS(118), - [aux_sym_input_stream_tuning_token1] = ACTIONS(118), - [aux_sym_input_stream_tuning_token2] = ACTIONS(118), - [aux_sym_input_stream_tuning_token3] = ACTIONS(118), - [aux_sym_input_stream_tuning_token4] = ACTIONS(118), - [aux_sym_input_stream_tuning_token5] = ACTIONS(118), - [aux_sym_input_stream_tuning_token6] = ACTIONS(118), - [aux_sym_input_stream_tuning_token7] = ACTIONS(118), - [aux_sym_input_stream_tuning_token8] = ACTIONS(118), - [aux_sym_input_stream_tuning_token9] = ACTIONS(118), - [aux_sym_input_stream_tuning_token11] = ACTIONS(118), - [aux_sym_output_stream_tuning_token1] = ACTIONS(118), - [aux_sym_output_stream_tuning_token2] = ACTIONS(118), - [aux_sym_output_stream_tuning_token3] = ACTIONS(118), - [aux_sym_output_stream_tuning_token4] = ACTIONS(118), - [aux_sym_output_stream_tuning_token5] = ACTIONS(118), - [aux_sym_output_stream_tuning_token6] = ACTIONS(118), - [aux_sym_output_stream_tuning_token7] = ACTIONS(118), - [aux_sym_output_stream_tuning_token8] = ACTIONS(118), - [aux_sym_output_stream_statement_token1] = ACTIONS(118), - [aux_sym_on_error_phrase_token1] = ACTIONS(118), - [aux_sym_stop_after_phrase_token1] = ACTIONS(118), - [aux_sym_do_tuning_token1] = ACTIONS(118), - [anon_sym_BY] = ACTIONS(118), - [aux_sym_where_clause_token1] = ACTIONS(118), - [aux_sym_query_tuning_token1] = ACTIONS(118), - [aux_sym_query_tuning_token2] = ACTIONS(118), - [aux_sym_query_tuning_token3] = ACTIONS(118), - [aux_sym_query_tuning_token4] = ACTIONS(118), - [aux_sym_query_tuning_token5] = ACTIONS(118), - [aux_sym_query_tuning_token6] = ACTIONS(118), - [aux_sym_of_token1] = ACTIONS(118), - [aux_sym_field_definition_token1] = ACTIONS(118), - [aux_sym_index_definition_token1] = ACTIONS(118), - [aux_sym_on_statement_token1] = ACTIONS(118), - [sym__namecolon] = ACTIONS(114), + [anon_sym_STAR] = ACTIONS(121), + [sym__terminator] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(119), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_LT_GT] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_GT] = ACTIONS(119), + [anon_sym_GT_EQ] = ACTIONS(121), + [aux_sym__comparison_operator_token1] = ACTIONS(121), + [aux_sym__comparison_operator_token2] = ACTIONS(121), + [aux_sym__comparison_operator_token3] = ACTIONS(121), + [aux_sym__comparison_operator_token4] = ACTIONS(121), + [aux_sym__comparison_operator_token5] = ACTIONS(121), + [aux_sym__comparison_operator_token6] = ACTIONS(121), + [aux_sym__comparison_operator_token7] = ACTIONS(121), + [aux_sym__comparison_operator_token8] = ACTIONS(121), + [aux_sym__comparison_operator_token9] = ACTIONS(121), + [aux_sym_variable_tuning_token1] = ACTIONS(121), + [aux_sym_variable_tuning_token2] = ACTIONS(121), + [aux_sym_variable_tuning_token3] = ACTIONS(121), + [aux_sym_variable_tuning_token4] = ACTIONS(121), + [aux_sym_variable_tuning_token5] = ACTIONS(121), + [aux_sym_variable_tuning_token6] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [aux_sym_if_statement_token2] = ACTIONS(121), + [aux_sym_else_if_statement_token1] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(121), + [aux_sym_while_phrase_token1] = ACTIONS(121), + [aux_sym_property_tuning_token1] = ACTIONS(121), + [aux_sym_event_definition_token1] = ACTIONS(121), + [aux_sym_using_statement_token1] = ACTIONS(121), + [aux_sym_input_stream_tuning_token1] = ACTIONS(121), + [aux_sym_input_stream_tuning_token2] = ACTIONS(121), + [aux_sym_input_stream_tuning_token3] = ACTIONS(121), + [aux_sym_input_stream_tuning_token4] = ACTIONS(121), + [aux_sym_input_stream_tuning_token5] = ACTIONS(121), + [aux_sym_input_stream_tuning_token6] = ACTIONS(121), + [aux_sym_input_stream_tuning_token7] = ACTIONS(121), + [aux_sym_input_stream_tuning_token8] = ACTIONS(121), + [aux_sym_input_stream_tuning_token9] = ACTIONS(121), + [aux_sym_input_stream_tuning_token11] = ACTIONS(121), + [aux_sym_output_stream_tuning_token1] = ACTIONS(121), + [aux_sym_output_stream_tuning_token2] = ACTIONS(121), + [aux_sym_output_stream_tuning_token3] = ACTIONS(121), + [aux_sym_output_stream_tuning_token4] = ACTIONS(121), + [aux_sym_output_stream_tuning_token5] = ACTIONS(121), + [aux_sym_output_stream_tuning_token6] = ACTIONS(121), + [aux_sym_output_stream_tuning_token7] = ACTIONS(121), + [aux_sym_output_stream_tuning_token8] = ACTIONS(121), + [aux_sym_output_stream_statement_token1] = ACTIONS(121), + [aux_sym_on_error_phrase_token1] = ACTIONS(121), + [aux_sym_stop_after_phrase_token1] = ACTIONS(121), + [aux_sym_do_tuning_token1] = ACTIONS(121), + [anon_sym_BY] = ACTIONS(121), + [aux_sym_where_clause_token1] = ACTIONS(121), + [aux_sym_query_tuning_token1] = ACTIONS(121), + [aux_sym_query_tuning_token2] = ACTIONS(121), + [aux_sym_query_tuning_token3] = ACTIONS(121), + [aux_sym_query_tuning_token4] = ACTIONS(121), + [aux_sym_query_tuning_token5] = ACTIONS(121), + [aux_sym_query_tuning_token6] = ACTIONS(121), + [aux_sym_of_token1] = ACTIONS(121), + [aux_sym_field_definition_token1] = ACTIONS(121), + [aux_sym_index_definition_token1] = ACTIONS(121), + [aux_sym_on_statement_token1] = ACTIONS(121), + [sym__or_operator] = ACTIONS(121), + [sym__and_operator] = ACTIONS(121), }, [15] = { [sym_comment] = STATE(15), [sym_include] = STATE(15), - [aux_sym_object_access_repeat1] = STATE(15), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(123), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(122), - [sym__terminator] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(122), - [anon_sym_RPAREN] = ACTIONS(122), - [aux_sym__logical_operator_token1] = ACTIONS(122), - [aux_sym__logical_operator_token2] = ACTIONS(122), - [aux_sym__logical_operator_token3] = ACTIONS(122), - [aux_sym__logical_operator_token4] = ACTIONS(122), - [aux_sym__logical_operator_token5] = ACTIONS(122), - [aux_sym__logical_operator_token6] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(122), - [anon_sym_LT_GT] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_GT_EQ] = ACTIONS(122), - [aux_sym__comparison_operator_token1] = ACTIONS(122), - [aux_sym__comparison_operator_token2] = ACTIONS(122), - [aux_sym__comparison_operator_token3] = ACTIONS(122), - [aux_sym__comparison_operator_token4] = ACTIONS(122), - [aux_sym__comparison_operator_token5] = ACTIONS(122), - [aux_sym__comparison_operator_token6] = ACTIONS(122), - [aux_sym__comparison_operator_token7] = ACTIONS(122), - [aux_sym__comparison_operator_token8] = ACTIONS(122), - [aux_sym__comparison_operator_token9] = ACTIONS(122), - [aux_sym_variable_tuning_token1] = ACTIONS(122), - [aux_sym_variable_tuning_token2] = ACTIONS(122), - [aux_sym_variable_tuning_token3] = ACTIONS(122), - [aux_sym_variable_tuning_token4] = ACTIONS(122), - [aux_sym_variable_tuning_token5] = ACTIONS(122), - [aux_sym_variable_tuning_token6] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(122), - [aux_sym_if_statement_token2] = ACTIONS(122), - [aux_sym_else_if_statement_token1] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(122), - [aux_sym_while_phrase_token1] = ACTIONS(122), - [aux_sym_property_tuning_token1] = ACTIONS(122), - [aux_sym_event_definition_token1] = ACTIONS(122), - [aux_sym_using_statement_token1] = ACTIONS(122), - [aux_sym_input_stream_tuning_token1] = ACTIONS(122), - [aux_sym_input_stream_tuning_token2] = ACTIONS(122), - [aux_sym_input_stream_tuning_token3] = ACTIONS(122), - [aux_sym_input_stream_tuning_token4] = ACTIONS(122), - [aux_sym_input_stream_tuning_token5] = ACTIONS(122), - [aux_sym_input_stream_tuning_token6] = ACTIONS(122), - [aux_sym_input_stream_tuning_token7] = ACTIONS(122), - [aux_sym_input_stream_tuning_token8] = ACTIONS(122), - [aux_sym_input_stream_tuning_token9] = ACTIONS(122), - [aux_sym_input_stream_tuning_token11] = ACTIONS(122), - [aux_sym_output_stream_tuning_token1] = ACTIONS(122), - [aux_sym_output_stream_tuning_token2] = ACTIONS(122), - [aux_sym_output_stream_tuning_token3] = ACTIONS(122), - [aux_sym_output_stream_tuning_token4] = ACTIONS(122), - [aux_sym_output_stream_tuning_token5] = ACTIONS(122), - [aux_sym_output_stream_tuning_token6] = ACTIONS(122), - [aux_sym_output_stream_tuning_token7] = ACTIONS(122), - [aux_sym_output_stream_tuning_token8] = ACTIONS(122), - [aux_sym_output_stream_statement_token1] = ACTIONS(122), - [aux_sym_on_error_phrase_token1] = ACTIONS(122), - [aux_sym_stop_after_phrase_token1] = ACTIONS(122), - [aux_sym_do_tuning_token1] = ACTIONS(122), - [anon_sym_BY] = ACTIONS(122), - [aux_sym_where_clause_token1] = ACTIONS(122), - [aux_sym_query_tuning_token1] = ACTIONS(122), - [aux_sym_query_tuning_token2] = ACTIONS(122), - [aux_sym_query_tuning_token3] = ACTIONS(122), - [aux_sym_query_tuning_token4] = ACTIONS(122), - [aux_sym_query_tuning_token5] = ACTIONS(122), - [aux_sym_query_tuning_token6] = ACTIONS(122), - [aux_sym_of_token1] = ACTIONS(122), - [aux_sym_field_definition_token1] = ACTIONS(122), - [aux_sym_index_definition_token1] = ACTIONS(122), - [aux_sym_on_statement_token1] = ACTIONS(122), - [sym__namecolon] = ACTIONS(124), + [anon_sym_STAR] = ACTIONS(125), + [sym__terminator] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(125), + [anon_sym_DASH] = ACTIONS(125), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_LT_EQ] = ACTIONS(125), + [anon_sym_LT_GT] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_GT_EQ] = ACTIONS(125), + [aux_sym__comparison_operator_token1] = ACTIONS(125), + [aux_sym__comparison_operator_token2] = ACTIONS(125), + [aux_sym__comparison_operator_token3] = ACTIONS(125), + [aux_sym__comparison_operator_token4] = ACTIONS(125), + [aux_sym__comparison_operator_token5] = ACTIONS(125), + [aux_sym__comparison_operator_token6] = ACTIONS(125), + [aux_sym__comparison_operator_token7] = ACTIONS(125), + [aux_sym__comparison_operator_token8] = ACTIONS(125), + [aux_sym__comparison_operator_token9] = ACTIONS(125), + [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_property_tuning_token1] = ACTIONS(125), + [aux_sym_event_definition_token1] = ACTIONS(125), + [aux_sym_using_statement_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_where_clause_token1] = ACTIONS(125), + [aux_sym_query_tuning_token1] = ACTIONS(125), + [aux_sym_query_tuning_token2] = ACTIONS(125), + [aux_sym_query_tuning_token3] = ACTIONS(125), + [aux_sym_query_tuning_token4] = ACTIONS(125), + [aux_sym_query_tuning_token5] = ACTIONS(125), + [aux_sym_query_tuning_token6] = ACTIONS(125), + [aux_sym_of_token1] = ACTIONS(125), + [aux_sym_field_definition_token1] = ACTIONS(125), + [aux_sym_index_definition_token1] = ACTIONS(125), + [aux_sym_on_statement_token1] = ACTIONS(125), + [sym__or_operator] = ACTIONS(125), + [sym__and_operator] = ACTIONS(125), }, [16] = { [sym_comment] = STATE(16), [sym_include] = STATE(16), - [aux_sym_qualified_name_repeat1] = STATE(2), - [aux_sym_object_access_repeat1] = STATE(14), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(127), [anon_sym_LBRACE] = ACTIONS(65), [anon_sym_STAR] = ACTIONS(129), [sym__terminator] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(112), + [anon_sym_LPAREN] = ACTIONS(129), [anon_sym_RPAREN] = ACTIONS(129), - [aux_sym__logical_operator_token1] = ACTIONS(129), - [aux_sym__logical_operator_token2] = ACTIONS(129), - [aux_sym__logical_operator_token3] = ACTIONS(129), - [aux_sym__logical_operator_token4] = ACTIONS(129), - [aux_sym__logical_operator_token5] = ACTIONS(129), - [aux_sym__logical_operator_token6] = ACTIONS(129), [anon_sym_PLUS] = ACTIONS(129), [anon_sym_DASH] = ACTIONS(129), [anon_sym_LT] = ACTIONS(127), @@ -28115,6 +27347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_property_tuning_token1] = ACTIONS(129), [aux_sym_event_definition_token1] = ACTIONS(129), [aux_sym_using_statement_token1] = ACTIONS(129), @@ -28140,6 +27373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_on_error_phrase_token1] = ACTIONS(129), [aux_sym_stop_after_phrase_token1] = ACTIONS(129), [aux_sym_do_tuning_token1] = ACTIONS(129), + [anon_sym_BY] = ACTIONS(129), [aux_sym_where_clause_token1] = ACTIONS(129), [aux_sym_query_tuning_token1] = ACTIONS(129), [aux_sym_query_tuning_token2] = ACTIONS(129), @@ -28151,8 +27385,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(129), [aux_sym_index_definition_token1] = ACTIONS(129), [aux_sym_on_statement_token1] = ACTIONS(129), - [sym__namedot] = ACTIONS(69), - [sym__namecolon] = ACTIONS(114), + [sym__or_operator] = ACTIONS(129), + [sym__and_operator] = ACTIONS(129), }, [17] = { [sym_comment] = STATE(17), @@ -28165,12 +27399,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_RPAREN] = ACTIONS(133), - [aux_sym__logical_operator_token1] = ACTIONS(133), - [aux_sym__logical_operator_token2] = ACTIONS(133), - [aux_sym__logical_operator_token3] = ACTIONS(133), - [aux_sym__logical_operator_token4] = ACTIONS(133), - [aux_sym__logical_operator_token5] = ACTIONS(133), - [aux_sym__logical_operator_token6] = ACTIONS(133), [anon_sym_PLUS] = ACTIONS(133), [anon_sym_DASH] = ACTIONS(133), [anon_sym_LT] = ACTIONS(131), @@ -28236,25 +27464,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(133), [aux_sym_index_definition_token1] = ACTIONS(133), [aux_sym_on_statement_token1] = ACTIONS(133), - [sym__namecolon] = ACTIONS(133), + [sym__or_operator] = ACTIONS(133), + [sym__and_operator] = ACTIONS(133), }, [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(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_if_statement_token2] = ACTIONS(77), + [aux_sym_else_if_statement_token1] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(77), + [aux_sym_while_phrase_token1] = ACTIONS(77), + [aux_sym_property_tuning_token1] = ACTIONS(77), + [aux_sym_event_definition_token1] = ACTIONS(77), + [aux_sym_using_statement_token1] = ACTIONS(77), + [aux_sym_input_stream_tuning_token1] = ACTIONS(77), + [aux_sym_input_stream_tuning_token2] = ACTIONS(77), + [aux_sym_input_stream_tuning_token3] = ACTIONS(77), + [aux_sym_input_stream_tuning_token4] = ACTIONS(77), + [aux_sym_input_stream_tuning_token5] = ACTIONS(77), + [aux_sym_input_stream_tuning_token6] = ACTIONS(77), + [aux_sym_input_stream_tuning_token7] = ACTIONS(77), + [aux_sym_input_stream_tuning_token8] = ACTIONS(77), + [aux_sym_input_stream_tuning_token9] = ACTIONS(77), + [aux_sym_input_stream_tuning_token11] = ACTIONS(77), + [aux_sym_output_stream_tuning_token1] = ACTIONS(77), + [aux_sym_output_stream_tuning_token2] = ACTIONS(77), + [aux_sym_output_stream_tuning_token3] = ACTIONS(77), + [aux_sym_output_stream_tuning_token4] = ACTIONS(77), + [aux_sym_output_stream_tuning_token5] = ACTIONS(77), + [aux_sym_output_stream_tuning_token6] = ACTIONS(77), + [aux_sym_output_stream_tuning_token7] = ACTIONS(77), + [aux_sym_output_stream_tuning_token8] = ACTIONS(77), + [aux_sym_output_stream_statement_token1] = ACTIONS(77), + [aux_sym_on_error_phrase_token1] = ACTIONS(77), + [aux_sym_stop_after_phrase_token1] = ACTIONS(77), + [aux_sym_do_tuning_token1] = ACTIONS(77), + [anon_sym_BY] = ACTIONS(77), + [aux_sym_where_clause_token1] = ACTIONS(77), + [aux_sym_query_tuning_token1] = ACTIONS(77), + [aux_sym_query_tuning_token2] = ACTIONS(77), + [aux_sym_query_tuning_token3] = ACTIONS(77), + [aux_sym_query_tuning_token4] = ACTIONS(77), + [aux_sym_query_tuning_token5] = ACTIONS(77), + [aux_sym_query_tuning_token6] = ACTIONS(77), + [aux_sym_of_token1] = ACTIONS(77), + [aux_sym_field_definition_token1] = ACTIONS(77), + [aux_sym_index_definition_token1] = ACTIONS(77), + [aux_sym_on_statement_token1] = ACTIONS(77), + [sym__or_operator] = ACTIONS(77), + [sym__and_operator] = ACTIONS(77), + }, + [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(135), [anon_sym_LBRACE] = ACTIONS(65), [anon_sym_STAR] = ACTIONS(137), [sym__terminator] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_RPAREN] = ACTIONS(137), - [aux_sym__logical_operator_token1] = ACTIONS(137), - [aux_sym__logical_operator_token2] = ACTIONS(137), - [aux_sym__logical_operator_token3] = ACTIONS(137), - [aux_sym__logical_operator_token4] = ACTIONS(137), - [aux_sym__logical_operator_token5] = ACTIONS(137), - [aux_sym__logical_operator_token6] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(137), [anon_sym_DASH] = ACTIONS(137), [anon_sym_LT] = ACTIONS(135), @@ -28320,10 +27622,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(137), [aux_sym_index_definition_token1] = ACTIONS(137), [aux_sym_on_statement_token1] = ACTIONS(137), + [sym__or_operator] = ACTIONS(137), + [sym__and_operator] = ACTIONS(137), }, - [19] = { - [sym_comment] = STATE(19), - [sym_include] = STATE(19), + [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(139), @@ -28332,12 +27636,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(141), [anon_sym_LPAREN] = ACTIONS(141), [anon_sym_RPAREN] = ACTIONS(141), - [aux_sym__logical_operator_token1] = ACTIONS(141), - [aux_sym__logical_operator_token2] = ACTIONS(141), - [aux_sym__logical_operator_token3] = ACTIONS(141), - [aux_sym__logical_operator_token4] = ACTIONS(141), - [aux_sym__logical_operator_token5] = ACTIONS(141), - [aux_sym__logical_operator_token6] = ACTIONS(141), [anon_sym_PLUS] = ACTIONS(141), [anon_sym_DASH] = ACTIONS(141), [anon_sym_LT] = ACTIONS(139), @@ -28403,89 +27701,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(141), [aux_sym_index_definition_token1] = ACTIONS(141), [aux_sym_on_statement_token1] = ACTIONS(141), - }, - [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(108), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(110), - [sym__terminator] = ACTIONS(110), - [anon_sym_LPAREN] = ACTIONS(110), - [anon_sym_RPAREN] = ACTIONS(110), - [aux_sym__logical_operator_token1] = ACTIONS(110), - [aux_sym__logical_operator_token2] = ACTIONS(110), - [aux_sym__logical_operator_token3] = ACTIONS(110), - [aux_sym__logical_operator_token4] = ACTIONS(110), - [aux_sym__logical_operator_token5] = ACTIONS(110), - [aux_sym__logical_operator_token6] = ACTIONS(110), - [anon_sym_PLUS] = ACTIONS(110), - [anon_sym_DASH] = ACTIONS(110), - [anon_sym_LT] = ACTIONS(108), - [anon_sym_LT_EQ] = ACTIONS(110), - [anon_sym_LT_GT] = ACTIONS(110), - [anon_sym_EQ] = ACTIONS(110), - [anon_sym_GT] = ACTIONS(108), - [anon_sym_GT_EQ] = ACTIONS(110), - [aux_sym__comparison_operator_token1] = ACTIONS(110), - [aux_sym__comparison_operator_token2] = ACTIONS(110), - [aux_sym__comparison_operator_token3] = ACTIONS(110), - [aux_sym__comparison_operator_token4] = ACTIONS(110), - [aux_sym__comparison_operator_token5] = ACTIONS(110), - [aux_sym__comparison_operator_token6] = ACTIONS(110), - [aux_sym__comparison_operator_token7] = ACTIONS(110), - [aux_sym__comparison_operator_token8] = ACTIONS(110), - [aux_sym__comparison_operator_token9] = ACTIONS(110), - [aux_sym_variable_tuning_token1] = ACTIONS(110), - [aux_sym_variable_tuning_token2] = ACTIONS(110), - [aux_sym_variable_tuning_token3] = ACTIONS(110), - [aux_sym_variable_tuning_token4] = ACTIONS(110), - [aux_sym_variable_tuning_token5] = ACTIONS(110), - [aux_sym_variable_tuning_token6] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(110), - [aux_sym_if_statement_token2] = ACTIONS(110), - [aux_sym_else_if_statement_token1] = ACTIONS(110), - [anon_sym_COLON] = ACTIONS(110), - [aux_sym_while_phrase_token1] = ACTIONS(110), - [aux_sym_property_tuning_token1] = ACTIONS(110), - [aux_sym_event_definition_token1] = ACTIONS(110), - [aux_sym_using_statement_token1] = ACTIONS(110), - [aux_sym_input_stream_tuning_token1] = ACTIONS(110), - [aux_sym_input_stream_tuning_token2] = ACTIONS(110), - [aux_sym_input_stream_tuning_token3] = ACTIONS(110), - [aux_sym_input_stream_tuning_token4] = ACTIONS(110), - [aux_sym_input_stream_tuning_token5] = ACTIONS(110), - [aux_sym_input_stream_tuning_token6] = ACTIONS(110), - [aux_sym_input_stream_tuning_token7] = ACTIONS(110), - [aux_sym_input_stream_tuning_token8] = ACTIONS(110), - [aux_sym_input_stream_tuning_token9] = ACTIONS(110), - [aux_sym_input_stream_tuning_token11] = ACTIONS(110), - [aux_sym_output_stream_tuning_token1] = ACTIONS(110), - [aux_sym_output_stream_tuning_token2] = ACTIONS(110), - [aux_sym_output_stream_tuning_token3] = ACTIONS(110), - [aux_sym_output_stream_tuning_token4] = ACTIONS(110), - [aux_sym_output_stream_tuning_token5] = ACTIONS(110), - [aux_sym_output_stream_tuning_token6] = ACTIONS(110), - [aux_sym_output_stream_tuning_token7] = ACTIONS(110), - [aux_sym_output_stream_tuning_token8] = ACTIONS(110), - [aux_sym_output_stream_statement_token1] = ACTIONS(110), - [aux_sym_on_error_phrase_token1] = ACTIONS(110), - [aux_sym_stop_after_phrase_token1] = ACTIONS(110), - [aux_sym_do_tuning_token1] = ACTIONS(110), - [anon_sym_BY] = ACTIONS(110), - [aux_sym_where_clause_token1] = ACTIONS(110), - [aux_sym_query_tuning_token1] = ACTIONS(110), - [aux_sym_query_tuning_token2] = ACTIONS(110), - [aux_sym_query_tuning_token3] = ACTIONS(110), - [aux_sym_query_tuning_token4] = ACTIONS(110), - [aux_sym_query_tuning_token5] = ACTIONS(110), - [aux_sym_query_tuning_token6] = ACTIONS(110), - [aux_sym_of_token1] = ACTIONS(110), - [aux_sym_field_definition_token1] = ACTIONS(110), - [aux_sym_index_definition_token1] = ACTIONS(110), - [aux_sym_on_statement_token1] = ACTIONS(110), + [sym__or_operator] = ACTIONS(141), + [sym__and_operator] = ACTIONS(141), }, [21] = { [sym_comment] = STATE(21), @@ -28498,12 +27715,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(145), [anon_sym_LPAREN] = ACTIONS(145), [anon_sym_RPAREN] = ACTIONS(145), - [aux_sym__logical_operator_token1] = ACTIONS(145), - [aux_sym__logical_operator_token2] = ACTIONS(145), - [aux_sym__logical_operator_token3] = ACTIONS(145), - [aux_sym__logical_operator_token4] = ACTIONS(145), - [aux_sym__logical_operator_token5] = ACTIONS(145), - [aux_sym__logical_operator_token6] = ACTIONS(145), [anon_sym_PLUS] = ACTIONS(145), [anon_sym_DASH] = ACTIONS(145), [anon_sym_LT] = ACTIONS(143), @@ -28569,6 +27780,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(145), [aux_sym_index_definition_token1] = ACTIONS(145), [aux_sym_on_statement_token1] = ACTIONS(145), + [sym__or_operator] = ACTIONS(145), + [sym__and_operator] = ACTIONS(145), }, [22] = { [sym_comment] = STATE(22), @@ -28581,12 +27794,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(149), [anon_sym_LPAREN] = ACTIONS(149), [anon_sym_RPAREN] = ACTIONS(149), - [aux_sym__logical_operator_token1] = ACTIONS(149), - [aux_sym__logical_operator_token2] = ACTIONS(149), - [aux_sym__logical_operator_token3] = ACTIONS(149), - [aux_sym__logical_operator_token4] = ACTIONS(149), - [aux_sym__logical_operator_token5] = ACTIONS(149), - [aux_sym__logical_operator_token6] = ACTIONS(149), [anon_sym_PLUS] = ACTIONS(149), [anon_sym_DASH] = ACTIONS(149), [anon_sym_LT] = ACTIONS(147), @@ -28652,6 +27859,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(149), [aux_sym_index_definition_token1] = ACTIONS(149), [aux_sym_on_statement_token1] = ACTIONS(149), + [sym__or_operator] = ACTIONS(149), + [sym__and_operator] = ACTIONS(149), }, [23] = { [sym_comment] = STATE(23), @@ -28664,12 +27873,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(153), [anon_sym_RPAREN] = ACTIONS(153), - [aux_sym__logical_operator_token1] = ACTIONS(153), - [aux_sym__logical_operator_token2] = ACTIONS(153), - [aux_sym__logical_operator_token3] = ACTIONS(153), - [aux_sym__logical_operator_token4] = ACTIONS(153), - [aux_sym__logical_operator_token5] = ACTIONS(153), - [aux_sym__logical_operator_token6] = ACTIONS(153), [anon_sym_PLUS] = ACTIONS(153), [anon_sym_DASH] = ACTIONS(153), [anon_sym_LT] = ACTIONS(151), @@ -28735,6 +27938,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(153), [aux_sym_index_definition_token1] = ACTIONS(153), [aux_sym_on_statement_token1] = ACTIONS(153), + [sym__or_operator] = ACTIONS(153), + [sym__and_operator] = ACTIONS(153), }, [24] = { [sym_comment] = STATE(24), @@ -28747,12 +27952,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_RPAREN] = ACTIONS(157), - [aux_sym__logical_operator_token1] = ACTIONS(157), - [aux_sym__logical_operator_token2] = ACTIONS(157), - [aux_sym__logical_operator_token3] = ACTIONS(157), - [aux_sym__logical_operator_token4] = ACTIONS(157), - [aux_sym__logical_operator_token5] = ACTIONS(157), - [aux_sym__logical_operator_token6] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(157), [anon_sym_DASH] = ACTIONS(157), [anon_sym_LT] = ACTIONS(155), @@ -28818,6 +28017,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(157), [aux_sym_index_definition_token1] = ACTIONS(157), [aux_sym_on_statement_token1] = ACTIONS(157), + [sym__or_operator] = ACTIONS(157), + [sym__and_operator] = ACTIONS(157), }, [25] = { [sym_comment] = STATE(25), @@ -28830,12 +28031,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(161), [anon_sym_LPAREN] = ACTIONS(161), [anon_sym_RPAREN] = ACTIONS(161), - [aux_sym__logical_operator_token1] = ACTIONS(161), - [aux_sym__logical_operator_token2] = ACTIONS(161), - [aux_sym__logical_operator_token3] = ACTIONS(161), - [aux_sym__logical_operator_token4] = ACTIONS(161), - [aux_sym__logical_operator_token5] = ACTIONS(161), - [aux_sym__logical_operator_token6] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(161), [anon_sym_DASH] = ACTIONS(161), [anon_sym_LT] = ACTIONS(159), @@ -28901,93 +28096,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, [26] = { [sym_comment] = STATE(26), [sym_include] = STATE(26), - [aux_sym_qualified_name_repeat1] = STATE(2), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(159), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(161), - [sym__terminator] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [aux_sym__logical_operator_token1] = ACTIONS(161), - [aux_sym__logical_operator_token2] = ACTIONS(161), - [aux_sym__logical_operator_token3] = ACTIONS(161), - [aux_sym__logical_operator_token4] = ACTIONS(161), - [aux_sym__logical_operator_token5] = ACTIONS(161), - [aux_sym__logical_operator_token6] = 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_if_statement_token2] = ACTIONS(161), - [aux_sym_else_if_statement_token1] = ACTIONS(161), - [anon_sym_COLON] = 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), - [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_query_tuning_token6] = ACTIONS(161), - [aux_sym_of_token1] = ACTIONS(161), - [aux_sym_field_definition_token1] = ACTIONS(161), - [aux_sym_index_definition_token1] = ACTIONS(161), - [aux_sym_on_statement_token1] = ACTIONS(161), - [sym__namedot] = ACTIONS(69), - }, - [27] = { - [sym_comment] = STATE(27), - [sym_include] = STATE(27), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(163), @@ -28996,12 +28110,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(165), [anon_sym_RPAREN] = ACTIONS(165), - [aux_sym__logical_operator_token1] = ACTIONS(165), - [aux_sym__logical_operator_token2] = ACTIONS(165), - [aux_sym__logical_operator_token3] = ACTIONS(165), - [aux_sym__logical_operator_token4] = ACTIONS(165), - [aux_sym__logical_operator_token5] = ACTIONS(165), - [aux_sym__logical_operator_token6] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), [anon_sym_DASH] = ACTIONS(165), [anon_sym_LT] = ACTIONS(163), @@ -29067,24 +28175,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + }, + [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(109), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(111), + [sym__terminator] = ACTIONS(111), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_RPAREN] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(111), + [anon_sym_DASH] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(109), + [anon_sym_LT_EQ] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(111), + [anon_sym_GT] = ACTIONS(109), + [anon_sym_GT_EQ] = ACTIONS(111), + [aux_sym__comparison_operator_token1] = ACTIONS(111), + [aux_sym__comparison_operator_token2] = ACTIONS(111), + [aux_sym__comparison_operator_token3] = ACTIONS(111), + [aux_sym__comparison_operator_token4] = ACTIONS(111), + [aux_sym__comparison_operator_token5] = ACTIONS(111), + [aux_sym__comparison_operator_token6] = ACTIONS(111), + [aux_sym__comparison_operator_token7] = ACTIONS(111), + [aux_sym__comparison_operator_token8] = ACTIONS(111), + [aux_sym__comparison_operator_token9] = ACTIONS(111), + [aux_sym_variable_tuning_token1] = ACTIONS(111), + [aux_sym_variable_tuning_token2] = ACTIONS(111), + [aux_sym_variable_tuning_token3] = ACTIONS(111), + [aux_sym_variable_tuning_token4] = ACTIONS(111), + [aux_sym_variable_tuning_token5] = ACTIONS(111), + [aux_sym_variable_tuning_token6] = ACTIONS(111), + [anon_sym_COMMA] = ACTIONS(111), + [aux_sym_if_statement_token2] = ACTIONS(111), + [aux_sym_else_if_statement_token1] = ACTIONS(111), + [anon_sym_COLON] = ACTIONS(111), + [aux_sym_while_phrase_token1] = ACTIONS(111), + [aux_sym_property_tuning_token1] = ACTIONS(111), + [aux_sym_event_definition_token1] = ACTIONS(111), + [aux_sym_using_statement_token1] = ACTIONS(111), + [aux_sym_input_stream_tuning_token1] = ACTIONS(111), + [aux_sym_input_stream_tuning_token2] = ACTIONS(111), + [aux_sym_input_stream_tuning_token3] = ACTIONS(111), + [aux_sym_input_stream_tuning_token4] = ACTIONS(111), + [aux_sym_input_stream_tuning_token5] = ACTIONS(111), + [aux_sym_input_stream_tuning_token6] = ACTIONS(111), + [aux_sym_input_stream_tuning_token7] = ACTIONS(111), + [aux_sym_input_stream_tuning_token8] = ACTIONS(111), + [aux_sym_input_stream_tuning_token9] = ACTIONS(111), + [aux_sym_input_stream_tuning_token11] = ACTIONS(111), + [aux_sym_output_stream_tuning_token1] = ACTIONS(111), + [aux_sym_output_stream_tuning_token2] = ACTIONS(111), + [aux_sym_output_stream_tuning_token3] = ACTIONS(111), + [aux_sym_output_stream_tuning_token4] = ACTIONS(111), + [aux_sym_output_stream_tuning_token5] = ACTIONS(111), + [aux_sym_output_stream_tuning_token6] = ACTIONS(111), + [aux_sym_output_stream_tuning_token7] = ACTIONS(111), + [aux_sym_output_stream_tuning_token8] = ACTIONS(111), + [aux_sym_output_stream_statement_token1] = ACTIONS(111), + [aux_sym_on_error_phrase_token1] = ACTIONS(111), + [aux_sym_stop_after_phrase_token1] = ACTIONS(111), + [aux_sym_do_tuning_token1] = ACTIONS(111), + [anon_sym_BY] = ACTIONS(111), + [aux_sym_where_clause_token1] = ACTIONS(111), + [aux_sym_query_tuning_token1] = ACTIONS(111), + [aux_sym_query_tuning_token2] = ACTIONS(111), + [aux_sym_query_tuning_token3] = ACTIONS(111), + [aux_sym_query_tuning_token4] = ACTIONS(111), + [aux_sym_query_tuning_token5] = ACTIONS(111), + [aux_sym_query_tuning_token6] = ACTIONS(111), + [aux_sym_of_token1] = ACTIONS(111), + [aux_sym_field_definition_token1] = ACTIONS(111), + [aux_sym_index_definition_token1] = ACTIONS(111), + [aux_sym_on_statement_token1] = ACTIONS(111), + [sym__or_operator] = ACTIONS(111), + [sym__and_operator] = ACTIONS(111), }, [28] = { [sym_comment] = STATE(28), [sym_include] = STATE(28), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(67), + [sym__terminator] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LT] = ACTIONS(63), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_GT] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(63), + [anon_sym_GT_EQ] = ACTIONS(67), + [aux_sym__comparison_operator_token1] = ACTIONS(67), + [aux_sym__comparison_operator_token2] = ACTIONS(67), + [aux_sym__comparison_operator_token3] = ACTIONS(67), + [aux_sym__comparison_operator_token4] = ACTIONS(67), + [aux_sym__comparison_operator_token5] = ACTIONS(67), + [aux_sym__comparison_operator_token6] = ACTIONS(67), + [aux_sym__comparison_operator_token7] = ACTIONS(67), + [aux_sym__comparison_operator_token8] = ACTIONS(67), + [aux_sym__comparison_operator_token9] = ACTIONS(67), + [aux_sym_variable_tuning_token1] = ACTIONS(67), + [aux_sym_variable_tuning_token2] = ACTIONS(67), + [aux_sym_variable_tuning_token3] = ACTIONS(67), + [aux_sym_variable_tuning_token4] = ACTIONS(67), + [aux_sym_variable_tuning_token5] = ACTIONS(67), + [aux_sym_variable_tuning_token6] = ACTIONS(67), + [anon_sym_COMMA] = ACTIONS(67), + [aux_sym_if_statement_token2] = ACTIONS(67), + [aux_sym_else_if_statement_token1] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(67), + [aux_sym_while_phrase_token1] = ACTIONS(67), + [aux_sym_property_tuning_token1] = ACTIONS(67), + [aux_sym_event_definition_token1] = ACTIONS(67), + [aux_sym_using_statement_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token2] = ACTIONS(67), + [aux_sym_input_stream_tuning_token3] = ACTIONS(67), + [aux_sym_input_stream_tuning_token4] = ACTIONS(67), + [aux_sym_input_stream_tuning_token5] = ACTIONS(67), + [aux_sym_input_stream_tuning_token6] = ACTIONS(67), + [aux_sym_input_stream_tuning_token7] = ACTIONS(67), + [aux_sym_input_stream_tuning_token8] = ACTIONS(67), + [aux_sym_input_stream_tuning_token9] = ACTIONS(67), + [aux_sym_input_stream_tuning_token11] = ACTIONS(67), + [aux_sym_output_stream_tuning_token1] = ACTIONS(67), + [aux_sym_output_stream_tuning_token2] = ACTIONS(67), + [aux_sym_output_stream_tuning_token3] = ACTIONS(67), + [aux_sym_output_stream_tuning_token4] = ACTIONS(67), + [aux_sym_output_stream_tuning_token5] = ACTIONS(67), + [aux_sym_output_stream_tuning_token6] = ACTIONS(67), + [aux_sym_output_stream_tuning_token7] = ACTIONS(67), + [aux_sym_output_stream_tuning_token8] = ACTIONS(67), + [aux_sym_output_stream_statement_token1] = ACTIONS(67), + [aux_sym_on_error_phrase_token1] = ACTIONS(67), + [aux_sym_stop_after_phrase_token1] = ACTIONS(67), + [aux_sym_do_tuning_token1] = ACTIONS(67), + [anon_sym_BY] = ACTIONS(67), + [aux_sym_where_clause_token1] = ACTIONS(67), + [aux_sym_query_tuning_token1] = ACTIONS(67), + [aux_sym_query_tuning_token2] = ACTIONS(67), + [aux_sym_query_tuning_token3] = ACTIONS(67), + [aux_sym_query_tuning_token4] = ACTIONS(67), + [aux_sym_query_tuning_token5] = ACTIONS(67), + [aux_sym_query_tuning_token6] = ACTIONS(67), + [aux_sym_of_token1] = ACTIONS(67), + [aux_sym_field_definition_token1] = ACTIONS(67), + [aux_sym_index_definition_token1] = ACTIONS(67), + [aux_sym_on_statement_token1] = ACTIONS(67), + [sym__or_operator] = ACTIONS(67), + [sym__and_operator] = ACTIONS(67), + }, + [29] = { + [sym_comment] = STATE(29), + [sym_include] = STATE(29), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(167), [anon_sym_LBRACE] = ACTIONS(65), [anon_sym_STAR] = ACTIONS(169), [sym__terminator] = ACTIONS(169), [anon_sym_LPAREN] = ACTIONS(169), [anon_sym_RPAREN] = ACTIONS(169), - [aux_sym__logical_operator_token1] = ACTIONS(169), - [aux_sym__logical_operator_token2] = ACTIONS(169), - [aux_sym__logical_operator_token3] = ACTIONS(169), - [aux_sym__logical_operator_token4] = ACTIONS(169), - [aux_sym__logical_operator_token5] = ACTIONS(169), - [aux_sym__logical_operator_token6] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(169), [anon_sym_DASH] = ACTIONS(169), [anon_sym_LT] = ACTIONS(167), @@ -29150,89 +28412,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(169), [aux_sym_index_definition_token1] = ACTIONS(169), [aux_sym_on_statement_token1] = ACTIONS(169), - }, - [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(108), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(110), - [sym__terminator] = ACTIONS(110), - [anon_sym_LPAREN] = ACTIONS(112), - [anon_sym_RPAREN] = ACTIONS(110), - [aux_sym__logical_operator_token1] = ACTIONS(110), - [aux_sym__logical_operator_token2] = ACTIONS(110), - [aux_sym__logical_operator_token3] = ACTIONS(110), - [aux_sym__logical_operator_token4] = ACTIONS(110), - [aux_sym__logical_operator_token5] = ACTIONS(110), - [aux_sym__logical_operator_token6] = ACTIONS(110), - [anon_sym_PLUS] = ACTIONS(110), - [anon_sym_DASH] = ACTIONS(110), - [anon_sym_LT] = ACTIONS(108), - [anon_sym_LT_EQ] = ACTIONS(110), - [anon_sym_LT_GT] = ACTIONS(110), - [anon_sym_EQ] = ACTIONS(110), - [anon_sym_GT] = ACTIONS(108), - [anon_sym_GT_EQ] = ACTIONS(110), - [aux_sym__comparison_operator_token1] = ACTIONS(110), - [aux_sym__comparison_operator_token2] = ACTIONS(110), - [aux_sym__comparison_operator_token3] = ACTIONS(110), - [aux_sym__comparison_operator_token4] = ACTIONS(110), - [aux_sym__comparison_operator_token5] = ACTIONS(110), - [aux_sym__comparison_operator_token6] = ACTIONS(110), - [aux_sym__comparison_operator_token7] = ACTIONS(110), - [aux_sym__comparison_operator_token8] = ACTIONS(110), - [aux_sym__comparison_operator_token9] = ACTIONS(110), - [aux_sym_variable_tuning_token1] = ACTIONS(110), - [aux_sym_variable_tuning_token2] = ACTIONS(110), - [aux_sym_variable_tuning_token3] = ACTIONS(110), - [aux_sym_variable_tuning_token4] = ACTIONS(110), - [aux_sym_variable_tuning_token5] = ACTIONS(110), - [aux_sym_variable_tuning_token6] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(110), - [aux_sym_if_statement_token2] = ACTIONS(110), - [aux_sym_else_if_statement_token1] = ACTIONS(110), - [anon_sym_COLON] = ACTIONS(110), - [aux_sym_while_phrase_token1] = ACTIONS(110), - [aux_sym_property_tuning_token1] = ACTIONS(110), - [aux_sym_event_definition_token1] = ACTIONS(110), - [aux_sym_using_statement_token1] = ACTIONS(110), - [aux_sym_input_stream_tuning_token1] = ACTIONS(110), - [aux_sym_input_stream_tuning_token2] = ACTIONS(110), - [aux_sym_input_stream_tuning_token3] = ACTIONS(110), - [aux_sym_input_stream_tuning_token4] = ACTIONS(110), - [aux_sym_input_stream_tuning_token5] = ACTIONS(110), - [aux_sym_input_stream_tuning_token6] = ACTIONS(110), - [aux_sym_input_stream_tuning_token7] = ACTIONS(110), - [aux_sym_input_stream_tuning_token8] = ACTIONS(110), - [aux_sym_input_stream_tuning_token9] = ACTIONS(110), - [aux_sym_input_stream_tuning_token11] = ACTIONS(110), - [aux_sym_output_stream_tuning_token1] = ACTIONS(110), - [aux_sym_output_stream_tuning_token2] = ACTIONS(110), - [aux_sym_output_stream_tuning_token3] = ACTIONS(110), - [aux_sym_output_stream_tuning_token4] = ACTIONS(110), - [aux_sym_output_stream_tuning_token5] = ACTIONS(110), - [aux_sym_output_stream_tuning_token6] = ACTIONS(110), - [aux_sym_output_stream_tuning_token7] = ACTIONS(110), - [aux_sym_output_stream_tuning_token8] = ACTIONS(110), - [aux_sym_output_stream_statement_token1] = ACTIONS(110), - [aux_sym_on_error_phrase_token1] = ACTIONS(110), - [aux_sym_stop_after_phrase_token1] = ACTIONS(110), - [aux_sym_do_tuning_token1] = ACTIONS(110), - [anon_sym_BY] = ACTIONS(110), - [aux_sym_where_clause_token1] = ACTIONS(110), - [aux_sym_query_tuning_token1] = ACTIONS(110), - [aux_sym_query_tuning_token2] = ACTIONS(110), - [aux_sym_query_tuning_token3] = ACTIONS(110), - [aux_sym_query_tuning_token4] = ACTIONS(110), - [aux_sym_query_tuning_token5] = ACTIONS(110), - [aux_sym_query_tuning_token6] = ACTIONS(110), - [aux_sym_of_token1] = ACTIONS(110), - [aux_sym_field_definition_token1] = ACTIONS(110), - [aux_sym_index_definition_token1] = ACTIONS(110), - [aux_sym_on_statement_token1] = ACTIONS(110), + [sym__or_operator] = ACTIONS(169), + [sym__and_operator] = ACTIONS(169), }, [30] = { [sym_comment] = STATE(30), @@ -29245,12 +28426,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(173), [anon_sym_RPAREN] = ACTIONS(173), - [aux_sym__logical_operator_token1] = ACTIONS(173), - [aux_sym__logical_operator_token2] = ACTIONS(173), - [aux_sym__logical_operator_token3] = ACTIONS(173), - [aux_sym__logical_operator_token4] = ACTIONS(173), - [aux_sym__logical_operator_token5] = ACTIONS(173), - [aux_sym__logical_operator_token6] = ACTIONS(173), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), [anon_sym_LT] = ACTIONS(171), @@ -29316,6 +28491,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, [31] = { [sym_comment] = STATE(31), @@ -29328,12 +28505,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(177), [anon_sym_LPAREN] = ACTIONS(177), [anon_sym_RPAREN] = ACTIONS(177), - [aux_sym__logical_operator_token1] = ACTIONS(177), - [aux_sym__logical_operator_token2] = ACTIONS(177), - [aux_sym__logical_operator_token3] = ACTIONS(177), - [aux_sym__logical_operator_token4] = ACTIONS(177), - [aux_sym__logical_operator_token5] = ACTIONS(177), - [aux_sym__logical_operator_token6] = ACTIONS(177), [anon_sym_PLUS] = ACTIONS(177), [anon_sym_DASH] = ACTIONS(177), [anon_sym_LT] = ACTIONS(175), @@ -29399,6 +28570,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, [32] = { [sym_comment] = STATE(32), @@ -29411,12 +28584,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(181), [anon_sym_LPAREN] = ACTIONS(181), [anon_sym_RPAREN] = ACTIONS(181), - [aux_sym__logical_operator_token1] = ACTIONS(181), - [aux_sym__logical_operator_token2] = ACTIONS(181), - [aux_sym__logical_operator_token3] = ACTIONS(181), - [aux_sym__logical_operator_token4] = ACTIONS(181), - [aux_sym__logical_operator_token5] = ACTIONS(181), - [aux_sym__logical_operator_token6] = ACTIONS(181), [anon_sym_PLUS] = ACTIONS(181), [anon_sym_DASH] = ACTIONS(181), [anon_sym_LT] = ACTIONS(179), @@ -29482,6 +28649,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, [33] = { [sym_comment] = STATE(33), @@ -29494,12 +28663,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(185), [anon_sym_RPAREN] = ACTIONS(185), - [aux_sym__logical_operator_token1] = ACTIONS(185), - [aux_sym__logical_operator_token2] = ACTIONS(185), - [aux_sym__logical_operator_token3] = ACTIONS(185), - [aux_sym__logical_operator_token4] = ACTIONS(185), - [aux_sym__logical_operator_token5] = ACTIONS(185), - [aux_sym__logical_operator_token6] = ACTIONS(185), [anon_sym_PLUS] = ACTIONS(185), [anon_sym_DASH] = ACTIONS(185), [anon_sym_LT] = ACTIONS(183), @@ -29565,24 +28728,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, [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(75), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(77), + [sym__terminator] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_LT_GT] = ACTIONS(77), + [anon_sym_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(77), + [aux_sym__comparison_operator_token1] = ACTIONS(77), + [aux_sym__comparison_operator_token2] = ACTIONS(77), + [aux_sym__comparison_operator_token3] = ACTIONS(77), + [aux_sym__comparison_operator_token4] = ACTIONS(77), + [aux_sym__comparison_operator_token5] = ACTIONS(77), + [aux_sym__comparison_operator_token6] = ACTIONS(77), + [aux_sym__comparison_operator_token7] = ACTIONS(77), + [aux_sym__comparison_operator_token8] = ACTIONS(77), + [aux_sym__comparison_operator_token9] = ACTIONS(77), + [aux_sym_variable_tuning_token1] = ACTIONS(77), + [aux_sym_variable_tuning_token2] = ACTIONS(77), + [aux_sym_variable_tuning_token3] = ACTIONS(77), + [aux_sym_variable_tuning_token4] = ACTIONS(77), + [aux_sym_variable_tuning_token5] = ACTIONS(77), + [aux_sym_variable_tuning_token6] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(77), + [aux_sym_if_statement_token2] = ACTIONS(77), + [aux_sym_else_if_statement_token1] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(77), + [aux_sym_while_phrase_token1] = ACTIONS(77), + [aux_sym_property_tuning_token1] = ACTIONS(77), + [aux_sym_event_definition_token1] = ACTIONS(77), + [aux_sym_using_statement_token1] = ACTIONS(77), + [aux_sym_input_stream_tuning_token1] = ACTIONS(77), + [aux_sym_input_stream_tuning_token2] = ACTIONS(77), + [aux_sym_input_stream_tuning_token3] = ACTIONS(77), + [aux_sym_input_stream_tuning_token4] = ACTIONS(77), + [aux_sym_input_stream_tuning_token5] = ACTIONS(77), + [aux_sym_input_stream_tuning_token6] = ACTIONS(77), + [aux_sym_input_stream_tuning_token7] = ACTIONS(77), + [aux_sym_input_stream_tuning_token8] = ACTIONS(77), + [aux_sym_input_stream_tuning_token9] = ACTIONS(77), + [aux_sym_input_stream_tuning_token11] = ACTIONS(77), + [aux_sym_output_stream_tuning_token1] = ACTIONS(77), + [aux_sym_output_stream_tuning_token2] = ACTIONS(77), + [aux_sym_output_stream_tuning_token3] = ACTIONS(77), + [aux_sym_output_stream_tuning_token4] = ACTIONS(77), + [aux_sym_output_stream_tuning_token5] = ACTIONS(77), + [aux_sym_output_stream_tuning_token6] = ACTIONS(77), + [aux_sym_output_stream_tuning_token7] = ACTIONS(77), + [aux_sym_output_stream_tuning_token8] = ACTIONS(77), + [aux_sym_output_stream_statement_token1] = ACTIONS(77), + [aux_sym_on_error_phrase_token1] = ACTIONS(77), + [aux_sym_stop_after_phrase_token1] = ACTIONS(77), + [aux_sym_do_tuning_token1] = ACTIONS(77), + [anon_sym_BY] = ACTIONS(77), + [aux_sym_where_clause_token1] = ACTIONS(77), + [aux_sym_query_tuning_token1] = ACTIONS(77), + [aux_sym_query_tuning_token2] = ACTIONS(77), + [aux_sym_query_tuning_token3] = ACTIONS(77), + [aux_sym_query_tuning_token4] = ACTIONS(77), + [aux_sym_query_tuning_token5] = ACTIONS(77), + [aux_sym_query_tuning_token6] = ACTIONS(77), + [aux_sym_of_token1] = ACTIONS(77), + [aux_sym_field_definition_token1] = ACTIONS(77), + [aux_sym_index_definition_token1] = ACTIONS(77), + [aux_sym_on_statement_token1] = ACTIONS(77), + [sym__or_operator] = ACTIONS(77), + [sym__and_operator] = ACTIONS(77), + }, + [35] = { + [sym_comment] = STATE(35), + [sym_include] = STATE(35), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(65), [anon_sym_STAR] = ACTIONS(189), [sym__terminator] = ACTIONS(189), [anon_sym_LPAREN] = ACTIONS(189), [anon_sym_RPAREN] = ACTIONS(189), - [aux_sym__logical_operator_token1] = ACTIONS(189), - [aux_sym__logical_operator_token2] = ACTIONS(189), - [aux_sym__logical_operator_token3] = ACTIONS(189), - [aux_sym__logical_operator_token4] = ACTIONS(189), - [aux_sym__logical_operator_token5] = ACTIONS(189), - [aux_sym__logical_operator_token6] = ACTIONS(189), [anon_sym_PLUS] = ACTIONS(189), [anon_sym_DASH] = ACTIONS(189), [anon_sym_LT] = ACTIONS(187), @@ -29648,10 +28886,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [35] = { - [sym_comment] = STATE(35), - [sym_include] = STATE(35), + [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(63), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(67), + [sym__terminator] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LT] = ACTIONS(63), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_GT] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(63), + [anon_sym_GT_EQ] = ACTIONS(67), + [aux_sym__comparison_operator_token1] = ACTIONS(67), + [aux_sym__comparison_operator_token2] = ACTIONS(67), + [aux_sym__comparison_operator_token3] = ACTIONS(67), + [aux_sym__comparison_operator_token4] = ACTIONS(67), + [aux_sym__comparison_operator_token5] = ACTIONS(67), + [aux_sym__comparison_operator_token6] = ACTIONS(67), + [aux_sym__comparison_operator_token7] = ACTIONS(67), + [aux_sym__comparison_operator_token8] = ACTIONS(67), + [aux_sym__comparison_operator_token9] = ACTIONS(67), + [aux_sym_variable_tuning_token1] = ACTIONS(67), + [aux_sym_variable_tuning_token2] = ACTIONS(67), + [aux_sym_variable_tuning_token3] = ACTIONS(67), + [aux_sym_variable_tuning_token4] = ACTIONS(67), + [aux_sym_variable_tuning_token5] = ACTIONS(67), + [aux_sym_variable_tuning_token6] = ACTIONS(67), + [anon_sym_COMMA] = ACTIONS(67), + [aux_sym_if_statement_token2] = ACTIONS(67), + [aux_sym_else_if_statement_token1] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(67), + [aux_sym_while_phrase_token1] = ACTIONS(67), + [aux_sym_property_tuning_token1] = ACTIONS(67), + [aux_sym_event_definition_token1] = ACTIONS(67), + [aux_sym_using_statement_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token2] = ACTIONS(67), + [aux_sym_input_stream_tuning_token3] = ACTIONS(67), + [aux_sym_input_stream_tuning_token4] = ACTIONS(67), + [aux_sym_input_stream_tuning_token5] = ACTIONS(67), + [aux_sym_input_stream_tuning_token6] = ACTIONS(67), + [aux_sym_input_stream_tuning_token7] = ACTIONS(67), + [aux_sym_input_stream_tuning_token8] = ACTIONS(67), + [aux_sym_input_stream_tuning_token9] = ACTIONS(67), + [aux_sym_input_stream_tuning_token11] = ACTIONS(67), + [aux_sym_output_stream_tuning_token1] = ACTIONS(67), + [aux_sym_output_stream_tuning_token2] = ACTIONS(67), + [aux_sym_output_stream_tuning_token3] = ACTIONS(67), + [aux_sym_output_stream_tuning_token4] = ACTIONS(67), + [aux_sym_output_stream_tuning_token5] = ACTIONS(67), + [aux_sym_output_stream_tuning_token6] = ACTIONS(67), + [aux_sym_output_stream_tuning_token7] = ACTIONS(67), + [aux_sym_output_stream_tuning_token8] = ACTIONS(67), + [aux_sym_output_stream_statement_token1] = ACTIONS(67), + [aux_sym_on_error_phrase_token1] = ACTIONS(67), + [aux_sym_stop_after_phrase_token1] = ACTIONS(67), + [aux_sym_do_tuning_token1] = ACTIONS(67), + [anon_sym_BY] = ACTIONS(67), + [aux_sym_where_clause_token1] = ACTIONS(67), + [aux_sym_query_tuning_token1] = ACTIONS(67), + [aux_sym_query_tuning_token2] = ACTIONS(67), + [aux_sym_query_tuning_token3] = ACTIONS(67), + [aux_sym_query_tuning_token4] = ACTIONS(67), + [aux_sym_query_tuning_token5] = ACTIONS(67), + [aux_sym_query_tuning_token6] = ACTIONS(67), + [aux_sym_of_token1] = ACTIONS(67), + [aux_sym_field_definition_token1] = ACTIONS(67), + [aux_sym_index_definition_token1] = ACTIONS(67), + [aux_sym_on_statement_token1] = ACTIONS(67), + [sym__or_operator] = ACTIONS(67), + [sym__and_operator] = ACTIONS(67), + }, + [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(191), @@ -29660,12 +28979,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(193), [anon_sym_LPAREN] = ACTIONS(193), [anon_sym_RPAREN] = ACTIONS(193), - [aux_sym__logical_operator_token1] = ACTIONS(193), - [aux_sym__logical_operator_token2] = ACTIONS(193), - [aux_sym__logical_operator_token3] = ACTIONS(193), - [aux_sym__logical_operator_token4] = ACTIONS(193), - [aux_sym__logical_operator_token5] = ACTIONS(193), - [aux_sym__logical_operator_token6] = ACTIONS(193), [anon_sym_PLUS] = ACTIONS(193), [anon_sym_DASH] = ACTIONS(193), [anon_sym_LT] = ACTIONS(191), @@ -29731,10 +29044,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [36] = { - [sym_comment] = STATE(36), - [sym_include] = STATE(36), + [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(195), @@ -29743,12 +29058,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(197), [anon_sym_LPAREN] = ACTIONS(197), [anon_sym_RPAREN] = ACTIONS(197), - [aux_sym__logical_operator_token1] = ACTIONS(197), - [aux_sym__logical_operator_token2] = ACTIONS(197), - [aux_sym__logical_operator_token3] = ACTIONS(197), - [aux_sym__logical_operator_token4] = ACTIONS(197), - [aux_sym__logical_operator_token5] = ACTIONS(197), - [aux_sym__logical_operator_token6] = ACTIONS(197), [anon_sym_PLUS] = ACTIONS(197), [anon_sym_DASH] = ACTIONS(197), [anon_sym_LT] = ACTIONS(195), @@ -29814,10 +29123,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [37] = { - [sym_comment] = STATE(37), - [sym_include] = STATE(37), + [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(199), @@ -29826,12 +29137,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(201), [anon_sym_LPAREN] = ACTIONS(201), [anon_sym_RPAREN] = ACTIONS(201), - [aux_sym__logical_operator_token1] = ACTIONS(201), - [aux_sym__logical_operator_token2] = ACTIONS(201), - [aux_sym__logical_operator_token3] = ACTIONS(201), - [aux_sym__logical_operator_token4] = ACTIONS(201), - [aux_sym__logical_operator_token5] = ACTIONS(201), - [aux_sym__logical_operator_token6] = ACTIONS(201), [anon_sym_PLUS] = ACTIONS(201), [anon_sym_DASH] = ACTIONS(201), [anon_sym_LT] = ACTIONS(199), @@ -29897,10 +29202,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [38] = { - [sym_comment] = STATE(38), - [sym_include] = STATE(38), + [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(203), @@ -29909,12 +29216,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(205), [anon_sym_LPAREN] = ACTIONS(205), [anon_sym_RPAREN] = ACTIONS(205), - [aux_sym__logical_operator_token1] = ACTIONS(205), - [aux_sym__logical_operator_token2] = ACTIONS(205), - [aux_sym__logical_operator_token3] = ACTIONS(205), - [aux_sym__logical_operator_token4] = ACTIONS(205), - [aux_sym__logical_operator_token5] = ACTIONS(205), - [aux_sym__logical_operator_token6] = ACTIONS(205), [anon_sym_PLUS] = ACTIONS(205), [anon_sym_DASH] = ACTIONS(205), [anon_sym_LT] = ACTIONS(203), @@ -29980,10 +29281,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [39] = { - [sym_comment] = STATE(39), - [sym_include] = STATE(39), + [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(207), @@ -29992,12 +29295,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(209), [anon_sym_LPAREN] = ACTIONS(209), [anon_sym_RPAREN] = ACTIONS(209), - [aux_sym__logical_operator_token1] = ACTIONS(209), - [aux_sym__logical_operator_token2] = ACTIONS(209), - [aux_sym__logical_operator_token3] = ACTIONS(209), - [aux_sym__logical_operator_token4] = ACTIONS(209), - [aux_sym__logical_operator_token5] = ACTIONS(209), - [aux_sym__logical_operator_token6] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(209), [anon_sym_DASH] = ACTIONS(209), [anon_sym_LT] = ACTIONS(207), @@ -30063,93 +29360,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [40] = { - [sym_comment] = STATE(40), - [sym_include] = STATE(40), - [aux_sym_qualified_name_repeat1] = STATE(2), - [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), - [aux_sym__logical_operator_token1] = ACTIONS(209), - [aux_sym__logical_operator_token2] = ACTIONS(209), - [aux_sym__logical_operator_token3] = ACTIONS(209), - [aux_sym__logical_operator_token4] = ACTIONS(209), - [aux_sym__logical_operator_token5] = ACTIONS(209), - [aux_sym__logical_operator_token6] = 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_if_statement_token2] = ACTIONS(209), - [aux_sym_else_if_statement_token1] = ACTIONS(209), - [anon_sym_COLON] = 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), - [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_query_tuning_token6] = ACTIONS(209), - [aux_sym_of_token1] = ACTIONS(209), - [aux_sym_field_definition_token1] = ACTIONS(209), - [aux_sym_index_definition_token1] = ACTIONS(209), - [aux_sym_on_statement_token1] = ACTIONS(209), - [sym__namedot] = ACTIONS(69), - }, - [41] = { - [sym_comment] = STATE(41), - [sym_include] = STATE(41), + [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), @@ -30158,12 +29374,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(213), [anon_sym_RPAREN] = ACTIONS(213), - [aux_sym__logical_operator_token1] = ACTIONS(213), - [aux_sym__logical_operator_token2] = ACTIONS(213), - [aux_sym__logical_operator_token3] = ACTIONS(213), - [aux_sym__logical_operator_token4] = ACTIONS(213), - [aux_sym__logical_operator_token5] = ACTIONS(213), - [aux_sym__logical_operator_token6] = ACTIONS(213), [anon_sym_PLUS] = ACTIONS(213), [anon_sym_DASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(211), @@ -30229,93 +29439,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [42] = { - [sym_comment] = STATE(42), - [sym_include] = STATE(42), + [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(127), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(129), - [sym__terminator] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(112), - [anon_sym_RPAREN] = ACTIONS(129), - [aux_sym__logical_operator_token1] = ACTIONS(129), - [aux_sym__logical_operator_token2] = ACTIONS(129), - [aux_sym__logical_operator_token3] = ACTIONS(129), - [aux_sym__logical_operator_token4] = ACTIONS(129), - [aux_sym__logical_operator_token5] = ACTIONS(129), - [aux_sym__logical_operator_token6] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_LT] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_LT_GT] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(129), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_GT_EQ] = ACTIONS(129), - [aux_sym__comparison_operator_token1] = ACTIONS(129), - [aux_sym__comparison_operator_token2] = ACTIONS(129), - [aux_sym__comparison_operator_token3] = ACTIONS(129), - [aux_sym__comparison_operator_token4] = ACTIONS(129), - [aux_sym__comparison_operator_token5] = ACTIONS(129), - [aux_sym__comparison_operator_token6] = ACTIONS(129), - [aux_sym__comparison_operator_token7] = ACTIONS(129), - [aux_sym__comparison_operator_token8] = ACTIONS(129), - [aux_sym__comparison_operator_token9] = ACTIONS(129), - [aux_sym_variable_tuning_token1] = ACTIONS(129), - [aux_sym_variable_tuning_token2] = ACTIONS(129), - [aux_sym_variable_tuning_token3] = ACTIONS(129), - [aux_sym_variable_tuning_token4] = ACTIONS(129), - [aux_sym_variable_tuning_token5] = ACTIONS(129), - [aux_sym_variable_tuning_token6] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [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_property_tuning_token1] = ACTIONS(129), - [aux_sym_event_definition_token1] = ACTIONS(129), - [aux_sym_using_statement_token1] = ACTIONS(129), - [aux_sym_input_stream_tuning_token1] = ACTIONS(129), - [aux_sym_input_stream_tuning_token2] = ACTIONS(129), - [aux_sym_input_stream_tuning_token3] = ACTIONS(129), - [aux_sym_input_stream_tuning_token4] = ACTIONS(129), - [aux_sym_input_stream_tuning_token5] = ACTIONS(129), - [aux_sym_input_stream_tuning_token6] = ACTIONS(129), - [aux_sym_input_stream_tuning_token7] = ACTIONS(129), - [aux_sym_input_stream_tuning_token8] = ACTIONS(129), - [aux_sym_input_stream_tuning_token9] = ACTIONS(129), - [aux_sym_input_stream_tuning_token11] = ACTIONS(129), - [aux_sym_output_stream_tuning_token1] = ACTIONS(129), - [aux_sym_output_stream_tuning_token2] = ACTIONS(129), - [aux_sym_output_stream_tuning_token3] = ACTIONS(129), - [aux_sym_output_stream_tuning_token4] = ACTIONS(129), - [aux_sym_output_stream_tuning_token5] = ACTIONS(129), - [aux_sym_output_stream_tuning_token6] = ACTIONS(129), - [aux_sym_output_stream_tuning_token7] = ACTIONS(129), - [aux_sym_output_stream_tuning_token8] = ACTIONS(129), - [aux_sym_output_stream_statement_token1] = ACTIONS(129), - [aux_sym_on_error_phrase_token1] = ACTIONS(129), - [aux_sym_stop_after_phrase_token1] = ACTIONS(129), - [aux_sym_do_tuning_token1] = ACTIONS(129), - [anon_sym_BY] = ACTIONS(129), - [aux_sym_where_clause_token1] = ACTIONS(129), - [aux_sym_query_tuning_token1] = ACTIONS(129), - [aux_sym_query_tuning_token2] = ACTIONS(129), - [aux_sym_query_tuning_token3] = ACTIONS(129), - [aux_sym_query_tuning_token4] = ACTIONS(129), - [aux_sym_query_tuning_token5] = ACTIONS(129), - [aux_sym_query_tuning_token6] = ACTIONS(129), - [aux_sym_of_token1] = ACTIONS(129), - [aux_sym_field_definition_token1] = ACTIONS(129), - [aux_sym_index_definition_token1] = ACTIONS(129), - [aux_sym_on_statement_token1] = ACTIONS(129), + [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_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_query_tuning_token6] = 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), }, - [43] = { - [sym_comment] = STATE(43), - [sym_include] = STATE(43), + [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(215), @@ -30324,12 +29532,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(217), [anon_sym_LPAREN] = ACTIONS(217), [anon_sym_RPAREN] = ACTIONS(217), - [aux_sym__logical_operator_token1] = ACTIONS(217), - [aux_sym__logical_operator_token2] = ACTIONS(217), - [aux_sym__logical_operator_token3] = ACTIONS(217), - [aux_sym__logical_operator_token4] = ACTIONS(217), - [aux_sym__logical_operator_token5] = ACTIONS(217), - [aux_sym__logical_operator_token6] = ACTIONS(217), [anon_sym_PLUS] = ACTIONS(217), [anon_sym_DASH] = ACTIONS(217), [anon_sym_LT] = ACTIONS(215), @@ -30395,96 +29597,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(217), [aux_sym_index_definition_token1] = ACTIONS(217), [aux_sym_on_statement_token1] = 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(127), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(129), - [sym__terminator] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [aux_sym__logical_operator_token1] = ACTIONS(129), - [aux_sym__logical_operator_token2] = ACTIONS(129), - [aux_sym__logical_operator_token3] = ACTIONS(129), - [aux_sym__logical_operator_token4] = ACTIONS(129), - [aux_sym__logical_operator_token5] = ACTIONS(129), - [aux_sym__logical_operator_token6] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_LT] = ACTIONS(127), - [anon_sym_LT_EQ] = ACTIONS(129), - [anon_sym_LT_GT] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(129), - [anon_sym_GT] = ACTIONS(127), - [anon_sym_GT_EQ] = ACTIONS(129), - [aux_sym__comparison_operator_token1] = ACTIONS(129), - [aux_sym__comparison_operator_token2] = ACTIONS(129), - [aux_sym__comparison_operator_token3] = ACTIONS(129), - [aux_sym__comparison_operator_token4] = ACTIONS(129), - [aux_sym__comparison_operator_token5] = ACTIONS(129), - [aux_sym__comparison_operator_token6] = ACTIONS(129), - [aux_sym__comparison_operator_token7] = ACTIONS(129), - [aux_sym__comparison_operator_token8] = ACTIONS(129), - [aux_sym__comparison_operator_token9] = ACTIONS(129), - [aux_sym_variable_tuning_token1] = ACTIONS(129), - [aux_sym_variable_tuning_token2] = ACTIONS(129), - [aux_sym_variable_tuning_token3] = ACTIONS(129), - [aux_sym_variable_tuning_token4] = ACTIONS(129), - [aux_sym_variable_tuning_token5] = ACTIONS(129), - [aux_sym_variable_tuning_token6] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [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_property_tuning_token1] = ACTIONS(129), - [aux_sym_event_definition_token1] = ACTIONS(129), - [aux_sym_using_statement_token1] = ACTIONS(129), - [aux_sym_input_stream_tuning_token1] = ACTIONS(129), - [aux_sym_input_stream_tuning_token2] = ACTIONS(129), - [aux_sym_input_stream_tuning_token3] = ACTIONS(129), - [aux_sym_input_stream_tuning_token4] = ACTIONS(129), - [aux_sym_input_stream_tuning_token5] = ACTIONS(129), - [aux_sym_input_stream_tuning_token6] = ACTIONS(129), - [aux_sym_input_stream_tuning_token7] = ACTIONS(129), - [aux_sym_input_stream_tuning_token8] = ACTIONS(129), - [aux_sym_input_stream_tuning_token9] = ACTIONS(129), - [aux_sym_input_stream_tuning_token11] = ACTIONS(129), - [aux_sym_output_stream_tuning_token1] = ACTIONS(129), - [aux_sym_output_stream_tuning_token2] = ACTIONS(129), - [aux_sym_output_stream_tuning_token3] = ACTIONS(129), - [aux_sym_output_stream_tuning_token4] = ACTIONS(129), - [aux_sym_output_stream_tuning_token5] = ACTIONS(129), - [aux_sym_output_stream_tuning_token6] = ACTIONS(129), - [aux_sym_output_stream_tuning_token7] = ACTIONS(129), - [aux_sym_output_stream_tuning_token8] = ACTIONS(129), - [aux_sym_output_stream_statement_token1] = ACTIONS(129), - [aux_sym_on_error_phrase_token1] = ACTIONS(129), - [aux_sym_stop_after_phrase_token1] = ACTIONS(129), - [aux_sym_do_tuning_token1] = ACTIONS(129), - [anon_sym_BY] = ACTIONS(129), - [aux_sym_where_clause_token1] = ACTIONS(129), - [aux_sym_query_tuning_token1] = ACTIONS(129), - [aux_sym_query_tuning_token2] = ACTIONS(129), - [aux_sym_query_tuning_token3] = ACTIONS(129), - [aux_sym_query_tuning_token4] = ACTIONS(129), - [aux_sym_query_tuning_token5] = ACTIONS(129), - [aux_sym_query_tuning_token6] = ACTIONS(129), - [aux_sym_of_token1] = ACTIONS(129), - [aux_sym_field_definition_token1] = ACTIONS(129), - [aux_sym_index_definition_token1] = ACTIONS(129), - [aux_sym_on_statement_token1] = ACTIONS(129), + [sym__or_operator] = ACTIONS(217), + [sym__and_operator] = ACTIONS(217), }, [45] = { [sym_comment] = STATE(45), - [sym__logical_operator] = STATE(548), - [sym__additive_operator] = STATE(536), - [sym__multiplicative_operator] = STATE(509), - [sym__comparison_operator] = STATE(472), + [sym__logical_operator] = STATE(453), + [sym__additive_operator] = STATE(454), + [sym__multiplicative_operator] = STATE(455), + [sym__comparison_operator] = STATE(456), [sym_include] = STATE(45), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), @@ -30494,29 +29615,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(223), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_RPAREN] = ACTIONS(223), - [aux_sym__logical_operator_token1] = ACTIONS(225), - [aux_sym__logical_operator_token2] = ACTIONS(225), - [aux_sym__logical_operator_token3] = ACTIONS(225), - [aux_sym__logical_operator_token4] = ACTIONS(225), - [aux_sym__logical_operator_token5] = ACTIONS(225), - [aux_sym__logical_operator_token6] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(227), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_LT_EQ] = ACTIONS(231), - [anon_sym_LT_GT] = ACTIONS(231), - [anon_sym_EQ] = ACTIONS(231), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_GT_EQ] = ACTIONS(231), - [aux_sym__comparison_operator_token1] = ACTIONS(231), - [aux_sym__comparison_operator_token2] = ACTIONS(231), - [aux_sym__comparison_operator_token3] = ACTIONS(231), - [aux_sym__comparison_operator_token4] = ACTIONS(231), - [aux_sym__comparison_operator_token5] = ACTIONS(231), - [aux_sym__comparison_operator_token6] = ACTIONS(231), - [aux_sym__comparison_operator_token7] = ACTIONS(231), - [aux_sym__comparison_operator_token8] = ACTIONS(231), - [aux_sym__comparison_operator_token9] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_LT_EQ] = ACTIONS(229), + [anon_sym_LT_GT] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_GT_EQ] = ACTIONS(229), + [aux_sym__comparison_operator_token1] = ACTIONS(229), + [aux_sym__comparison_operator_token2] = ACTIONS(229), + [aux_sym__comparison_operator_token3] = ACTIONS(229), + [aux_sym__comparison_operator_token4] = ACTIONS(229), + [aux_sym__comparison_operator_token5] = ACTIONS(229), + [aux_sym__comparison_operator_token6] = ACTIONS(229), + [aux_sym__comparison_operator_token7] = ACTIONS(229), + [aux_sym__comparison_operator_token8] = ACTIONS(229), + [aux_sym__comparison_operator_token9] = ACTIONS(229), [aux_sym_variable_tuning_token1] = ACTIONS(223), [aux_sym_variable_tuning_token2] = ACTIONS(223), [aux_sym_variable_tuning_token3] = ACTIONS(223), @@ -30527,6 +29642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_input_stream_tuning_token1] = ACTIONS(223), @@ -30551,17 +29667,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(231), + [sym__and_operator] = ACTIONS(231), }, [46] = { [sym_comment] = STATE(46), - [sym__logical_operator] = STATE(548), - [sym__additive_operator] = STATE(536), - [sym__multiplicative_operator] = STATE(509), - [sym__comparison_operator] = STATE(472), + [sym__logical_operator] = STATE(453), + [sym__additive_operator] = STATE(454), + [sym__multiplicative_operator] = STATE(455), + [sym__comparison_operator] = STATE(456), [sym_include] = STATE(46), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), @@ -30571,29 +29690,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(233), [anon_sym_LPAREN] = ACTIONS(233), [anon_sym_RPAREN] = ACTIONS(233), - [aux_sym__logical_operator_token1] = ACTIONS(225), - [aux_sym__logical_operator_token2] = ACTIONS(225), - [aux_sym__logical_operator_token3] = ACTIONS(225), - [aux_sym__logical_operator_token4] = ACTIONS(225), - [aux_sym__logical_operator_token5] = ACTIONS(225), - [aux_sym__logical_operator_token6] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(227), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_LT_EQ] = ACTIONS(231), - [anon_sym_LT_GT] = ACTIONS(231), - [anon_sym_EQ] = ACTIONS(231), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_GT_EQ] = ACTIONS(231), - [aux_sym__comparison_operator_token1] = ACTIONS(231), - [aux_sym__comparison_operator_token2] = ACTIONS(231), - [aux_sym__comparison_operator_token3] = ACTIONS(231), - [aux_sym__comparison_operator_token4] = ACTIONS(231), - [aux_sym__comparison_operator_token5] = ACTIONS(231), - [aux_sym__comparison_operator_token6] = ACTIONS(231), - [aux_sym__comparison_operator_token7] = ACTIONS(231), - [aux_sym__comparison_operator_token8] = ACTIONS(231), - [aux_sym__comparison_operator_token9] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_LT_EQ] = ACTIONS(229), + [anon_sym_LT_GT] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_GT_EQ] = ACTIONS(229), + [aux_sym__comparison_operator_token1] = ACTIONS(229), + [aux_sym__comparison_operator_token2] = ACTIONS(229), + [aux_sym__comparison_operator_token3] = ACTIONS(229), + [aux_sym__comparison_operator_token4] = ACTIONS(229), + [aux_sym__comparison_operator_token5] = ACTIONS(229), + [aux_sym__comparison_operator_token6] = ACTIONS(229), + [aux_sym__comparison_operator_token7] = ACTIONS(229), + [aux_sym__comparison_operator_token8] = ACTIONS(229), + [aux_sym__comparison_operator_token9] = ACTIONS(229), [aux_sym_variable_tuning_token1] = ACTIONS(233), [aux_sym_variable_tuning_token2] = ACTIONS(233), [aux_sym_variable_tuning_token3] = ACTIONS(233), @@ -30604,6 +29717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_if_statement_token2] = ACTIONS(233), [aux_sym_else_if_statement_token1] = ACTIONS(233), [anon_sym_COLON] = ACTIONS(233), + [aux_sym_while_phrase_token1] = ACTIONS(233), [aux_sym_property_tuning_token1] = ACTIONS(233), [aux_sym_event_definition_token1] = ACTIONS(233), [aux_sym_input_stream_tuning_token1] = ACTIONS(233), @@ -30628,17 +29742,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_on_error_phrase_token1] = ACTIONS(233), [aux_sym_stop_after_phrase_token1] = ACTIONS(233), [aux_sym_do_tuning_token1] = ACTIONS(233), + [anon_sym_BY] = ACTIONS(233), [aux_sym_of_token1] = ACTIONS(233), [aux_sym_field_definition_token1] = ACTIONS(233), [aux_sym_index_definition_token1] = ACTIONS(233), [aux_sym_on_statement_token1] = ACTIONS(233), + [sym__or_operator] = ACTIONS(231), + [sym__and_operator] = ACTIONS(231), }, [47] = { [sym_comment] = STATE(47), - [sym__logical_operator] = STATE(548), - [sym__additive_operator] = STATE(536), - [sym__multiplicative_operator] = STATE(509), - [sym__comparison_operator] = STATE(472), + [sym__logical_operator] = STATE(453), + [sym__additive_operator] = STATE(454), + [sym__multiplicative_operator] = STATE(455), + [sym__comparison_operator] = STATE(456), [sym_include] = STATE(47), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), @@ -30648,29 +29765,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__terminator] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(235), [anon_sym_RPAREN] = ACTIONS(235), - [aux_sym__logical_operator_token1] = ACTIONS(225), - [aux_sym__logical_operator_token2] = ACTIONS(225), - [aux_sym__logical_operator_token3] = ACTIONS(225), - [aux_sym__logical_operator_token4] = ACTIONS(225), - [aux_sym__logical_operator_token5] = ACTIONS(225), - [aux_sym__logical_operator_token6] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(227), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_LT_EQ] = ACTIONS(231), - [anon_sym_LT_GT] = ACTIONS(231), - [anon_sym_EQ] = ACTIONS(231), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_GT_EQ] = ACTIONS(231), - [aux_sym__comparison_operator_token1] = ACTIONS(231), - [aux_sym__comparison_operator_token2] = ACTIONS(231), - [aux_sym__comparison_operator_token3] = ACTIONS(231), - [aux_sym__comparison_operator_token4] = ACTIONS(231), - [aux_sym__comparison_operator_token5] = ACTIONS(231), - [aux_sym__comparison_operator_token6] = ACTIONS(231), - [aux_sym__comparison_operator_token7] = ACTIONS(231), - [aux_sym__comparison_operator_token8] = ACTIONS(231), - [aux_sym__comparison_operator_token9] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_LT_EQ] = ACTIONS(229), + [anon_sym_LT_GT] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_GT_EQ] = ACTIONS(229), + [aux_sym__comparison_operator_token1] = ACTIONS(229), + [aux_sym__comparison_operator_token2] = ACTIONS(229), + [aux_sym__comparison_operator_token3] = ACTIONS(229), + [aux_sym__comparison_operator_token4] = ACTIONS(229), + [aux_sym__comparison_operator_token5] = ACTIONS(229), + [aux_sym__comparison_operator_token6] = ACTIONS(229), + [aux_sym__comparison_operator_token7] = ACTIONS(229), + [aux_sym__comparison_operator_token8] = ACTIONS(229), + [aux_sym__comparison_operator_token9] = ACTIONS(229), [aux_sym_variable_tuning_token1] = ACTIONS(235), [aux_sym_variable_tuning_token2] = ACTIONS(235), [aux_sym_variable_tuning_token3] = ACTIONS(235), @@ -30681,6 +29792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_if_statement_token2] = ACTIONS(235), [aux_sym_else_if_statement_token1] = ACTIONS(235), [anon_sym_COLON] = ACTIONS(235), + [aux_sym_while_phrase_token1] = ACTIONS(235), [aux_sym_property_tuning_token1] = ACTIONS(235), [aux_sym_event_definition_token1] = ACTIONS(235), [aux_sym_input_stream_tuning_token1] = ACTIONS(235), @@ -30705,49 +29817,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_on_error_phrase_token1] = ACTIONS(235), [aux_sym_stop_after_phrase_token1] = ACTIONS(235), [aux_sym_do_tuning_token1] = ACTIONS(235), + [anon_sym_BY] = ACTIONS(235), [aux_sym_of_token1] = ACTIONS(235), [aux_sym_field_definition_token1] = ACTIONS(235), [aux_sym_index_definition_token1] = ACTIONS(235), [aux_sym_on_statement_token1] = ACTIONS(235), + [sym__or_operator] = ACTIONS(231), + [sym__and_operator] = ACTIONS(231), }, [48] = { [sym_comment] = STATE(48), - [sym__logical_operator] = STATE(548), - [sym__additive_operator] = STATE(536), - [sym__multiplicative_operator] = STATE(509), - [sym__comparison_operator] = STATE(472), + [sym__logical_operator] = STATE(453), + [sym__additive_operator] = STATE(454), + [sym__multiplicative_operator] = STATE(455), + [sym__comparison_operator] = STATE(456), [sym_include] = STATE(48), [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(197), + [anon_sym_LPAREN] = ACTIONS(197), + [anon_sym_RPAREN] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_LT_EQ] = ACTIONS(229), + [anon_sym_LT_GT] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_GT_EQ] = ACTIONS(229), + [aux_sym__comparison_operator_token1] = ACTIONS(229), + [aux_sym__comparison_operator_token2] = ACTIONS(229), + [aux_sym__comparison_operator_token3] = ACTIONS(229), + [aux_sym__comparison_operator_token4] = ACTIONS(229), + [aux_sym__comparison_operator_token5] = ACTIONS(229), + [aux_sym__comparison_operator_token6] = ACTIONS(229), + [aux_sym__comparison_operator_token7] = ACTIONS(229), + [aux_sym__comparison_operator_token8] = ACTIONS(229), + [aux_sym__comparison_operator_token9] = ACTIONS(229), + [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_property_tuning_token1] = ACTIONS(197), + [aux_sym_event_definition_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_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), + }, + [49] = { + [sym_comment] = STATE(49), + [sym__logical_operator] = STATE(453), + [sym__additive_operator] = STATE(454), + [sym__multiplicative_operator] = STATE(455), + [sym__comparison_operator] = STATE(456), + [sym_include] = STATE(49), + [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(237), [anon_sym_LPAREN] = ACTIONS(237), [anon_sym_RPAREN] = ACTIONS(237), - [aux_sym__logical_operator_token1] = ACTIONS(237), - [aux_sym__logical_operator_token2] = ACTIONS(237), - [aux_sym__logical_operator_token3] = ACTIONS(237), - [aux_sym__logical_operator_token4] = ACTIONS(237), - [aux_sym__logical_operator_token5] = ACTIONS(237), - [aux_sym__logical_operator_token6] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(227), - [anon_sym_LT] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(237), - [anon_sym_LT_GT] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(237), - [anon_sym_GT] = ACTIONS(239), - [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), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_LT_EQ] = ACTIONS(229), + [anon_sym_LT_GT] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_GT_EQ] = ACTIONS(229), + [aux_sym__comparison_operator_token1] = ACTIONS(229), + [aux_sym__comparison_operator_token2] = ACTIONS(229), + [aux_sym__comparison_operator_token3] = ACTIONS(229), + [aux_sym__comparison_operator_token4] = ACTIONS(229), + [aux_sym__comparison_operator_token5] = ACTIONS(229), + [aux_sym__comparison_operator_token6] = ACTIONS(229), + [aux_sym__comparison_operator_token7] = ACTIONS(229), + [aux_sym__comparison_operator_token8] = ACTIONS(229), + [aux_sym__comparison_operator_token9] = ACTIONS(229), [aux_sym_variable_tuning_token1] = ACTIONS(237), [aux_sym_variable_tuning_token2] = ACTIONS(237), [aux_sym_variable_tuning_token3] = ACTIONS(237), @@ -30758,6 +29942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_if_statement_token2] = ACTIONS(237), [aux_sym_else_if_statement_token1] = ACTIONS(237), [anon_sym_COLON] = ACTIONS(237), + [aux_sym_while_phrase_token1] = ACTIONS(237), [aux_sym_property_tuning_token1] = ACTIONS(237), [aux_sym_event_definition_token1] = ACTIONS(237), [aux_sym_input_stream_tuning_token1] = ACTIONS(237), @@ -30782,641 +29967,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_on_error_phrase_token1] = ACTIONS(237), [aux_sym_stop_after_phrase_token1] = ACTIONS(237), [aux_sym_do_tuning_token1] = ACTIONS(237), + [anon_sym_BY] = ACTIONS(237), [aux_sym_of_token1] = ACTIONS(237), [aux_sym_field_definition_token1] = ACTIONS(237), [aux_sym_index_definition_token1] = ACTIONS(237), [aux_sym_on_statement_token1] = ACTIONS(237), - }, - [49] = { - [sym_comment] = STATE(49), - [sym__logical_operator] = STATE(548), - [sym__additive_operator] = STATE(536), - [sym__multiplicative_operator] = STATE(509), - [sym__comparison_operator] = STATE(472), - [sym_include] = STATE(49), - [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(241), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_RPAREN] = ACTIONS(241), - [aux_sym__logical_operator_token1] = ACTIONS(225), - [aux_sym__logical_operator_token2] = ACTIONS(225), - [aux_sym__logical_operator_token3] = ACTIONS(225), - [aux_sym__logical_operator_token4] = ACTIONS(225), - [aux_sym__logical_operator_token5] = ACTIONS(225), - [aux_sym__logical_operator_token6] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(227), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_LT_EQ] = ACTIONS(231), - [anon_sym_LT_GT] = ACTIONS(231), - [anon_sym_EQ] = ACTIONS(231), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_GT_EQ] = ACTIONS(231), - [aux_sym__comparison_operator_token1] = ACTIONS(231), - [aux_sym__comparison_operator_token2] = ACTIONS(231), - [aux_sym__comparison_operator_token3] = ACTIONS(231), - [aux_sym__comparison_operator_token4] = ACTIONS(231), - [aux_sym__comparison_operator_token5] = ACTIONS(231), - [aux_sym__comparison_operator_token6] = ACTIONS(231), - [aux_sym__comparison_operator_token7] = ACTIONS(231), - [aux_sym__comparison_operator_token8] = ACTIONS(231), - [aux_sym__comparison_operator_token9] = ACTIONS(231), - [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_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), - [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(231), + [sym__and_operator] = ACTIONS(231), }, [50] = { + [sym_body] = STATE(3487), [sym_comment] = STATE(50), - [sym__logical_operator] = STATE(548), - [sym__additive_operator] = STATE(536), - [sym__multiplicative_operator] = STATE(509), - [sym__comparison_operator] = STATE(472), + [sym__block_terminator] = STATE(1300), [sym_include] = STATE(50), - [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(243), - [anon_sym_LPAREN] = ACTIONS(243), - [anon_sym_RPAREN] = ACTIONS(243), - [aux_sym__logical_operator_token1] = ACTIONS(225), - [aux_sym__logical_operator_token2] = ACTIONS(225), - [aux_sym__logical_operator_token3] = ACTIONS(225), - [aux_sym__logical_operator_token4] = ACTIONS(225), - [aux_sym__logical_operator_token5] = ACTIONS(225), - [aux_sym__logical_operator_token6] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(227), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_LT_EQ] = ACTIONS(231), - [anon_sym_LT_GT] = ACTIONS(231), - [anon_sym_EQ] = ACTIONS(231), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_GT_EQ] = ACTIONS(231), - [aux_sym__comparison_operator_token1] = ACTIONS(231), - [aux_sym__comparison_operator_token2] = ACTIONS(231), - [aux_sym__comparison_operator_token3] = ACTIONS(231), - [aux_sym__comparison_operator_token4] = ACTIONS(231), - [aux_sym__comparison_operator_token5] = ACTIONS(231), - [aux_sym__comparison_operator_token6] = ACTIONS(231), - [aux_sym__comparison_operator_token7] = ACTIONS(231), - [aux_sym__comparison_operator_token8] = ACTIONS(231), - [aux_sym__comparison_operator_token9] = ACTIONS(231), - [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_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), - [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), - }, - [51] = { - [sym_comment] = STATE(51), - [sym__logical_operator] = STATE(548), - [sym__additive_operator] = STATE(536), - [sym__multiplicative_operator] = STATE(509), - [sym__comparison_operator] = STATE(472), - [sym_include] = STATE(51), - [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(217), - [anon_sym_LPAREN] = ACTIONS(217), - [anon_sym_RPAREN] = ACTIONS(217), - [aux_sym__logical_operator_token1] = ACTIONS(217), - [aux_sym__logical_operator_token2] = ACTIONS(217), - [aux_sym__logical_operator_token3] = ACTIONS(217), - [aux_sym__logical_operator_token4] = ACTIONS(217), - [aux_sym__logical_operator_token5] = ACTIONS(217), - [aux_sym__logical_operator_token6] = ACTIONS(217), - [anon_sym_PLUS] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(227), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_LT_EQ] = ACTIONS(231), - [anon_sym_LT_GT] = ACTIONS(231), - [anon_sym_EQ] = ACTIONS(231), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_GT_EQ] = ACTIONS(231), - [aux_sym__comparison_operator_token1] = ACTIONS(231), - [aux_sym__comparison_operator_token2] = ACTIONS(231), - [aux_sym__comparison_operator_token3] = ACTIONS(231), - [aux_sym__comparison_operator_token4] = ACTIONS(231), - [aux_sym__comparison_operator_token5] = ACTIONS(231), - [aux_sym__comparison_operator_token6] = ACTIONS(231), - [aux_sym__comparison_operator_token7] = ACTIONS(231), - [aux_sym__comparison_operator_token8] = ACTIONS(231), - [aux_sym__comparison_operator_token9] = ACTIONS(231), - [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_if_statement_token2] = ACTIONS(217), - [aux_sym_else_if_statement_token1] = ACTIONS(217), - [anon_sym_COLON] = ACTIONS(217), - [aux_sym_property_tuning_token1] = ACTIONS(217), - [aux_sym_event_definition_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), - [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), - }, - [52] = { - [sym_comment] = STATE(52), - [sym__logical_operator] = STATE(548), - [sym__additive_operator] = STATE(536), - [sym__multiplicative_operator] = STATE(509), - [sym__comparison_operator] = STATE(472), - [sym_include] = STATE(52), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(245), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(247), - [sym__terminator] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_RPAREN] = ACTIONS(247), - [aux_sym__logical_operator_token1] = ACTIONS(247), - [aux_sym__logical_operator_token2] = ACTIONS(247), - [aux_sym__logical_operator_token3] = ACTIONS(247), - [aux_sym__logical_operator_token4] = ACTIONS(247), - [aux_sym__logical_operator_token5] = ACTIONS(247), - [aux_sym__logical_operator_token6] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_LT] = ACTIONS(245), - [anon_sym_LT_EQ] = ACTIONS(247), - [anon_sym_LT_GT] = ACTIONS(247), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(245), - [anon_sym_GT_EQ] = ACTIONS(247), - [aux_sym__comparison_operator_token1] = ACTIONS(247), - [aux_sym__comparison_operator_token2] = ACTIONS(247), - [aux_sym__comparison_operator_token3] = ACTIONS(247), - [aux_sym__comparison_operator_token4] = ACTIONS(247), - [aux_sym__comparison_operator_token5] = ACTIONS(247), - [aux_sym__comparison_operator_token6] = ACTIONS(247), - [aux_sym__comparison_operator_token7] = ACTIONS(247), - [aux_sym__comparison_operator_token8] = ACTIONS(247), - [aux_sym__comparison_operator_token9] = ACTIONS(247), - [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_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), - [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), - }, - [53] = { - [sym_comment] = STATE(53), - [sym__logical_operator] = STATE(548), - [sym__additive_operator] = STATE(536), - [sym__multiplicative_operator] = STATE(509), - [sym__comparison_operator] = STATE(472), - [sym_include] = STATE(53), - [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(249), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(249), - [aux_sym__logical_operator_token1] = ACTIONS(249), - [aux_sym__logical_operator_token2] = ACTIONS(249), - [aux_sym__logical_operator_token3] = ACTIONS(249), - [aux_sym__logical_operator_token4] = ACTIONS(249), - [aux_sym__logical_operator_token5] = ACTIONS(249), - [aux_sym__logical_operator_token6] = 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_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), - [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), - }, - [54] = { - [sym_comment] = STATE(54), - [sym__logical_operator] = STATE(548), - [sym__additive_operator] = STATE(536), - [sym__multiplicative_operator] = STATE(509), - [sym__comparison_operator] = STATE(472), - [sym_include] = STATE(54), - [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(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_RPAREN] = ACTIONS(253), - [aux_sym__logical_operator_token1] = ACTIONS(225), - [aux_sym__logical_operator_token2] = ACTIONS(225), - [aux_sym__logical_operator_token3] = ACTIONS(225), - [aux_sym__logical_operator_token4] = ACTIONS(225), - [aux_sym__logical_operator_token5] = ACTIONS(225), - [aux_sym__logical_operator_token6] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(227), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_LT_EQ] = ACTIONS(231), - [anon_sym_LT_GT] = ACTIONS(231), - [anon_sym_EQ] = ACTIONS(231), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_GT_EQ] = ACTIONS(231), - [aux_sym__comparison_operator_token1] = ACTIONS(231), - [aux_sym__comparison_operator_token2] = ACTIONS(231), - [aux_sym__comparison_operator_token3] = ACTIONS(231), - [aux_sym__comparison_operator_token4] = ACTIONS(231), - [aux_sym__comparison_operator_token5] = ACTIONS(231), - [aux_sym__comparison_operator_token6] = ACTIONS(231), - [aux_sym__comparison_operator_token7] = ACTIONS(231), - [aux_sym__comparison_operator_token8] = ACTIONS(231), - [aux_sym__comparison_operator_token9] = ACTIONS(231), - [aux_sym_variable_tuning_token1] = ACTIONS(253), - [aux_sym_variable_tuning_token2] = ACTIONS(253), - [aux_sym_variable_tuning_token3] = ACTIONS(253), - [aux_sym_variable_tuning_token4] = ACTIONS(253), - [aux_sym_variable_tuning_token5] = ACTIONS(253), - [aux_sym_variable_tuning_token6] = ACTIONS(253), - [anon_sym_COMMA] = ACTIONS(253), - [aux_sym_if_statement_token2] = ACTIONS(253), - [aux_sym_else_if_statement_token1] = ACTIONS(253), - [anon_sym_COLON] = ACTIONS(253), - [aux_sym_property_tuning_token1] = ACTIONS(253), - [aux_sym_event_definition_token1] = ACTIONS(253), - [aux_sym_input_stream_tuning_token1] = ACTIONS(253), - [aux_sym_input_stream_tuning_token2] = ACTIONS(253), - [aux_sym_input_stream_tuning_token3] = ACTIONS(253), - [aux_sym_input_stream_tuning_token4] = ACTIONS(253), - [aux_sym_input_stream_tuning_token5] = ACTIONS(253), - [aux_sym_input_stream_tuning_token6] = ACTIONS(253), - [aux_sym_input_stream_tuning_token7] = ACTIONS(253), - [aux_sym_input_stream_tuning_token8] = ACTIONS(253), - [aux_sym_input_stream_tuning_token9] = ACTIONS(253), - [aux_sym_input_stream_tuning_token11] = ACTIONS(253), - [aux_sym_output_stream_tuning_token1] = ACTIONS(253), - [aux_sym_output_stream_tuning_token2] = ACTIONS(253), - [aux_sym_output_stream_tuning_token3] = ACTIONS(253), - [aux_sym_output_stream_tuning_token4] = ACTIONS(253), - [aux_sym_output_stream_tuning_token5] = ACTIONS(253), - [aux_sym_output_stream_tuning_token6] = ACTIONS(253), - [aux_sym_output_stream_tuning_token7] = ACTIONS(253), - [aux_sym_output_stream_tuning_token8] = ACTIONS(253), - [aux_sym_output_stream_statement_token1] = ACTIONS(253), - [aux_sym_on_error_phrase_token1] = ACTIONS(253), - [aux_sym_stop_after_phrase_token1] = ACTIONS(253), - [aux_sym_do_tuning_token1] = ACTIONS(253), - [aux_sym_of_token1] = ACTIONS(253), - [aux_sym_field_definition_token1] = ACTIONS(253), - [aux_sym_index_definition_token1] = ACTIONS(253), - [aux_sym_on_statement_token1] = ACTIONS(253), - }, - [55] = { - [sym_comment] = STATE(55), - [sym_include] = STATE(55), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(149), - [sym__terminator] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [aux_sym__logical_operator_token1] = ACTIONS(149), - [aux_sym__logical_operator_token2] = ACTIONS(149), - [aux_sym__logical_operator_token3] = ACTIONS(149), - [aux_sym__logical_operator_token4] = ACTIONS(149), - [aux_sym__logical_operator_token5] = ACTIONS(149), - [aux_sym__logical_operator_token6] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_LT_GT] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_GT_EQ] = ACTIONS(149), - [aux_sym__comparison_operator_token1] = ACTIONS(149), - [aux_sym__comparison_operator_token2] = ACTIONS(149), - [aux_sym__comparison_operator_token3] = ACTIONS(149), - [aux_sym__comparison_operator_token4] = ACTIONS(149), - [aux_sym__comparison_operator_token5] = ACTIONS(149), - [aux_sym__comparison_operator_token6] = ACTIONS(149), - [aux_sym__comparison_operator_token7] = ACTIONS(149), - [aux_sym__comparison_operator_token8] = ACTIONS(149), - [aux_sym__comparison_operator_token9] = ACTIONS(149), - [aux_sym_variable_tuning_token1] = ACTIONS(149), - [aux_sym_variable_tuning_token2] = ACTIONS(149), - [aux_sym_variable_tuning_token3] = ACTIONS(149), - [aux_sym_variable_tuning_token4] = ACTIONS(149), - [aux_sym_variable_tuning_token5] = ACTIONS(149), - [aux_sym_variable_tuning_token6] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [aux_sym_if_statement_token2] = ACTIONS(149), - [aux_sym_else_if_statement_token1] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [aux_sym_while_phrase_token1] = ACTIONS(149), - [aux_sym_property_tuning_token1] = ACTIONS(149), - [aux_sym_event_definition_token1] = ACTIONS(149), - [anon_sym_NO_DASHERROR] = ACTIONS(255), - [aux_sym_input_stream_tuning_token1] = ACTIONS(149), - [aux_sym_input_stream_tuning_token2] = ACTIONS(149), - [aux_sym_input_stream_tuning_token3] = ACTIONS(149), - [aux_sym_input_stream_tuning_token4] = ACTIONS(149), - [aux_sym_input_stream_tuning_token5] = ACTIONS(149), - [aux_sym_input_stream_tuning_token6] = ACTIONS(149), - [aux_sym_input_stream_tuning_token7] = ACTIONS(149), - [aux_sym_input_stream_tuning_token8] = ACTIONS(149), - [aux_sym_input_stream_tuning_token9] = ACTIONS(149), - [aux_sym_input_stream_tuning_token11] = ACTIONS(149), - [aux_sym_output_stream_tuning_token1] = ACTIONS(149), - [aux_sym_output_stream_tuning_token2] = ACTIONS(149), - [aux_sym_output_stream_tuning_token3] = ACTIONS(149), - [aux_sym_output_stream_tuning_token4] = ACTIONS(149), - [aux_sym_output_stream_tuning_token5] = ACTIONS(149), - [aux_sym_output_stream_tuning_token6] = ACTIONS(149), - [aux_sym_output_stream_tuning_token7] = ACTIONS(149), - [aux_sym_output_stream_tuning_token8] = ACTIONS(149), - [aux_sym_output_stream_statement_token1] = ACTIONS(149), - [aux_sym_on_error_phrase_token1] = ACTIONS(149), - [aux_sym_stop_after_phrase_token1] = ACTIONS(149), - [aux_sym_do_tuning_token1] = ACTIONS(149), - [anon_sym_BY] = ACTIONS(149), - [aux_sym_of_token1] = ACTIONS(149), - [aux_sym_field_definition_token1] = ACTIONS(149), - [aux_sym_index_definition_token1] = ACTIONS(149), - [aux_sym_on_statement_token1] = ACTIONS(149), - }, - [56] = { - [sym_comment] = STATE(56), - [sym_include] = STATE(56), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(259), - [sym__terminator] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(259), - [anon_sym_RPAREN] = ACTIONS(259), - [aux_sym__logical_operator_token1] = ACTIONS(259), - [aux_sym__logical_operator_token2] = ACTIONS(259), - [aux_sym__logical_operator_token3] = ACTIONS(259), - [aux_sym__logical_operator_token4] = ACTIONS(259), - [aux_sym__logical_operator_token5] = ACTIONS(259), - [aux_sym__logical_operator_token6] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(257), - [anon_sym_LT_EQ] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(259), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_GT] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(259), - [aux_sym__comparison_operator_token1] = ACTIONS(259), - [aux_sym__comparison_operator_token2] = ACTIONS(259), - [aux_sym__comparison_operator_token3] = ACTIONS(259), - [aux_sym__comparison_operator_token4] = ACTIONS(259), - [aux_sym__comparison_operator_token5] = ACTIONS(259), - [aux_sym__comparison_operator_token6] = ACTIONS(259), - [aux_sym__comparison_operator_token7] = ACTIONS(259), - [aux_sym__comparison_operator_token8] = ACTIONS(259), - [aux_sym__comparison_operator_token9] = ACTIONS(259), - [aux_sym_variable_tuning_token1] = ACTIONS(259), - [aux_sym_variable_tuning_token2] = ACTIONS(259), - [aux_sym_variable_tuning_token3] = ACTIONS(259), - [aux_sym_variable_tuning_token4] = ACTIONS(259), - [aux_sym_variable_tuning_token5] = ACTIONS(259), - [aux_sym_variable_tuning_token6] = ACTIONS(259), - [anon_sym_COMMA] = ACTIONS(259), - [aux_sym_if_statement_token2] = ACTIONS(259), - [aux_sym_else_if_statement_token1] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [aux_sym_while_phrase_token1] = ACTIONS(259), - [aux_sym_property_tuning_token1] = ACTIONS(259), - [aux_sym_event_definition_token1] = ACTIONS(259), - [anon_sym_NO_DASHERROR] = ACTIONS(261), - [aux_sym_input_stream_tuning_token1] = ACTIONS(259), - [aux_sym_input_stream_tuning_token2] = ACTIONS(259), - [aux_sym_input_stream_tuning_token3] = ACTIONS(259), - [aux_sym_input_stream_tuning_token4] = ACTIONS(259), - [aux_sym_input_stream_tuning_token5] = ACTIONS(259), - [aux_sym_input_stream_tuning_token6] = ACTIONS(259), - [aux_sym_input_stream_tuning_token7] = ACTIONS(259), - [aux_sym_input_stream_tuning_token8] = ACTIONS(259), - [aux_sym_input_stream_tuning_token9] = ACTIONS(259), - [aux_sym_input_stream_tuning_token11] = ACTIONS(259), - [aux_sym_output_stream_tuning_token1] = ACTIONS(259), - [aux_sym_output_stream_tuning_token2] = ACTIONS(259), - [aux_sym_output_stream_tuning_token3] = ACTIONS(259), - [aux_sym_output_stream_tuning_token4] = ACTIONS(259), - [aux_sym_output_stream_tuning_token5] = ACTIONS(259), - [aux_sym_output_stream_tuning_token6] = ACTIONS(259), - [aux_sym_output_stream_tuning_token7] = ACTIONS(259), - [aux_sym_output_stream_tuning_token8] = ACTIONS(259), - [aux_sym_output_stream_statement_token1] = ACTIONS(259), - [aux_sym_on_error_phrase_token1] = ACTIONS(259), - [aux_sym_stop_after_phrase_token1] = ACTIONS(259), - [aux_sym_do_tuning_token1] = ACTIONS(259), - [anon_sym_BY] = ACTIONS(259), - [aux_sym_of_token1] = ACTIONS(259), - [aux_sym_field_definition_token1] = ACTIONS(259), - [aux_sym_index_definition_token1] = ACTIONS(259), - [aux_sym_on_statement_token1] = ACTIONS(259), - }, - [57] = { - [sym_body] = STATE(3144), - [sym_comment] = STATE(57), - [sym__block_terminator] = STATE(1541), - [sym_include] = STATE(57), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), - [sym__procedure_terminator] = STATE(1541), + [sym__procedure_terminator] = STATE(1300), [sym_procedure_statement] = STATE(1458), [sym_procedure_parameter_definition] = STATE(1458), [sym_function_statement] = STATE(1458), @@ -31424,7 +29998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -31445,61 +30019,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(241), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [58] = { - [sym_body] = STATE(3195), - [sym_comment] = STATE(58), - [sym__block_terminator] = STATE(1316), - [sym_include] = STATE(58), - [sym_assignment] = STATE(4539), + [51] = { + [sym_body] = STATE(3375), + [sym_comment] = STATE(51), + [sym__block_terminator] = STATE(1214), + [sym_include] = STATE(51), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), + [sym__procedure_terminator] = STATE(1214), [sym_procedure_statement] = STATE(1458), [sym_procedure_parameter_definition] = STATE(1458), - [sym__function_terminator] = STATE(1299), [sym_function_statement] = STATE(1458), [sym_return_statement] = STATE(1458), [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -31520,53 +30094,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(241), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [59] = { - [sym_body] = STATE(3127), - [sym_comment] = STATE(59), - [sym__block_terminator] = STATE(1577), - [sym_include] = STATE(59), - [sym_assignment] = STATE(4539), + [52] = { + [sym_body] = STATE(3460), + [sym_comment] = STATE(52), + [sym__block_terminator] = STATE(1186), + [sym_include] = STATE(52), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), - [sym__procedure_terminator] = STATE(1577), + [sym__procedure_terminator] = STATE(1186), [sym_procedure_statement] = STATE(1458), [sym_procedure_parameter_definition] = STATE(1458), [sym_function_statement] = STATE(1458), @@ -31574,7 +30148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -31595,61 +30169,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [60] = { - [sym_body] = STATE(3487), - [sym_comment] = STATE(60), - [sym__block_terminator] = STATE(1314), - [sym_include] = STATE(60), - [sym_assignment] = STATE(4539), + [53] = { + [sym_body] = STATE(3308), + [sym_comment] = STATE(53), + [sym__block_terminator] = STATE(1478), + [sym_include] = STATE(53), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), - [sym__procedure_terminator] = STATE(1314), [sym_procedure_statement] = STATE(1458), [sym_procedure_parameter_definition] = STATE(1458), + [sym__function_terminator] = STATE(1437), [sym_function_statement] = STATE(1458), [sym_return_statement] = STATE(1458), [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -31670,61 +30244,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), + }, + [54] = { + [sym_comment] = STATE(54), + [sym__logical_operator] = STATE(453), + [sym__additive_operator] = STATE(454), + [sym__multiplicative_operator] = STATE(455), + [sym__comparison_operator] = STATE(456), + [sym_include] = STATE(54), + [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(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_LT_EQ] = ACTIONS(229), + [anon_sym_LT_GT] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_GT_EQ] = ACTIONS(229), + [aux_sym__comparison_operator_token1] = ACTIONS(229), + [aux_sym__comparison_operator_token2] = ACTIONS(229), + [aux_sym__comparison_operator_token3] = ACTIONS(229), + [aux_sym__comparison_operator_token4] = ACTIONS(229), + [aux_sym__comparison_operator_token5] = ACTIONS(229), + [aux_sym__comparison_operator_token6] = ACTIONS(229), + [aux_sym__comparison_operator_token7] = ACTIONS(229), + [aux_sym__comparison_operator_token8] = ACTIONS(229), + [aux_sym__comparison_operator_token9] = ACTIONS(229), + [aux_sym_variable_tuning_token1] = ACTIONS(293), + [aux_sym_variable_tuning_token2] = ACTIONS(293), + [aux_sym_variable_tuning_token3] = ACTIONS(293), + [aux_sym_variable_tuning_token4] = ACTIONS(293), + [aux_sym_variable_tuning_token5] = ACTIONS(293), + [aux_sym_variable_tuning_token6] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(293), + [aux_sym_if_statement_token2] = ACTIONS(293), + [aux_sym_else_if_statement_token1] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(293), + [aux_sym_while_phrase_token1] = ACTIONS(293), + [aux_sym_property_tuning_token1] = ACTIONS(293), + [aux_sym_event_definition_token1] = ACTIONS(293), + [aux_sym_input_stream_tuning_token1] = ACTIONS(293), + [aux_sym_input_stream_tuning_token2] = ACTIONS(293), + [aux_sym_input_stream_tuning_token3] = ACTIONS(293), + [aux_sym_input_stream_tuning_token4] = ACTIONS(293), + [aux_sym_input_stream_tuning_token5] = ACTIONS(293), + [aux_sym_input_stream_tuning_token6] = ACTIONS(293), + [aux_sym_input_stream_tuning_token7] = ACTIONS(293), + [aux_sym_input_stream_tuning_token8] = ACTIONS(293), + [aux_sym_input_stream_tuning_token9] = ACTIONS(293), + [aux_sym_input_stream_tuning_token11] = ACTIONS(293), + [aux_sym_output_stream_tuning_token1] = ACTIONS(293), + [aux_sym_output_stream_tuning_token2] = ACTIONS(293), + [aux_sym_output_stream_tuning_token3] = ACTIONS(293), + [aux_sym_output_stream_tuning_token4] = ACTIONS(293), + [aux_sym_output_stream_tuning_token5] = ACTIONS(293), + [aux_sym_output_stream_tuning_token6] = ACTIONS(293), + [aux_sym_output_stream_tuning_token7] = ACTIONS(293), + [aux_sym_output_stream_tuning_token8] = ACTIONS(293), + [aux_sym_output_stream_statement_token1] = ACTIONS(293), [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), + [aux_sym_stop_after_phrase_token1] = ACTIONS(293), + [aux_sym_do_tuning_token1] = ACTIONS(293), + [anon_sym_BY] = ACTIONS(293), + [aux_sym_of_token1] = ACTIONS(293), + [aux_sym_field_definition_token1] = ACTIONS(293), + [aux_sym_index_definition_token1] = ACTIONS(293), + [aux_sym_on_statement_token1] = ACTIONS(293), + [sym__or_operator] = ACTIONS(231), + [sym__and_operator] = ACTIONS(231), }, - [61] = { - [sym_body] = STATE(3145), - [sym_comment] = STATE(61), - [sym__block_terminator] = STATE(1470), - [sym_include] = STATE(61), - [sym_assignment] = STATE(4539), + [55] = { + [sym_comment] = STATE(55), + [sym__logical_operator] = STATE(453), + [sym__additive_operator] = STATE(454), + [sym__multiplicative_operator] = STATE(455), + [sym__comparison_operator] = STATE(456), + [sym_include] = STATE(55), + [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(295), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(295), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(295), + [anon_sym_LT_GT] = ACTIONS(295), + [anon_sym_EQ] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_GT_EQ] = ACTIONS(295), + [aux_sym__comparison_operator_token1] = ACTIONS(295), + [aux_sym__comparison_operator_token2] = ACTIONS(295), + [aux_sym__comparison_operator_token3] = ACTIONS(295), + [aux_sym__comparison_operator_token4] = ACTIONS(295), + [aux_sym__comparison_operator_token5] = ACTIONS(295), + [aux_sym__comparison_operator_token6] = ACTIONS(295), + [aux_sym__comparison_operator_token7] = ACTIONS(295), + [aux_sym__comparison_operator_token8] = ACTIONS(295), + [aux_sym__comparison_operator_token9] = ACTIONS(295), + [aux_sym_variable_tuning_token1] = ACTIONS(295), + [aux_sym_variable_tuning_token2] = ACTIONS(295), + [aux_sym_variable_tuning_token3] = ACTIONS(295), + [aux_sym_variable_tuning_token4] = ACTIONS(295), + [aux_sym_variable_tuning_token5] = ACTIONS(295), + [aux_sym_variable_tuning_token6] = ACTIONS(295), + [anon_sym_COMMA] = ACTIONS(295), + [aux_sym_if_statement_token2] = ACTIONS(295), + [aux_sym_else_if_statement_token1] = ACTIONS(295), + [anon_sym_COLON] = ACTIONS(295), + [aux_sym_while_phrase_token1] = ACTIONS(295), + [aux_sym_property_tuning_token1] = ACTIONS(295), + [aux_sym_event_definition_token1] = ACTIONS(295), + [aux_sym_input_stream_tuning_token1] = ACTIONS(295), + [aux_sym_input_stream_tuning_token2] = ACTIONS(295), + [aux_sym_input_stream_tuning_token3] = ACTIONS(295), + [aux_sym_input_stream_tuning_token4] = ACTIONS(295), + [aux_sym_input_stream_tuning_token5] = ACTIONS(295), + [aux_sym_input_stream_tuning_token6] = ACTIONS(295), + [aux_sym_input_stream_tuning_token7] = ACTIONS(295), + [aux_sym_input_stream_tuning_token8] = ACTIONS(295), + [aux_sym_input_stream_tuning_token9] = ACTIONS(295), + [aux_sym_input_stream_tuning_token11] = ACTIONS(295), + [aux_sym_output_stream_tuning_token1] = ACTIONS(295), + [aux_sym_output_stream_tuning_token2] = ACTIONS(295), + [aux_sym_output_stream_tuning_token3] = ACTIONS(295), + [aux_sym_output_stream_tuning_token4] = ACTIONS(295), + [aux_sym_output_stream_tuning_token5] = ACTIONS(295), + [aux_sym_output_stream_tuning_token6] = ACTIONS(295), + [aux_sym_output_stream_tuning_token7] = ACTIONS(295), + [aux_sym_output_stream_tuning_token8] = ACTIONS(295), + [aux_sym_output_stream_statement_token1] = ACTIONS(295), + [aux_sym_on_error_phrase_token1] = ACTIONS(295), + [aux_sym_stop_after_phrase_token1] = ACTIONS(295), + [aux_sym_do_tuning_token1] = ACTIONS(295), + [anon_sym_BY] = ACTIONS(295), + [aux_sym_of_token1] = ACTIONS(295), + [aux_sym_field_definition_token1] = ACTIONS(295), + [aux_sym_index_definition_token1] = ACTIONS(295), + [aux_sym_on_statement_token1] = ACTIONS(295), + [sym__or_operator] = ACTIONS(295), + [sym__and_operator] = ACTIONS(295), + }, + [56] = { + [sym_body] = STATE(3323), + [sym_comment] = STATE(56), + [sym__block_terminator] = STATE(1478), + [sym_include] = STATE(56), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), [sym_procedure_statement] = STATE(1458), [sym_procedure_parameter_definition] = STATE(1458), - [sym__function_terminator] = STATE(1469), + [sym__function_terminator] = STATE(1475), [sym_function_statement] = STATE(1458), [sym_return_statement] = STATE(1458), [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -31745,61 +30469,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [62] = { - [sym_body] = STATE(3261), - [sym_comment] = STATE(62), - [sym__block_terminator] = STATE(1557), - [sym_include] = STATE(62), - [sym_assignment] = STATE(4539), + [57] = { + [sym_comment] = STATE(57), + [sym__logical_operator] = STATE(453), + [sym__additive_operator] = STATE(454), + [sym__multiplicative_operator] = STATE(455), + [sym__comparison_operator] = STATE(456), + [sym_include] = STATE(57), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(301), + [sym__terminator] = ACTIONS(301), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_RPAREN] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(301), + [anon_sym_LT] = ACTIONS(299), + [anon_sym_LT_EQ] = ACTIONS(301), + [anon_sym_LT_GT] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(301), + [aux_sym__comparison_operator_token1] = ACTIONS(301), + [aux_sym__comparison_operator_token2] = ACTIONS(301), + [aux_sym__comparison_operator_token3] = ACTIONS(301), + [aux_sym__comparison_operator_token4] = ACTIONS(301), + [aux_sym__comparison_operator_token5] = ACTIONS(301), + [aux_sym__comparison_operator_token6] = ACTIONS(301), + [aux_sym__comparison_operator_token7] = ACTIONS(301), + [aux_sym__comparison_operator_token8] = ACTIONS(301), + [aux_sym__comparison_operator_token9] = ACTIONS(301), + [aux_sym_variable_tuning_token1] = ACTIONS(301), + [aux_sym_variable_tuning_token2] = ACTIONS(301), + [aux_sym_variable_tuning_token3] = ACTIONS(301), + [aux_sym_variable_tuning_token4] = ACTIONS(301), + [aux_sym_variable_tuning_token5] = ACTIONS(301), + [aux_sym_variable_tuning_token6] = ACTIONS(301), + [anon_sym_COMMA] = ACTIONS(301), + [aux_sym_if_statement_token2] = ACTIONS(301), + [aux_sym_else_if_statement_token1] = ACTIONS(301), + [anon_sym_COLON] = ACTIONS(301), + [aux_sym_while_phrase_token1] = ACTIONS(301), + [aux_sym_property_tuning_token1] = ACTIONS(301), + [aux_sym_event_definition_token1] = ACTIONS(301), + [aux_sym_input_stream_tuning_token1] = ACTIONS(301), + [aux_sym_input_stream_tuning_token2] = ACTIONS(301), + [aux_sym_input_stream_tuning_token3] = ACTIONS(301), + [aux_sym_input_stream_tuning_token4] = ACTIONS(301), + [aux_sym_input_stream_tuning_token5] = ACTIONS(301), + [aux_sym_input_stream_tuning_token6] = ACTIONS(301), + [aux_sym_input_stream_tuning_token7] = ACTIONS(301), + [aux_sym_input_stream_tuning_token8] = ACTIONS(301), + [aux_sym_input_stream_tuning_token9] = ACTIONS(301), + [aux_sym_input_stream_tuning_token11] = ACTIONS(301), + [aux_sym_output_stream_tuning_token1] = ACTIONS(301), + [aux_sym_output_stream_tuning_token2] = ACTIONS(301), + [aux_sym_output_stream_tuning_token3] = ACTIONS(301), + [aux_sym_output_stream_tuning_token4] = ACTIONS(301), + [aux_sym_output_stream_tuning_token5] = ACTIONS(301), + [aux_sym_output_stream_tuning_token6] = ACTIONS(301), + [aux_sym_output_stream_tuning_token7] = ACTIONS(301), + [aux_sym_output_stream_tuning_token8] = ACTIONS(301), + [aux_sym_output_stream_statement_token1] = ACTIONS(301), + [aux_sym_on_error_phrase_token1] = ACTIONS(301), + [aux_sym_stop_after_phrase_token1] = ACTIONS(301), + [aux_sym_do_tuning_token1] = ACTIONS(301), + [anon_sym_BY] = ACTIONS(301), + [aux_sym_of_token1] = ACTIONS(301), + [aux_sym_field_definition_token1] = ACTIONS(301), + [aux_sym_index_definition_token1] = ACTIONS(301), + [aux_sym_on_statement_token1] = ACTIONS(301), + [sym__or_operator] = ACTIONS(301), + [sym__and_operator] = ACTIONS(301), + }, + [58] = { + [sym_comment] = STATE(58), + [sym__logical_operator] = STATE(453), + [sym__additive_operator] = STATE(454), + [sym__multiplicative_operator] = STATE(455), + [sym__comparison_operator] = STATE(456), + [sym_include] = STATE(58), + [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(303), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_RPAREN] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(305), + [anon_sym_LT_EQ] = ACTIONS(303), + [anon_sym_LT_GT] = ACTIONS(303), + [anon_sym_EQ] = ACTIONS(303), + [anon_sym_GT] = ACTIONS(305), + [anon_sym_GT_EQ] = ACTIONS(303), + [aux_sym__comparison_operator_token1] = ACTIONS(303), + [aux_sym__comparison_operator_token2] = ACTIONS(303), + [aux_sym__comparison_operator_token3] = ACTIONS(303), + [aux_sym__comparison_operator_token4] = ACTIONS(303), + [aux_sym__comparison_operator_token5] = ACTIONS(303), + [aux_sym__comparison_operator_token6] = ACTIONS(303), + [aux_sym__comparison_operator_token7] = ACTIONS(303), + [aux_sym__comparison_operator_token8] = ACTIONS(303), + [aux_sym__comparison_operator_token9] = ACTIONS(303), + [aux_sym_variable_tuning_token1] = ACTIONS(303), + [aux_sym_variable_tuning_token2] = ACTIONS(303), + [aux_sym_variable_tuning_token3] = ACTIONS(303), + [aux_sym_variable_tuning_token4] = ACTIONS(303), + [aux_sym_variable_tuning_token5] = ACTIONS(303), + [aux_sym_variable_tuning_token6] = ACTIONS(303), + [anon_sym_COMMA] = ACTIONS(303), + [aux_sym_if_statement_token2] = ACTIONS(303), + [aux_sym_else_if_statement_token1] = ACTIONS(303), + [anon_sym_COLON] = ACTIONS(303), + [aux_sym_while_phrase_token1] = ACTIONS(303), + [aux_sym_property_tuning_token1] = ACTIONS(303), + [aux_sym_event_definition_token1] = ACTIONS(303), + [aux_sym_input_stream_tuning_token1] = ACTIONS(303), + [aux_sym_input_stream_tuning_token2] = ACTIONS(303), + [aux_sym_input_stream_tuning_token3] = ACTIONS(303), + [aux_sym_input_stream_tuning_token4] = ACTIONS(303), + [aux_sym_input_stream_tuning_token5] = ACTIONS(303), + [aux_sym_input_stream_tuning_token6] = ACTIONS(303), + [aux_sym_input_stream_tuning_token7] = ACTIONS(303), + [aux_sym_input_stream_tuning_token8] = ACTIONS(303), + [aux_sym_input_stream_tuning_token9] = ACTIONS(303), + [aux_sym_input_stream_tuning_token11] = ACTIONS(303), + [aux_sym_output_stream_tuning_token1] = ACTIONS(303), + [aux_sym_output_stream_tuning_token2] = ACTIONS(303), + [aux_sym_output_stream_tuning_token3] = ACTIONS(303), + [aux_sym_output_stream_tuning_token4] = ACTIONS(303), + [aux_sym_output_stream_tuning_token5] = ACTIONS(303), + [aux_sym_output_stream_tuning_token6] = ACTIONS(303), + [aux_sym_output_stream_tuning_token7] = ACTIONS(303), + [aux_sym_output_stream_tuning_token8] = ACTIONS(303), + [aux_sym_output_stream_statement_token1] = ACTIONS(303), + [aux_sym_on_error_phrase_token1] = ACTIONS(303), + [aux_sym_stop_after_phrase_token1] = ACTIONS(303), + [aux_sym_do_tuning_token1] = ACTIONS(303), + [anon_sym_BY] = ACTIONS(303), + [aux_sym_of_token1] = ACTIONS(303), + [aux_sym_field_definition_token1] = ACTIONS(303), + [aux_sym_index_definition_token1] = ACTIONS(303), + [aux_sym_on_statement_token1] = ACTIONS(303), + [sym__or_operator] = ACTIONS(303), + [sym__and_operator] = ACTIONS(303), + }, + [59] = { + [sym_body] = STATE(3453), + [sym_comment] = STATE(59), + [sym__block_terminator] = STATE(1473), + [sym_include] = STATE(59), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), - [sym__procedure_terminator] = STATE(1557), [sym_procedure_statement] = STATE(1458), [sym_procedure_parameter_definition] = STATE(1458), + [sym__function_terminator] = STATE(1471), [sym_function_statement] = STATE(1458), [sym_return_statement] = STATE(1458), [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -31820,61 +30694,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(307), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [63] = { - [sym_body] = STATE(3146), - [sym_comment] = STATE(63), - [sym__block_terminator] = STATE(1470), - [sym_include] = STATE(63), - [sym_assignment] = STATE(4539), + [60] = { + [sym_body] = STATE(3062), + [sym_comment] = STATE(60), + [sym__block_terminator] = STATE(1473), + [sym_include] = STATE(60), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), [sym_procedure_statement] = STATE(1458), [sym_procedure_parameter_definition] = STATE(1458), - [sym__function_terminator] = STATE(1432), + [sym__function_terminator] = STATE(1183), [sym_function_statement] = STATE(1458), [sym_return_statement] = STATE(1458), [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -31895,61 +30769,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(307), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [64] = { - [sym_body] = STATE(3147), - [sym_comment] = STATE(64), - [sym__block_terminator] = STATE(1470), - [sym_include] = STATE(64), - [sym_assignment] = STATE(4539), + [61] = { + [sym_body] = STATE(3181), + [sym_comment] = STATE(61), + [sym__block_terminator] = STATE(1473), + [sym_include] = STATE(61), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), [sym_procedure_statement] = STATE(1458), [sym_procedure_parameter_definition] = STATE(1458), - [sym__function_terminator] = STATE(1412), + [sym__function_terminator] = STATE(1274), [sym_function_statement] = STATE(1458), [sym_return_statement] = STATE(1458), [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -31970,61 +30844,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(307), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [65] = { - [sym_body] = STATE(3056), - [sym_comment] = STATE(65), - [sym__block_terminator] = STATE(1316), - [sym_include] = STATE(65), - [sym_assignment] = STATE(4539), + [62] = { + [sym_comment] = STATE(62), + [sym__logical_operator] = STATE(453), + [sym__additive_operator] = STATE(454), + [sym__multiplicative_operator] = STATE(455), + [sym__comparison_operator] = STATE(456), + [sym_include] = STATE(62), + [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(309), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_LT_EQ] = ACTIONS(229), + [anon_sym_LT_GT] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_GT_EQ] = ACTIONS(229), + [aux_sym__comparison_operator_token1] = ACTIONS(229), + [aux_sym__comparison_operator_token2] = ACTIONS(229), + [aux_sym__comparison_operator_token3] = ACTIONS(229), + [aux_sym__comparison_operator_token4] = ACTIONS(229), + [aux_sym__comparison_operator_token5] = ACTIONS(229), + [aux_sym__comparison_operator_token6] = ACTIONS(229), + [aux_sym__comparison_operator_token7] = ACTIONS(229), + [aux_sym__comparison_operator_token8] = ACTIONS(229), + [aux_sym__comparison_operator_token9] = ACTIONS(229), + [aux_sym_variable_tuning_token1] = ACTIONS(309), + [aux_sym_variable_tuning_token2] = ACTIONS(309), + [aux_sym_variable_tuning_token3] = ACTIONS(309), + [aux_sym_variable_tuning_token4] = ACTIONS(309), + [aux_sym_variable_tuning_token5] = ACTIONS(309), + [aux_sym_variable_tuning_token6] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(309), + [aux_sym_if_statement_token2] = ACTIONS(309), + [aux_sym_else_if_statement_token1] = ACTIONS(309), + [anon_sym_COLON] = ACTIONS(309), + [aux_sym_while_phrase_token1] = ACTIONS(309), + [aux_sym_property_tuning_token1] = ACTIONS(309), + [aux_sym_event_definition_token1] = ACTIONS(309), + [aux_sym_input_stream_tuning_token1] = ACTIONS(309), + [aux_sym_input_stream_tuning_token2] = ACTIONS(309), + [aux_sym_input_stream_tuning_token3] = ACTIONS(309), + [aux_sym_input_stream_tuning_token4] = ACTIONS(309), + [aux_sym_input_stream_tuning_token5] = ACTIONS(309), + [aux_sym_input_stream_tuning_token6] = ACTIONS(309), + [aux_sym_input_stream_tuning_token7] = ACTIONS(309), + [aux_sym_input_stream_tuning_token8] = ACTIONS(309), + [aux_sym_input_stream_tuning_token9] = ACTIONS(309), + [aux_sym_input_stream_tuning_token11] = ACTIONS(309), + [aux_sym_output_stream_tuning_token1] = ACTIONS(309), + [aux_sym_output_stream_tuning_token2] = ACTIONS(309), + [aux_sym_output_stream_tuning_token3] = ACTIONS(309), + [aux_sym_output_stream_tuning_token4] = ACTIONS(309), + [aux_sym_output_stream_tuning_token5] = ACTIONS(309), + [aux_sym_output_stream_tuning_token6] = ACTIONS(309), + [aux_sym_output_stream_tuning_token7] = ACTIONS(309), + [aux_sym_output_stream_tuning_token8] = ACTIONS(309), + [aux_sym_output_stream_statement_token1] = ACTIONS(309), + [aux_sym_on_error_phrase_token1] = ACTIONS(309), + [aux_sym_stop_after_phrase_token1] = ACTIONS(309), + [aux_sym_do_tuning_token1] = ACTIONS(309), + [anon_sym_BY] = ACTIONS(309), + [aux_sym_of_token1] = ACTIONS(309), + [aux_sym_field_definition_token1] = ACTIONS(309), + [aux_sym_index_definition_token1] = ACTIONS(309), + [aux_sym_on_statement_token1] = ACTIONS(309), + [sym__or_operator] = ACTIONS(231), + [sym__and_operator] = ACTIONS(231), + }, + [63] = { + [sym_body] = STATE(3372), + [sym_comment] = STATE(63), + [sym__block_terminator] = STATE(1293), + [sym_include] = STATE(63), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), + [sym__procedure_terminator] = STATE(1293), [sym_procedure_statement] = STATE(1458), [sym_procedure_parameter_definition] = STATE(1458), - [sym__function_terminator] = STATE(1416), [sym_function_statement] = STATE(1458), [sym_return_statement] = STATE(1458), [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -32045,61 +30994,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [66] = { - [sym_body] = STATE(3149), - [sym_comment] = STATE(66), - [sym__block_terminator] = STATE(1316), - [sym_include] = STATE(66), - [sym_assignment] = STATE(4539), + [64] = { + [sym_body] = STATE(3310), + [sym_comment] = STATE(64), + [sym__block_terminator] = STATE(1478), + [sym_include] = STATE(64), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), [sym_procedure_statement] = STATE(1458), [sym_procedure_parameter_definition] = STATE(1458), - [sym__function_terminator] = STATE(1352), + [sym__function_terminator] = STATE(1449), [sym_function_statement] = STATE(1458), [sym_return_statement] = STATE(1458), [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -32120,49 +31069,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [67] = { - [sym_body] = STATE(3543), - [sym_comment] = STATE(67), - [sym__block_terminator] = STATE(1343), - [sym_include] = STATE(67), - [sym_assignment] = STATE(4539), + [65] = { + [sym_body] = STATE(3953), + [sym_comment] = STATE(65), + [sym__block_terminator] = STATE(871), + [sym_include] = STATE(65), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -32173,7 +31122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -32194,49 +31143,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [68] = { - [sym_body] = STATE(3937), - [sym_comment] = STATE(68), - [sym__block_terminator] = STATE(1023), - [sym_include] = STATE(68), - [sym_assignment] = STATE(4539), + [66] = { + [sym_body] = STATE(3882), + [sym_comment] = STATE(66), + [sym__block_terminator] = STATE(1418), + [sym_include] = STATE(66), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -32247,7 +31196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -32268,49 +31217,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [69] = { - [sym_body] = STATE(3547), - [sym_comment] = STATE(69), - [sym__block_terminator] = STATE(1016), - [sym_include] = STATE(69), - [sym_assignment] = STATE(4539), + [67] = { + [sym_body] = STATE(3895), + [sym_comment] = STATE(67), + [sym__block_terminator] = STATE(1270), + [sym_include] = STATE(67), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -32321,7 +31270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -32342,49 +31291,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [70] = { - [sym_body] = STATE(3923), - [sym_comment] = STATE(70), - [sym__block_terminator] = STATE(1309), - [sym_include] = STATE(70), - [sym_assignment] = STATE(4539), + [68] = { + [sym_body] = STATE(3808), + [sym_comment] = STATE(68), + [sym__block_terminator] = STATE(1292), + [sym_include] = STATE(68), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -32395,7 +31344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -32416,49 +31365,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [71] = { - [sym_body] = STATE(3976), - [sym_comment] = STATE(71), - [sym__block_terminator] = STATE(1530), - [sym_include] = STATE(71), - [sym_assignment] = STATE(4539), + [69] = { + [sym_body] = STATE(3788), + [sym_comment] = STATE(69), + [sym__block_terminator] = STATE(1311), + [sym_include] = STATE(69), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -32469,7 +31418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -32490,49 +31439,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [72] = { - [sym_body] = STATE(3897), - [sym_comment] = STATE(72), - [sym__block_terminator] = STATE(1307), - [sym_include] = STATE(72), - [sym_assignment] = STATE(4539), + [70] = { + [sym_body] = STATE(3756), + [sym_comment] = STATE(70), + [sym__block_terminator] = STATE(1245), + [sym_include] = STATE(70), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -32543,7 +31492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -32564,49 +31513,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), + }, + [71] = { + [sym_body] = STATE(3516), + [sym_comment] = STATE(71), + [sym__block_terminator] = STATE(1365), + [sym_include] = STATE(71), + [sym_assignment] = STATE(4550), + [sym_variable_definition] = STATE(1458), + [sym_variable_assignment] = STATE(1458), + [sym_buffer_definition] = STATE(1458), + [sym_query_definition] = STATE(1458), + [sym_function_call_statement] = STATE(1458), + [sym_function_call] = STATE(4603), + [sym_if_statement] = STATE(1458), + [sym_label] = STATE(1459), + [sym_repeat_statement] = STATE(1458), + [sym_procedure_statement] = STATE(1458), + [sym_procedure_parameter_definition] = STATE(1458), + [sym_function_statement] = STATE(1458), + [sym_return_statement] = STATE(1458), + [sym_interface_statement] = STATE(1458), + [sym_using_statement] = STATE(1458), + [sym_class_statement] = STATE(1458), + [sym_object_access] = STATE(4574), + [sym_stream_definition] = STATE(1458), + [sym_input_close_statement] = STATE(1458), + [sym_output_close_statement] = STATE(1458), + [sym__stream_statement] = STATE(1458), + [sym_input_stream_statement] = STATE(1460), + [sym_output_stream_statement] = STATE(1460), + [sym_do_block] = STATE(1458), + [sym_case_statement] = STATE(1458), + [sym_for_statement] = STATE(1458), + [sym_find_statement] = STATE(1458), + [sym_abl_statement] = STATE(1458), + [sym_assign_statement] = STATE(1458), + [sym_catch_statement] = STATE(1458), + [sym_finally_statement] = STATE(1458), + [sym_accumulate_statement] = STATE(1458), + [sym_undo_statement] = STATE(1458), + [sym_error_scope_statement] = STATE(1458), + [sym_temp_table_definition] = STATE(1458), + [sym_on_statement] = STATE(1458), + [sym__statement] = STATE(1461), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), + }, + [72] = { + [sym_body] = STATE(3737), + [sym_comment] = STATE(72), + [sym__block_terminator] = STATE(1375), + [sym_include] = STATE(72), + [sym_assignment] = STATE(4550), + [sym_variable_definition] = STATE(1458), + [sym_variable_assignment] = STATE(1458), + [sym_buffer_definition] = STATE(1458), + [sym_query_definition] = STATE(1458), + [sym_function_call_statement] = STATE(1458), + [sym_function_call] = STATE(4603), + [sym_if_statement] = STATE(1458), + [sym_label] = STATE(1459), + [sym_repeat_statement] = STATE(1458), + [sym_procedure_statement] = STATE(1458), + [sym_procedure_parameter_definition] = STATE(1458), + [sym_function_statement] = STATE(1458), + [sym_return_statement] = STATE(1458), + [sym_interface_statement] = STATE(1458), + [sym_using_statement] = STATE(1458), + [sym_class_statement] = STATE(1458), + [sym_object_access] = STATE(4574), + [sym_stream_definition] = STATE(1458), + [sym_input_close_statement] = STATE(1458), + [sym_output_close_statement] = STATE(1458), + [sym__stream_statement] = STATE(1458), + [sym_input_stream_statement] = STATE(1460), + [sym_output_stream_statement] = STATE(1460), + [sym_do_block] = STATE(1458), + [sym_case_statement] = STATE(1458), + [sym_for_statement] = STATE(1458), + [sym_find_statement] = STATE(1458), + [sym_abl_statement] = STATE(1458), + [sym_assign_statement] = STATE(1458), + [sym_catch_statement] = STATE(1458), + [sym_finally_statement] = STATE(1458), + [sym_accumulate_statement] = STATE(1458), + [sym_undo_statement] = STATE(1458), + [sym_error_scope_statement] = STATE(1458), + [sym_temp_table_definition] = STATE(1458), + [sym_on_statement] = STATE(1458), + [sym__statement] = STATE(1461), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [73] = { - [sym_body] = STATE(3515), + [sym_body] = STATE(3967), [sym_comment] = STATE(73), - [sym__block_terminator] = STATE(1015), + [sym__block_terminator] = STATE(1388), [sym_include] = STATE(73), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -32617,7 +31714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -32638,49 +31735,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [74] = { - [sym_body] = STATE(3540), + [sym_body] = STATE(4005), [sym_comment] = STATE(74), - [sym__block_terminator] = STATE(1014), + [sym__block_terminator] = STATE(1398), [sym_include] = STATE(74), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -32691,7 +31788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -32712,49 +31809,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [75] = { - [sym_body] = STATE(3542), + [sym_body] = STATE(3503), [sym_comment] = STATE(75), - [sym__block_terminator] = STATE(1013), + [sym__block_terminator] = STATE(1499), [sym_include] = STATE(75), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -32765,7 +31862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -32786,49 +31883,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [76] = { - [sym_body] = STATE(3852), + [sym_body] = STATE(3637), [sym_comment] = STATE(76), - [sym__block_terminator] = STATE(1549), + [sym__block_terminator] = STATE(1484), [sym_include] = STATE(76), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -32839,7 +31936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -32860,49 +31957,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [77] = { - [sym_body] = STATE(3546), + [sym_body] = STATE(3724), [sym_comment] = STATE(77), - [sym__block_terminator] = STATE(1041), + [sym__block_terminator] = STATE(1192), [sym_include] = STATE(77), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -32913,7 +32010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -32934,49 +32031,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [78] = { - [sym_body] = STATE(3661), + [sym_body] = STATE(3703), [sym_comment] = STATE(78), - [sym__block_terminator] = STATE(1451), + [sym__block_terminator] = STATE(1181), [sym_include] = STATE(78), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -32987,7 +32084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -33008,123 +32105,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [79] = { + [sym_body] = STATE(4003), [sym_comment] = STATE(79), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym__block_terminator] = STATE(1374), [sym_include] = STATE(79), - [sym__function_call_arguments] = STATE(4551), - [sym_argument_mode] = STATE(4219), - [sym__function_argument_with_mode] = STATE(3603), - [sym_function_call_argument] = STATE(3485), - [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(3148), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(849), - [sym_identifier] = ACTIONS(325), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(341), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(345), - [aux_sym_ambiguous_expression_token1] = ACTIONS(347), - [aux_sym_current_changed_expression_token1] = ACTIONS(349), - [aux_sym_locked_expression_token1] = ACTIONS(351), - [aux_sym_input_expression_token1] = ACTIONS(353), - [aux_sym_scope_tuning_token1] = ACTIONS(355), - [aux_sym_argument_mode_token1] = ACTIONS(357), - [aux_sym_argument_mode_token2] = ACTIONS(357), - [aux_sym_if_statement_token1] = ACTIONS(359), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(363), - [aux_sym_accumulate_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), - }, - [80] = { - [sym_body] = STATE(3536), - [sym_comment] = STATE(80), - [sym__block_terminator] = STATE(1336), - [sym_include] = STATE(80), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -33135,7 +32158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -33156,49 +32179,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [81] = { - [sym_body] = STATE(3986), - [sym_comment] = STATE(81), - [sym__block_terminator] = STATE(1500), - [sym_include] = STATE(81), - [sym_assignment] = STATE(4539), + [80] = { + [sym_body] = STATE(3826), + [sym_comment] = STATE(80), + [sym__block_terminator] = STATE(1255), + [sym_include] = STATE(80), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -33209,7 +32232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -33230,123 +32253,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), - }, - [82] = { - [sym_comment] = STATE(82), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), - [sym_include] = STATE(82), - [sym__function_call_arguments] = STATE(4551), - [sym_argument_mode] = STATE(4219), - [sym__function_argument_with_mode] = STATE(3603), - [sym_function_call_argument] = STATE(3485), - [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(3233), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(849), - [sym_identifier] = ACTIONS(325), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(341), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(345), - [aux_sym_ambiguous_expression_token1] = ACTIONS(347), - [aux_sym_current_changed_expression_token1] = ACTIONS(349), - [aux_sym_locked_expression_token1] = ACTIONS(351), - [aux_sym_input_expression_token1] = ACTIONS(353), - [aux_sym_scope_tuning_token1] = ACTIONS(355), - [aux_sym_argument_mode_token1] = ACTIONS(357), - [aux_sym_argument_mode_token2] = ACTIONS(357), - [aux_sym_if_statement_token1] = ACTIONS(359), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(363), - [aux_sym_accumulate_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [83] = { - [sym_body] = STATE(3844), - [sym_comment] = STATE(83), - [sym__block_terminator] = STATE(1297), - [sym_include] = STATE(83), - [sym_assignment] = STATE(4539), + [81] = { + [sym_body] = STATE(3853), + [sym_comment] = STATE(81), + [sym__block_terminator] = STATE(1266), + [sym_include] = STATE(81), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -33357,7 +32306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -33378,123 +32327,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), - }, - [84] = { - [sym_comment] = STATE(84), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), - [sym_include] = STATE(84), - [sym__function_call_arguments] = STATE(4551), - [sym_argument_mode] = STATE(4219), - [sym__function_argument_with_mode] = STATE(3603), - [sym_function_call_argument] = STATE(3485), - [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(3335), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(849), - [sym_identifier] = ACTIONS(325), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(341), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(345), - [aux_sym_ambiguous_expression_token1] = ACTIONS(347), - [aux_sym_current_changed_expression_token1] = ACTIONS(349), - [aux_sym_locked_expression_token1] = ACTIONS(351), - [aux_sym_input_expression_token1] = ACTIONS(353), - [aux_sym_scope_tuning_token1] = ACTIONS(355), - [aux_sym_argument_mode_token1] = ACTIONS(357), - [aux_sym_argument_mode_token2] = ACTIONS(357), - [aux_sym_if_statement_token1] = ACTIONS(359), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(363), - [aux_sym_accumulate_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [85] = { - [sym_body] = STATE(3528), - [sym_comment] = STATE(85), - [sym__block_terminator] = STATE(1151), - [sym_include] = STATE(85), - [sym_assignment] = STATE(4539), + [82] = { + [sym_body] = STATE(3897), + [sym_comment] = STATE(82), + [sym__block_terminator] = STATE(1280), + [sym_include] = STATE(82), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -33505,7 +32380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -33526,49 +32401,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [86] = { - [sym_body] = STATE(3776), - [sym_comment] = STATE(86), - [sym__block_terminator] = STATE(1327), - [sym_include] = STATE(86), - [sym_assignment] = STATE(4539), + [83] = { + [sym_body] = STATE(3664), + [sym_comment] = STATE(83), + [sym__block_terminator] = STATE(1196), + [sym_include] = STATE(83), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -33579,7 +32454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -33600,123 +32475,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), - }, - [87] = { - [sym_comment] = STATE(87), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), - [sym_include] = STATE(87), - [sym__function_call_arguments] = STATE(4551), - [sym_argument_mode] = STATE(4219), - [sym__function_argument_with_mode] = STATE(3603), - [sym_function_call_argument] = STATE(3485), - [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(3480), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(849), - [sym_identifier] = ACTIONS(325), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(341), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(345), - [aux_sym_ambiguous_expression_token1] = ACTIONS(347), - [aux_sym_current_changed_expression_token1] = ACTIONS(349), - [aux_sym_locked_expression_token1] = ACTIONS(351), - [aux_sym_input_expression_token1] = ACTIONS(353), - [aux_sym_scope_tuning_token1] = ACTIONS(355), - [aux_sym_argument_mode_token1] = ACTIONS(357), - [aux_sym_argument_mode_token2] = ACTIONS(357), - [aux_sym_if_statement_token1] = ACTIONS(359), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(363), - [aux_sym_accumulate_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [88] = { - [sym_body] = STATE(3537), - [sym_comment] = STATE(88), - [sym__block_terminator] = STATE(1153), - [sym_include] = STATE(88), - [sym_assignment] = STATE(4539), + [84] = { + [sym_body] = STATE(3607), + [sym_comment] = STATE(84), + [sym__block_terminator] = STATE(1173), + [sym_include] = STATE(84), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -33727,7 +32528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -33748,49 +32549,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [89] = { - [sym_body] = STATE(3758), - [sym_comment] = STATE(89), - [sym__block_terminator] = STATE(1556), - [sym_include] = STATE(89), - [sym_assignment] = STATE(4539), + [85] = { + [sym_body] = STATE(3625), + [sym_comment] = STATE(85), + [sym__block_terminator] = STATE(1114), + [sym_include] = STATE(85), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -33801,7 +32602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -33822,49 +32623,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [90] = { - [sym_body] = STATE(3999), - [sym_comment] = STATE(90), - [sym__block_terminator] = STATE(1477), - [sym_include] = STATE(90), - [sym_assignment] = STATE(4539), + [86] = { + [sym_body] = STATE(3511), + [sym_comment] = STATE(86), + [sym__block_terminator] = STATE(1511), + [sym_include] = STATE(86), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -33875,7 +32676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -33896,49 +32697,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [91] = { - [sym_body] = STATE(3752), - [sym_comment] = STATE(91), - [sym__block_terminator] = STATE(1339), - [sym_include] = STATE(91), - [sym_assignment] = STATE(4539), + [87] = { + [sym_body] = STATE(3539), + [sym_comment] = STATE(87), + [sym__block_terminator] = STATE(1514), + [sym_include] = STATE(87), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -33949,7 +32750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -33970,49 +32771,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [92] = { - [sym_body] = STATE(3751), - [sym_comment] = STATE(92), - [sym__block_terminator] = STATE(1497), - [sym_include] = STATE(92), - [sym_assignment] = STATE(4539), + [88] = { + [sym_comment] = STATE(88), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), + [sym_include] = STATE(88), + [sym__function_call_arguments] = STATE(4025), + [sym_argument_mode] = STATE(4089), + [sym__function_argument_with_mode] = STATE(3838), + [sym_function_call_argument] = STATE(3346), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_can_find_expression] = STATE(18), + [sym_accumulate_aggregate] = STATE(3162), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(1080), + [sym_identifier] = ACTIONS(317), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(333), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(337), + [aux_sym_ambiguous_expression_token1] = ACTIONS(339), + [aux_sym_current_changed_expression_token1] = ACTIONS(341), + [aux_sym_locked_expression_token1] = ACTIONS(343), + [aux_sym_input_expression_token1] = ACTIONS(345), + [aux_sym_scope_tuning_token1] = ACTIONS(347), + [aux_sym_argument_mode_token1] = ACTIONS(349), + [aux_sym_argument_mode_token2] = ACTIONS(349), + [aux_sym_if_statement_token1] = ACTIONS(351), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(355), + [aux_sym_accumulate_expression_token1] = ACTIONS(357), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + }, + [89] = { + [sym_body] = STATE(3710), + [sym_comment] = STATE(89), + [sym__block_terminator] = STATE(1308), + [sym_include] = STATE(89), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -34023,7 +32898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -34044,49 +32919,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [93] = { - [sym_body] = STATE(4021), - [sym_comment] = STATE(93), - [sym__block_terminator] = STATE(1442), - [sym_include] = STATE(93), - [sym_assignment] = STATE(4539), + [90] = { + [sym_comment] = STATE(90), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), + [sym_include] = STATE(90), + [sym__function_call_arguments] = STATE(4025), + [sym_argument_mode] = STATE(4089), + [sym__function_argument_with_mode] = STATE(3838), + [sym_function_call_argument] = STATE(3346), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_can_find_expression] = STATE(18), + [sym_accumulate_aggregate] = STATE(3252), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(1080), + [sym_identifier] = ACTIONS(317), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(333), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(337), + [aux_sym_ambiguous_expression_token1] = ACTIONS(339), + [aux_sym_current_changed_expression_token1] = ACTIONS(341), + [aux_sym_locked_expression_token1] = ACTIONS(343), + [aux_sym_input_expression_token1] = ACTIONS(345), + [aux_sym_scope_tuning_token1] = ACTIONS(347), + [aux_sym_argument_mode_token1] = ACTIONS(349), + [aux_sym_argument_mode_token2] = ACTIONS(349), + [aux_sym_if_statement_token1] = ACTIONS(351), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(355), + [aux_sym_accumulate_expression_token1] = ACTIONS(357), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + }, + [91] = { + [sym_body] = STATE(3790), + [sym_comment] = STATE(91), + [sym__block_terminator] = STATE(1267), + [sym_include] = STATE(91), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -34097,7 +33046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -34118,49 +33067,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [94] = { - [sym_body] = STATE(3596), - [sym_comment] = STATE(94), - [sym__block_terminator] = STATE(1177), - [sym_include] = STATE(94), - [sym_assignment] = STATE(4539), + [92] = { + [sym_body] = STATE(3954), + [sym_comment] = STATE(92), + [sym__block_terminator] = STATE(1228), + [sym_include] = STATE(92), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -34171,7 +33120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -34192,49 +33141,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), + }, + [93] = { + [sym_body] = STATE(3993), + [sym_comment] = STATE(93), + [sym__block_terminator] = STATE(1215), + [sym_include] = STATE(93), + [sym_assignment] = STATE(4550), + [sym_variable_definition] = STATE(1458), + [sym_variable_assignment] = STATE(1458), + [sym_buffer_definition] = STATE(1458), + [sym_query_definition] = STATE(1458), + [sym_function_call_statement] = STATE(1458), + [sym_function_call] = STATE(4603), + [sym_if_statement] = STATE(1458), + [sym_label] = STATE(1459), + [sym_repeat_statement] = STATE(1458), + [sym_procedure_statement] = STATE(1458), + [sym_procedure_parameter_definition] = STATE(1458), + [sym_function_statement] = STATE(1458), + [sym_return_statement] = STATE(1458), + [sym_interface_statement] = STATE(1458), + [sym_using_statement] = STATE(1458), + [sym_class_statement] = STATE(1458), + [sym_object_access] = STATE(4574), + [sym_stream_definition] = STATE(1458), + [sym_input_close_statement] = STATE(1458), + [sym_output_close_statement] = STATE(1458), + [sym__stream_statement] = STATE(1458), + [sym_input_stream_statement] = STATE(1460), + [sym_output_stream_statement] = STATE(1460), + [sym_do_block] = STATE(1458), + [sym_case_statement] = STATE(1458), + [sym_for_statement] = STATE(1458), + [sym_find_statement] = STATE(1458), + [sym_abl_statement] = STATE(1458), + [sym_assign_statement] = STATE(1458), + [sym_catch_statement] = STATE(1458), + [sym_finally_statement] = STATE(1458), + [sym_accumulate_statement] = STATE(1458), + [sym_undo_statement] = STATE(1458), + [sym_error_scope_statement] = STATE(1458), + [sym_temp_table_definition] = STATE(1458), + [sym_on_statement] = STATE(1458), + [sym__statement] = STATE(1461), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), + }, + [94] = { + [sym_body] = STATE(3880), + [sym_comment] = STATE(94), + [sym__block_terminator] = STATE(1199), + [sym_include] = STATE(94), + [sym_assignment] = STATE(4550), + [sym_variable_definition] = STATE(1458), + [sym_variable_assignment] = STATE(1458), + [sym_buffer_definition] = STATE(1458), + [sym_query_definition] = STATE(1458), + [sym_function_call_statement] = STATE(1458), + [sym_function_call] = STATE(4603), + [sym_if_statement] = STATE(1458), + [sym_label] = STATE(1459), + [sym_repeat_statement] = STATE(1458), + [sym_procedure_statement] = STATE(1458), + [sym_procedure_parameter_definition] = STATE(1458), + [sym_function_statement] = STATE(1458), + [sym_return_statement] = STATE(1458), + [sym_interface_statement] = STATE(1458), + [sym_using_statement] = STATE(1458), + [sym_class_statement] = STATE(1458), + [sym_object_access] = STATE(4574), + [sym_stream_definition] = STATE(1458), + [sym_input_close_statement] = STATE(1458), + [sym_output_close_statement] = STATE(1458), + [sym__stream_statement] = STATE(1458), + [sym_input_stream_statement] = STATE(1460), + [sym_output_stream_statement] = STATE(1460), + [sym_do_block] = STATE(1458), + [sym_case_statement] = STATE(1458), + [sym_for_statement] = STATE(1458), + [sym_find_statement] = STATE(1458), + [sym_abl_statement] = STATE(1458), + [sym_assign_statement] = STATE(1458), + [sym_catch_statement] = STATE(1458), + [sym_finally_statement] = STATE(1458), + [sym_accumulate_statement] = STATE(1458), + [sym_undo_statement] = STATE(1458), + [sym_error_scope_statement] = STATE(1458), + [sym_temp_table_definition] = STATE(1458), + [sym_on_statement] = STATE(1458), + [sym__statement] = STATE(1461), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [95] = { - [sym_body] = STATE(3625), + [sym_body] = STATE(3728), [sym_comment] = STATE(95), - [sym__block_terminator] = STATE(1179), + [sym__block_terminator] = STATE(1188), [sym_include] = STATE(95), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -34245,7 +33342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -34266,49 +33363,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [96] = { - [sym_body] = STATE(3545), + [sym_body] = STATE(3565), [sym_comment] = STATE(96), - [sym__block_terminator] = STATE(1018), + [sym__block_terminator] = STATE(1157), [sym_include] = STATE(96), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -34319,7 +33416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -34340,49 +33437,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [97] = { - [sym_body] = STATE(3674), + [sym_body] = STATE(3500), [sym_comment] = STATE(97), - [sym__block_terminator] = STATE(1468), + [sym__block_terminator] = STATE(1151), [sym_include] = STATE(97), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -34393,7 +33490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -34414,49 +33511,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [98] = { - [sym_body] = STATE(3889), + [sym_body] = STATE(3832), [sym_comment] = STATE(98), - [sym__block_terminator] = STATE(1411), + [sym__block_terminator] = STATE(1377), [sym_include] = STATE(98), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -34467,7 +33564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -34488,49 +33585,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [99] = { [sym_body] = STATE(3517), [sym_comment] = STATE(99), - [sym__block_terminator] = STATE(1328), + [sym__block_terminator] = STATE(1125), [sym_include] = STATE(99), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -34541,7 +33638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -34562,49 +33659,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [100] = { - [sym_body] = STATE(3626), + [sym_body] = STATE(3531), [sym_comment] = STATE(100), - [sym__block_terminator] = STATE(1019), + [sym__block_terminator] = STATE(1359), [sym_include] = STATE(100), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -34615,7 +33712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -34636,49 +33733,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [101] = { - [sym_body] = STATE(3631), + [sym_body] = STATE(3589), [sym_comment] = STATE(101), - [sym__block_terminator] = STATE(1020), + [sym__block_terminator] = STATE(1519), [sym_include] = STATE(101), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -34689,7 +33786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -34710,49 +33807,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [102] = { - [sym_body] = STATE(3665), + [sym_body] = STATE(3606), [sym_comment] = STATE(102), - [sym__block_terminator] = STATE(1227), + [sym__block_terminator] = STATE(1504), [sym_include] = STATE(102), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -34763,7 +33860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -34784,49 +33881,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [103] = { - [sym_body] = STATE(3668), + [sym_body] = STATE(3648), [sym_comment] = STATE(103), - [sym__block_terminator] = STATE(1231), + [sym__block_terminator] = STATE(1501), [sym_include] = STATE(103), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -34837,7 +33934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -34858,49 +33955,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [104] = { - [sym_body] = STATE(3570), + [sym_body] = STATE(3678), [sym_comment] = STATE(104), - [sym__block_terminator] = STATE(1383), + [sym__block_terminator] = STATE(1495), [sym_include] = STATE(104), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -34911,7 +34008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -34932,49 +34029,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [105] = { - [sym_body] = STATE(3576), + [sym_body] = STATE(3711), [sym_comment] = STATE(105), - [sym__block_terminator] = STATE(1387), + [sym__block_terminator] = STATE(1485), [sym_include] = STATE(105), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -34985,7 +34082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -35006,49 +34103,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [106] = { - [sym_body] = STATE(3632), + [sym_body] = STATE(3721), [sym_comment] = STATE(106), - [sym__block_terminator] = STATE(1024), + [sym__block_terminator] = STATE(1483), [sym_include] = STATE(106), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -35059,7 +34156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -35080,49 +34177,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [107] = { - [sym_body] = STATE(3880), + [sym_body] = STATE(3749), [sym_comment] = STATE(107), - [sym__block_terminator] = STATE(1393), + [sym__block_terminator] = STATE(1469), [sym_include] = STATE(107), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -35133,7 +34230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -35154,49 +34251,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [108] = { - [sym_body] = STATE(3614), + [sym_body] = STATE(3764), [sym_comment] = STATE(108), - [sym__block_terminator] = STATE(1414), + [sym__block_terminator] = STATE(1465), [sym_include] = STATE(108), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -35207,7 +34304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -35228,49 +34325,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [109] = { - [sym_body] = STATE(3977), + [sym_body] = STATE(3785), [sym_comment] = STATE(109), - [sym__block_terminator] = STATE(1382), + [sym__block_terminator] = STATE(1453), [sym_include] = STATE(109), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -35281,7 +34378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -35302,49 +34399,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [110] = { - [sym_body] = STATE(3762), + [sym_body] = STATE(3806), [sym_comment] = STATE(110), - [sym__block_terminator] = STATE(1026), + [sym__block_terminator] = STATE(1444), [sym_include] = STATE(110), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -35355,7 +34452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -35376,49 +34473,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [111] = { - [sym_body] = STATE(3616), + [sym_body] = STATE(3929), [sym_comment] = STATE(111), - [sym__block_terminator] = STATE(1417), + [sym__block_terminator] = STATE(1452), [sym_include] = STATE(111), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -35429,7 +34526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -35450,49 +34547,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [112] = { - [sym_body] = STATE(3879), + [sym_body] = STATE(3823), [sym_comment] = STATE(112), - [sym__block_terminator] = STATE(1400), + [sym__block_terminator] = STATE(1447), [sym_include] = STATE(112), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -35503,7 +34600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -35524,49 +34621,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [113] = { - [sym_body] = STATE(3648), + [sym_body] = STATE(3944), [sym_comment] = STATE(113), - [sym__block_terminator] = STATE(1028), + [sym__block_terminator] = STATE(1208), [sym_include] = STATE(113), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -35577,7 +34674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -35598,49 +34695,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [114] = { - [sym_body] = STATE(3956), + [sym_body] = STATE(3834), [sym_comment] = STATE(114), - [sym__block_terminator] = STATE(1368), + [sym__block_terminator] = STATE(1440), [sym_include] = STATE(114), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -35651,7 +34748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -35672,49 +34769,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [115] = { - [sym_body] = STATE(3935), + [sym_body] = STATE(3843), [sym_comment] = STATE(115), - [sym__block_terminator] = STATE(1351), + [sym__block_terminator] = STATE(1431), [sym_include] = STATE(115), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -35725,7 +34822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -35746,49 +34843,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [116] = { - [sym_body] = STATE(3695), + [sym_body] = STATE(3848), [sym_comment] = STATE(116), - [sym__block_terminator] = STATE(1239), + [sym__block_terminator] = STATE(1426), [sym_include] = STATE(116), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -35799,7 +34896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -35820,49 +34917,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [117] = { - [sym_body] = STATE(3650), + [sym_body] = STATE(3854), [sym_comment] = STATE(117), - [sym__block_terminator] = STATE(1031), + [sym__block_terminator] = STATE(1423), [sym_include] = STATE(117), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -35873,7 +34970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -35894,49 +34991,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [118] = { - [sym_body] = STATE(3978), + [sym_body] = STATE(3554), [sym_comment] = STATE(118), - [sym__block_terminator] = STATE(1607), + [sym__block_terminator] = STATE(1367), [sym_include] = STATE(118), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -35947,7 +35044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -35968,49 +35065,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [119] = { - [sym_body] = STATE(3910), + [sym_body] = STATE(3868), [sym_comment] = STATE(119), - [sym__block_terminator] = STATE(1319), + [sym__block_terminator] = STATE(1421), [sym_include] = STATE(119), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -36021,7 +35118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -36042,49 +35139,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [120] = { - [sym_body] = STATE(3652), + [sym_body] = STATE(3876), [sym_comment] = STATE(120), - [sym__block_terminator] = STATE(1027), + [sym__block_terminator] = STATE(1420), [sym_include] = STATE(120), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -36095,7 +35192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -36116,49 +35213,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [121] = { - [sym_body] = STATE(3654), + [sym_body] = STATE(3877), [sym_comment] = STATE(121), - [sym__block_terminator] = STATE(1032), + [sym__block_terminator] = STATE(1419), [sym_include] = STATE(121), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -36169,7 +35266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -36190,49 +35287,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [122] = { - [sym_body] = STATE(3659), + [sym_body] = STATE(3899), [sym_comment] = STATE(122), - [sym__block_terminator] = STATE(1033), + [sym__block_terminator] = STATE(1412), [sym_include] = STATE(122), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -36243,7 +35340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -36264,49 +35361,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [123] = { - [sym_body] = STATE(3513), + [sym_body] = STATE(3909), [sym_comment] = STATE(123), - [sym__block_terminator] = STATE(1511), + [sym__block_terminator] = STATE(1411), [sym_include] = STATE(123), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -36317,7 +35414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -36338,49 +35435,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [124] = { - [sym_body] = STATE(3660), + [sym_body] = STATE(3915), [sym_comment] = STATE(124), - [sym__block_terminator] = STATE(1035), + [sym__block_terminator] = STATE(1409), [sym_include] = STATE(124), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -36391,7 +35488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -36412,49 +35509,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [125] = { - [sym_body] = STATE(3511), + [sym_body] = STATE(3985), [sym_comment] = STATE(125), - [sym__block_terminator] = STATE(1514), + [sym__block_terminator] = STATE(966), [sym_include] = STATE(125), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -36465,7 +35562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -36486,49 +35583,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [126] = { - [sym_body] = STATE(3662), + [sym_body] = STATE(3971), [sym_comment] = STATE(126), - [sym__block_terminator] = STATE(1038), + [sym__block_terminator] = STATE(964), [sym_include] = STATE(126), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -36539,7 +35636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -36560,49 +35657,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [127] = { - [sym_body] = STATE(3663), + [sym_body] = STATE(3747), [sym_comment] = STATE(127), - [sym__block_terminator] = STATE(1039), + [sym__block_terminator] = STATE(944), [sym_include] = STATE(127), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -36613,7 +35710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -36634,49 +35731,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [128] = { - [sym_body] = STATE(3664), + [sym_body] = STATE(3844), [sym_comment] = STATE(128), - [sym__block_terminator] = STATE(1538), + [sym__block_terminator] = STATE(942), [sym_include] = STATE(128), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -36687,7 +35784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -36708,123 +35805,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [129] = { - [sym_body] = STATE(3697), [sym_comment] = STATE(129), - [sym__block_terminator] = STATE(1546), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(129), - [sym_assignment] = STATE(4539), - [sym_variable_definition] = STATE(1458), - [sym_variable_assignment] = STATE(1458), - [sym_buffer_definition] = STATE(1458), - [sym_query_definition] = STATE(1458), - [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), - [sym_if_statement] = STATE(1458), - [sym_label] = STATE(1459), - [sym_repeat_statement] = STATE(1458), - [sym_procedure_statement] = STATE(1458), - [sym_procedure_parameter_definition] = STATE(1458), - [sym_function_statement] = STATE(1458), - [sym_return_statement] = STATE(1458), - [sym_interface_statement] = STATE(1458), - [sym_using_statement] = STATE(1458), - [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), - [sym_stream_definition] = STATE(1458), - [sym_input_close_statement] = STATE(1458), - [sym_output_close_statement] = STATE(1458), - [sym__stream_statement] = STATE(1458), - [sym_input_stream_statement] = STATE(1460), - [sym_output_stream_statement] = STATE(1460), - [sym_do_block] = STATE(1458), - [sym_case_statement] = STATE(1458), - [sym_for_statement] = STATE(1458), - [sym_find_statement] = STATE(1458), - [sym_abl_statement] = STATE(1458), - [sym_assign_statement] = STATE(1458), - [sym_catch_statement] = STATE(1458), - [sym_finally_statement] = STATE(1458), - [sym_accumulate_statement] = STATE(1458), - [sym_undo_statement] = STATE(1458), - [sym_error_scope_statement] = STATE(1458), - [sym_temp_table_definition] = STATE(1458), - [sym_on_statement] = STATE(1458), - [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [sym__function_call_arguments] = STATE(4025), + [sym_argument_mode] = STATE(4089), + [sym__function_argument_with_mode] = STATE(3838), + [sym_function_call_argument] = STATE(3346), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_can_find_expression] = STATE(18), + [sym_accumulate_aggregate] = STATE(3340), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(1080), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(333), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(337), + [aux_sym_ambiguous_expression_token1] = ACTIONS(339), + [aux_sym_current_changed_expression_token1] = ACTIONS(341), + [aux_sym_locked_expression_token1] = ACTIONS(343), + [aux_sym_input_expression_token1] = ACTIONS(345), + [aux_sym_scope_tuning_token1] = ACTIONS(347), + [aux_sym_argument_mode_token1] = ACTIONS(349), + [aux_sym_argument_mode_token2] = ACTIONS(349), + [aux_sym_if_statement_token1] = ACTIONS(351), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(355), + [aux_sym_accumulate_expression_token1] = ACTIONS(357), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [130] = { - [sym_body] = STATE(3754), + [sym_body] = STATE(3745), [sym_comment] = STATE(130), - [sym__block_terminator] = STATE(1251), + [sym__block_terminator] = STATE(929), [sym_include] = STATE(130), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -36835,7 +35932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -36856,49 +35953,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [131] = { - [sym_body] = STATE(3666), + [sym_body] = STATE(3734), [sym_comment] = STATE(131), - [sym__block_terminator] = STATE(1042), + [sym__block_terminator] = STATE(924), [sym_include] = STATE(131), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -36909,7 +36006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -36930,49 +36027,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [132] = { - [sym_body] = STATE(3759), + [sym_body] = STATE(3697), [sym_comment] = STATE(132), - [sym__block_terminator] = STATE(1253), + [sym__block_terminator] = STATE(918), [sym_include] = STATE(132), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -36983,7 +36080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -37004,49 +36101,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [133] = { - [sym_body] = STATE(3725), + [sym_body] = STATE(3994), [sym_comment] = STATE(133), - [sym__block_terminator] = STATE(1565), + [sym__block_terminator] = STATE(3182), [sym_include] = STATE(133), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -37057,7 +36154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -37078,49 +36175,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [134] = { - [sym_body] = STATE(3731), + [sym_body] = STATE(4002), [sym_comment] = STATE(134), - [sym__block_terminator] = STATE(1575), + [sym__block_terminator] = STATE(1343), [sym_include] = STATE(134), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -37131,7 +36228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -37152,49 +36249,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [135] = { - [sym_body] = STATE(3748), + [sym_body] = STATE(3575), [sym_comment] = STATE(135), - [sym__block_terminator] = STATE(1586), + [sym__block_terminator] = STATE(910), [sym_include] = STATE(135), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -37205,7 +36302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -37226,49 +36323,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [136] = { - [sym_body] = STATE(3592), + [sym_body] = STATE(3560), [sym_comment] = STATE(136), - [sym__block_terminator] = STATE(1046), + [sym__block_terminator] = STATE(908), [sym_include] = STATE(136), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -37279,7 +36376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -37300,123 +36397,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [137] = { + [sym_body] = STATE(3532), [sym_comment] = STATE(137), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym__block_terminator] = STATE(903), [sym_include] = STATE(137), - [sym__function_call_arguments] = STATE(4551), - [sym_argument_mode] = STATE(4219), - [sym__function_argument_with_mode] = STATE(3603), - [sym_function_call_argument] = STATE(3485), - [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(3399), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(849), - [sym_identifier] = ACTIONS(325), + [sym_assignment] = STATE(4550), + [sym_variable_definition] = STATE(1458), + [sym_variable_assignment] = STATE(1458), + [sym_buffer_definition] = STATE(1458), + [sym_query_definition] = STATE(1458), + [sym_function_call_statement] = STATE(1458), + [sym_function_call] = STATE(4603), + [sym_if_statement] = STATE(1458), + [sym_label] = STATE(1459), + [sym_repeat_statement] = STATE(1458), + [sym_procedure_statement] = STATE(1458), + [sym_procedure_parameter_definition] = STATE(1458), + [sym_function_statement] = STATE(1458), + [sym_return_statement] = STATE(1458), + [sym_interface_statement] = STATE(1458), + [sym_using_statement] = STATE(1458), + [sym_class_statement] = STATE(1458), + [sym_object_access] = STATE(4574), + [sym_stream_definition] = STATE(1458), + [sym_input_close_statement] = STATE(1458), + [sym_output_close_statement] = STATE(1458), + [sym__stream_statement] = STATE(1458), + [sym_input_stream_statement] = STATE(1460), + [sym_output_stream_statement] = STATE(1460), + [sym_do_block] = STATE(1458), + [sym_case_statement] = STATE(1458), + [sym_for_statement] = STATE(1458), + [sym_find_statement] = STATE(1458), + [sym_abl_statement] = STATE(1458), + [sym_assign_statement] = STATE(1458), + [sym_catch_statement] = STATE(1458), + [sym_finally_statement] = STATE(1458), + [sym_accumulate_statement] = STATE(1458), + [sym_undo_statement] = STATE(1458), + [sym_error_scope_statement] = STATE(1458), + [sym_temp_table_definition] = STATE(1458), + [sym_on_statement] = STATE(1458), + [sym__statement] = STATE(1461), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(341), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(345), - [aux_sym_ambiguous_expression_token1] = ACTIONS(347), - [aux_sym_current_changed_expression_token1] = ACTIONS(349), - [aux_sym_locked_expression_token1] = ACTIONS(351), - [aux_sym_input_expression_token1] = ACTIONS(353), - [aux_sym_scope_tuning_token1] = ACTIONS(355), - [aux_sym_argument_mode_token1] = ACTIONS(357), - [aux_sym_argument_mode_token2] = ACTIONS(357), - [aux_sym_if_statement_token1] = ACTIONS(359), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(363), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(363), - [aux_sym_accumulate_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [138] = { - [sym_body] = STATE(3769), + [sym_body] = STATE(3541), [sym_comment] = STATE(138), - [sym__block_terminator] = STATE(1258), + [sym__block_terminator] = STATE(898), [sym_include] = STATE(138), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -37427,7 +36524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -37448,49 +36545,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [139] = { - [sym_body] = STATE(3639), + [sym_body] = STATE(3613), [sym_comment] = STATE(139), - [sym__block_terminator] = STATE(1436), + [sym__block_terminator] = STATE(894), [sym_include] = STATE(139), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -37501,7 +36598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -37522,49 +36619,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [140] = { - [sym_body] = STATE(3781), + [sym_body] = STATE(3621), [sym_comment] = STATE(140), - [sym__block_terminator] = STATE(1263), + [sym__block_terminator] = STATE(892), [sym_include] = STATE(140), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -37575,7 +36672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -37596,49 +36693,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [141] = { - [sym_body] = STATE(3692), + [sym_body] = STATE(3695), [sym_comment] = STATE(141), - [sym__block_terminator] = STATE(1049), + [sym__block_terminator] = STATE(889), [sym_include] = STATE(141), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -37649,7 +36746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -37670,49 +36767,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [142] = { - [sym_body] = STATE(3820), + [sym_body] = STATE(3751), [sym_comment] = STATE(142), - [sym__block_terminator] = STATE(1275), + [sym__block_terminator] = STATE(885), [sym_include] = STATE(142), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -37723,7 +36820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -37744,49 +36841,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [143] = { - [sym_body] = STATE(3827), + [sym_body] = STATE(3791), [sym_comment] = STATE(143), - [sym__block_terminator] = STATE(1277), + [sym__block_terminator] = STATE(882), [sym_include] = STATE(143), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -37797,7 +36894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -37818,49 +36915,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [144] = { - [sym_body] = STATE(3699), + [sym_body] = STATE(3636), [sym_comment] = STATE(144), - [sym__block_terminator] = STATE(1051), + [sym__block_terminator] = STATE(3392), [sym_include] = STATE(144), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -37871,7 +36968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -37892,49 +36989,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [145] = { - [sym_body] = STATE(3763), + [sym_body] = STATE(3647), [sym_comment] = STATE(145), - [sym__block_terminator] = STATE(1605), + [sym__block_terminator] = STATE(3396), [sym_include] = STATE(145), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -37945,7 +37042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -37966,49 +37063,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [146] = { - [sym_body] = STATE(3847), + [sym_body] = STATE(3649), [sym_comment] = STATE(146), - [sym__block_terminator] = STATE(1280), + [sym__block_terminator] = STATE(3402), [sym_include] = STATE(146), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -38019,7 +37116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -38040,49 +37137,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [147] = { - [sym_body] = STATE(3851), + [sym_body] = STATE(3872), [sym_comment] = STATE(147), - [sym__block_terminator] = STATE(1193), + [sym__block_terminator] = STATE(881), [sym_include] = STATE(147), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -38093,7 +37190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -38114,49 +37211,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [148] = { - [sym_body] = STATE(3891), + [sym_body] = STATE(3939), [sym_comment] = STATE(148), - [sym__block_terminator] = STATE(1391), + [sym__block_terminator] = STATE(878), [sym_include] = STATE(148), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -38167,7 +37264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -38188,49 +37285,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [149] = { - [sym_body] = STATE(3779), + [sym_body] = STATE(3652), [sym_comment] = STATE(149), - [sym__block_terminator] = STATE(1596), + [sym__block_terminator] = STATE(3361), [sym_include] = STATE(149), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -38241,7 +37338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -38262,49 +37359,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [150] = { - [sym_body] = STATE(3858), + [sym_body] = STATE(3656), [sym_comment] = STATE(150), - [sym__block_terminator] = STATE(1158), + [sym__block_terminator] = STATE(3407), [sym_include] = STATE(150), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -38315,7 +37412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -38336,49 +37433,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [151] = { - [sym_body] = STATE(3788), + [sym_body] = STATE(3667), [sym_comment] = STATE(151), - [sym__block_terminator] = STATE(1576), + [sym__block_terminator] = STATE(3410), [sym_include] = STATE(151), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -38389,7 +37486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -38410,49 +37507,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [152] = { - [sym_body] = STATE(3809), + [sym_body] = STATE(3669), [sym_comment] = STATE(152), - [sym__block_terminator] = STATE(1558), + [sym__block_terminator] = STATE(3411), [sym_include] = STATE(152), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -38463,7 +37560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -38484,49 +37581,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [153] = { - [sym_body] = STATE(3819), + [sym_body] = STATE(3676), [sym_comment] = STATE(153), - [sym__block_terminator] = STATE(1524), + [sym__block_terminator] = STATE(3413), [sym_include] = STATE(153), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -38537,7 +37634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -38558,49 +37655,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [154] = { - [sym_body] = STATE(3821), + [sym_body] = STATE(3684), [sym_comment] = STATE(154), - [sym__block_terminator] = STATE(1520), + [sym__block_terminator] = STATE(3417), [sym_include] = STATE(154), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -38611,7 +37708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -38632,49 +37729,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [155] = { - [sym_body] = STATE(3862), + [sym_body] = STATE(3692), [sym_comment] = STATE(155), - [sym__block_terminator] = STATE(1157), + [sym__block_terminator] = STATE(3430), [sym_include] = STATE(155), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -38685,7 +37782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -38706,49 +37803,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [156] = { - [sym_body] = STATE(3832), + [sym_body] = STATE(3696), [sym_comment] = STATE(156), - [sym__block_terminator] = STATE(1506), + [sym__block_terminator] = STATE(3434), [sym_include] = STATE(156), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -38759,7 +37856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -38780,49 +37877,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [157] = { - [sym_body] = STATE(3837), + [sym_body] = STATE(3698), [sym_comment] = STATE(157), - [sym__block_terminator] = STATE(1498), + [sym__block_terminator] = STATE(3403), [sym_include] = STATE(157), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -38833,7 +37930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -38854,49 +37951,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [158] = { - [sym_body] = STATE(3869), + [sym_body] = STATE(3701), [sym_comment] = STATE(158), - [sym__block_terminator] = STATE(1145), + [sym__block_terminator] = STATE(3491), [sym_include] = STATE(158), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -38907,7 +38004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -38928,49 +38025,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [159] = { - [sym_body] = STATE(3876), + [sym_body] = STATE(3704), [sym_comment] = STATE(159), - [sym__block_terminator] = STATE(1143), + [sym__block_terminator] = STATE(3479), [sym_include] = STATE(159), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -38981,7 +38078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -39002,49 +38099,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [160] = { - [sym_body] = STATE(3838), + [sym_body] = STATE(3709), [sym_comment] = STATE(160), - [sym__block_terminator] = STATE(1474), + [sym__block_terminator] = STATE(3486), [sym_include] = STATE(160), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -39055,7 +38152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -39076,123 +38173,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [161] = { - [sym_body] = STATE(3898), [sym_comment] = STATE(161), - [sym__block_terminator] = STATE(1129), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(161), - [sym_assignment] = STATE(4539), - [sym_variable_definition] = STATE(1458), - [sym_variable_assignment] = STATE(1458), - [sym_buffer_definition] = STATE(1458), - [sym_query_definition] = STATE(1458), - [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), - [sym_if_statement] = STATE(1458), - [sym_label] = STATE(1459), - [sym_repeat_statement] = STATE(1458), - [sym_procedure_statement] = STATE(1458), - [sym_procedure_parameter_definition] = STATE(1458), - [sym_function_statement] = STATE(1458), - [sym_return_statement] = STATE(1458), - [sym_interface_statement] = STATE(1458), - [sym_using_statement] = STATE(1458), - [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), - [sym_stream_definition] = STATE(1458), - [sym_input_close_statement] = STATE(1458), - [sym_output_close_statement] = STATE(1458), - [sym__stream_statement] = STATE(1458), - [sym_input_stream_statement] = STATE(1460), - [sym_output_stream_statement] = STATE(1460), - [sym_do_block] = STATE(1458), - [sym_case_statement] = STATE(1458), - [sym_for_statement] = STATE(1458), - [sym_find_statement] = STATE(1458), - [sym_abl_statement] = STATE(1458), - [sym_assign_statement] = STATE(1458), - [sym_catch_statement] = STATE(1458), - [sym_finally_statement] = STATE(1458), - [sym_accumulate_statement] = STATE(1458), - [sym_undo_statement] = STATE(1458), - [sym_error_scope_statement] = STATE(1458), - [sym_temp_table_definition] = STATE(1458), - [sym_on_statement] = STATE(1458), - [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [sym__function_call_arguments] = STATE(4025), + [sym_argument_mode] = STATE(4089), + [sym__function_argument_with_mode] = STATE(3838), + [sym_function_call_argument] = STATE(3346), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_can_find_expression] = STATE(18), + [sym_accumulate_aggregate] = STATE(3132), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(1080), + [sym_identifier] = ACTIONS(317), [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), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(333), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(337), + [aux_sym_ambiguous_expression_token1] = ACTIONS(339), + [aux_sym_current_changed_expression_token1] = ACTIONS(341), + [aux_sym_locked_expression_token1] = ACTIONS(343), + [aux_sym_input_expression_token1] = ACTIONS(345), + [aux_sym_scope_tuning_token1] = ACTIONS(347), + [aux_sym_argument_mode_token1] = ACTIONS(349), + [aux_sym_argument_mode_token2] = ACTIONS(349), + [aux_sym_if_statement_token1] = ACTIONS(351), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(355), + [aux_sym_accumulate_expression_token1] = ACTIONS(357), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [162] = { - [sym_body] = STATE(4012), + [sym_body] = STATE(3720), [sym_comment] = STATE(162), - [sym__block_terminator] = STATE(1125), + [sym__block_terminator] = STATE(3480), [sym_include] = STATE(162), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -39203,7 +38300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -39224,49 +38321,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [163] = { - [sym_body] = STATE(3839), + [sym_body] = STATE(3950), [sym_comment] = STATE(163), - [sym__block_terminator] = STATE(1471), + [sym__block_terminator] = STATE(876), [sym_include] = STATE(163), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -39277,7 +38374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -39298,49 +38395,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [164] = { - [sym_body] = STATE(3919), + [sym_body] = STATE(3727), [sym_comment] = STATE(164), - [sym__block_terminator] = STATE(1128), + [sym__block_terminator] = STATE(3475), [sym_include] = STATE(164), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -39351,7 +38448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -39372,49 +38469,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [165] = { - [sym_body] = STATE(3841), + [sym_body] = STATE(3729), [sym_comment] = STATE(165), - [sym__block_terminator] = STATE(1455), + [sym__block_terminator] = STATE(3463), [sym_include] = STATE(165), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -39425,7 +38522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -39446,49 +38543,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [166] = { - [sym_body] = STATE(3922), + [sym_body] = STATE(3732), [sym_comment] = STATE(166), - [sym__block_terminator] = STATE(1029), + [sym__block_terminator] = STATE(3495), [sym_include] = STATE(166), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -39499,7 +38596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -39520,49 +38617,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [167] = { - [sym_body] = STATE(3854), + [sym_body] = STATE(3731), [sym_comment] = STATE(167), - [sym__block_terminator] = STATE(1445), + [sym__block_terminator] = STATE(875), [sym_include] = STATE(167), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -39573,7 +38670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -39594,49 +38691,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [168] = { - [sym_body] = STATE(3718), + [sym_body] = STATE(3733), [sym_comment] = STATE(168), - [sym__block_terminator] = STATE(1060), + [sym__block_terminator] = STATE(3399), [sym_include] = STATE(168), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -39647,7 +38744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -39668,49 +38765,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [169] = { - [sym_body] = STATE(3855), + [sym_body] = STATE(3740), [sym_comment] = STATE(169), - [sym__block_terminator] = STATE(1435), + [sym__block_terminator] = STATE(3369), [sym_include] = STATE(169), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -39721,7 +38818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -39742,49 +38839,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [170] = { - [sym_body] = STATE(3930), + [sym_body] = STATE(3910), [sym_comment] = STATE(170), - [sym__block_terminator] = STATE(1105), + [sym__block_terminator] = STATE(874), [sym_include] = STATE(170), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -39795,7 +38892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -39816,49 +38913,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [171] = { - [sym_body] = STATE(3933), + [sym_body] = STATE(3743), [sym_comment] = STATE(171), - [sym__block_terminator] = STATE(1083), + [sym__block_terminator] = STATE(3352), [sym_include] = STATE(171), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -39869,7 +38966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -39890,49 +38987,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [172] = { - [sym_body] = STATE(3524), + [sym_body] = STATE(3748), [sym_comment] = STATE(172), - [sym__block_terminator] = STATE(1017), + [sym__block_terminator] = STATE(3335), [sym_include] = STATE(172), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -39943,7 +39040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -39964,49 +39061,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [173] = { - [sym_body] = STATE(3947), + [sym_body] = STATE(3869), [sym_comment] = STATE(173), - [sym__block_terminator] = STATE(1197), + [sym__block_terminator] = STATE(872), [sym_include] = STATE(173), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -40017,7 +39114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -40038,49 +39135,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [174] = { - [sym_body] = STATE(3954), + [sym_body] = STATE(3757), [sym_comment] = STATE(174), - [sym__block_terminator] = STATE(1058), + [sym__block_terminator] = STATE(3289), [sym_include] = STATE(174), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -40091,7 +39188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -40112,49 +39209,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [175] = { - [sym_body] = STATE(3959), + [sym_body] = STATE(3763), [sym_comment] = STATE(175), - [sym__block_terminator] = STATE(1064), + [sym__block_terminator] = STATE(3261), [sym_include] = STATE(175), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -40165,7 +39262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -40186,49 +39283,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [176] = { - [sym_body] = STATE(3870), + [sym_body] = STATE(3889), [sym_comment] = STATE(176), - [sym__block_terminator] = STATE(1422), + [sym__block_terminator] = STATE(1383), [sym_include] = STATE(176), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -40239,7 +39336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -40260,49 +39357,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [177] = { - [sym_body] = STATE(3969), + [sym_body] = STATE(3800), [sym_comment] = STATE(177), - [sym__block_terminator] = STATE(1065), + [sym__block_terminator] = STATE(870), [sym_include] = STATE(177), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -40313,7 +39410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -40334,49 +39431,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [178] = { - [sym_body] = STATE(3871), + [sym_body] = STATE(3819), [sym_comment] = STATE(178), - [sym__block_terminator] = STATE(1433), + [sym__block_terminator] = STATE(868), [sym_include] = STATE(178), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -40387,7 +39484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -40408,49 +39505,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [179] = { - [sym_body] = STATE(3872), + [sym_body] = STATE(3702), [sym_comment] = STATE(179), - [sym__block_terminator] = STATE(1429), + [sym__block_terminator] = STATE(865), [sym_include] = STATE(179), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -40461,7 +39558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -40482,49 +39579,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [180] = { - [sym_body] = STATE(3874), + [sym_body] = STATE(3693), [sym_comment] = STATE(180), - [sym__block_terminator] = STATE(1415), + [sym__block_terminator] = STATE(864), [sym_include] = STATE(180), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -40535,7 +39632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -40556,49 +39653,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [181] = { - [sym_body] = STATE(3924), + [sym_body] = STATE(3690), [sym_comment] = STATE(181), - [sym__block_terminator] = STATE(1467), + [sym__block_terminator] = STATE(863), [sym_include] = STATE(181), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -40609,7 +39706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -40630,49 +39727,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [182] = { - [sym_body] = STATE(3721), + [sym_body] = STATE(3687), [sym_comment] = STATE(182), - [sym__block_terminator] = STATE(1067), + [sym__block_terminator] = STATE(862), [sym_include] = STATE(182), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -40683,7 +39780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -40704,49 +39801,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [183] = { - [sym_body] = STATE(3973), + [sym_body] = STATE(3618), [sym_comment] = STATE(183), - [sym__block_terminator] = STATE(1080), + [sym__block_terminator] = STATE(861), [sym_include] = STATE(183), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -40757,7 +39854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -40778,49 +39875,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [184] = { - [sym_body] = STATE(3980), + [sym_body] = STATE(3612), [sym_comment] = STATE(184), - [sym__block_terminator] = STATE(1081), + [sym__block_terminator] = STATE(860), [sym_include] = STATE(184), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -40831,7 +39928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -40852,49 +39949,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [185] = { - [sym_body] = STATE(3982), + [sym_body] = STATE(3828), [sym_comment] = STATE(185), - [sym__block_terminator] = STATE(1082), + [sym__block_terminator] = STATE(859), [sym_include] = STATE(185), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -40905,7 +40002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -40926,49 +40023,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [186] = { - [sym_body] = STATE(3984), + [sym_body] = STATE(3884), [sym_comment] = STATE(186), - [sym__block_terminator] = STATE(1104), + [sym__block_terminator] = STATE(1387), [sym_include] = STATE(186), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -40979,7 +40076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -41000,49 +40097,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [187] = { - [sym_body] = STATE(3726), + [sym_body] = STATE(3568), [sym_comment] = STATE(187), - [sym__block_terminator] = STATE(1438), + [sym__block_terminator] = STATE(856), [sym_include] = STATE(187), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -41053,7 +40150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -41074,49 +40171,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [188] = { - [sym_body] = STATE(3966), + [sym_body] = STATE(3502), [sym_comment] = STATE(188), - [sym__block_terminator] = STATE(3304), + [sym__block_terminator] = STATE(852), [sym_include] = STATE(188), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -41127,7 +40224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -41148,49 +40245,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(311), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [189] = { - [sym_body] = STATE(3896), + [sym_body] = STATE(3776), [sym_comment] = STATE(189), - [sym__block_terminator] = STATE(1386), + [sym__block_terminator] = STATE(3230), [sym_include] = STATE(189), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -41201,7 +40298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -41222,49 +40319,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [190] = { - [sym_body] = STATE(3586), + [sym_body] = STATE(3533), [sym_comment] = STATE(190), - [sym__block_terminator] = STATE(1521), + [sym__block_terminator] = STATE(828), [sym_include] = STATE(190), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -41275,7 +40372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -41296,49 +40393,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [191] = { - [sym_body] = STATE(3900), + [sym_body] = STATE(3781), [sym_comment] = STATE(191), - [sym__block_terminator] = STATE(1385), + [sym__block_terminator] = STATE(3219), [sym_include] = STATE(191), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -41349,7 +40446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -41370,49 +40467,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [192] = { - [sym_body] = STATE(3746), + [sym_body] = STATE(3802), [sym_comment] = STATE(192), - [sym__block_terminator] = STATE(1072), + [sym__block_terminator] = STATE(1414), [sym_include] = STATE(192), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -41423,7 +40520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -41444,49 +40541,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [193] = { - [sym_body] = STATE(3749), + [sym_body] = STATE(3544), [sym_comment] = STATE(193), - [sym__block_terminator] = STATE(1074), + [sym__block_terminator] = STATE(967), [sym_include] = STATE(193), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -41497,7 +40594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -41518,49 +40615,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [194] = { - [sym_body] = STATE(3901), + [sym_body] = STATE(3562), [sym_comment] = STATE(194), - [sym__block_terminator] = STATE(1384), + [sym__block_terminator] = STATE(1261), [sym_include] = STATE(194), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -41571,7 +40668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -41592,49 +40689,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [195] = { - [sym_body] = STATE(3902), + [sym_body] = STATE(3990), [sym_comment] = STATE(195), - [sym__block_terminator] = STATE(1378), + [sym__block_terminator] = STATE(1336), [sym_include] = STATE(195), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -41645,7 +40742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -41666,49 +40763,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [196] = { - [sym_body] = STATE(3962), + [sym_body] = STATE(3635), [sym_comment] = STATE(196), - [sym__block_terminator] = STATE(3306), + [sym__block_terminator] = STATE(971), [sym_include] = STATE(196), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -41719,7 +40816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -41740,49 +40837,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [197] = { - [sym_body] = STATE(3905), + [sym_body] = STATE(3658), [sym_comment] = STATE(197), - [sym__block_terminator] = STATE(1373), + [sym__block_terminator] = STATE(857), [sym_include] = STATE(197), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -41793,7 +40890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -41814,49 +40911,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [198] = { - [sym_body] = STATE(3767), + [sym_body] = STATE(3865), [sym_comment] = STATE(198), - [sym__block_terminator] = STATE(1087), + [sym__block_terminator] = STATE(3148), [sym_include] = STATE(198), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -41867,7 +40964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -41888,49 +40985,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [199] = { - [sym_body] = STATE(3680), + [sym_body] = STATE(3801), [sym_comment] = STATE(199), - [sym__block_terminator] = STATE(3466), + [sym__block_terminator] = STATE(1417), [sym_include] = STATE(199), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -41941,7 +41038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -41962,49 +41059,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [200] = { - [sym_body] = STATE(3906), + [sym_body] = STATE(3694), [sym_comment] = STATE(200), - [sym__block_terminator] = STATE(1370), + [sym__block_terminator] = STATE(1012), [sym_include] = STATE(200), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -42015,7 +41112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -42036,49 +41133,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [201] = { - [sym_body] = STATE(3907), + [sym_body] = STATE(3699), [sym_comment] = STATE(201), - [sym__block_terminator] = STATE(1363), + [sym__block_terminator] = STATE(1016), [sym_include] = STATE(201), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -42089,7 +41186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -42110,123 +41207,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [202] = { - [sym_body] = STATE(3635), [sym_comment] = STATE(202), - [sym__block_terminator] = STATE(1302), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(202), - [sym_assignment] = STATE(4539), - [sym_variable_definition] = STATE(1458), - [sym_variable_assignment] = STATE(1458), - [sym_buffer_definition] = STATE(1458), - [sym_query_definition] = STATE(1458), - [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), - [sym_if_statement] = STATE(1458), - [sym_label] = STATE(1459), - [sym_repeat_statement] = STATE(1458), - [sym_procedure_statement] = STATE(1458), - [sym_procedure_parameter_definition] = STATE(1458), - [sym_function_statement] = STATE(1458), - [sym_return_statement] = STATE(1458), - [sym_interface_statement] = STATE(1458), - [sym_using_statement] = STATE(1458), - [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), - [sym_stream_definition] = STATE(1458), - [sym_input_close_statement] = STATE(1458), - [sym_output_close_statement] = STATE(1458), - [sym__stream_statement] = STATE(1458), - [sym_input_stream_statement] = STATE(1460), - [sym_output_stream_statement] = STATE(1460), - [sym_do_block] = STATE(1458), - [sym_case_statement] = STATE(1458), - [sym_for_statement] = STATE(1458), - [sym_find_statement] = STATE(1458), - [sym_abl_statement] = STATE(1458), - [sym_assign_statement] = STATE(1458), - [sym_catch_statement] = STATE(1458), - [sym_finally_statement] = STATE(1458), - [sym_accumulate_statement] = STATE(1458), - [sym_undo_statement] = STATE(1458), - [sym_error_scope_statement] = STATE(1458), - [sym_temp_table_definition] = STATE(1458), - [sym_on_statement] = STATE(1458), - [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [sym__function_call_arguments] = STATE(4025), + [sym_argument_mode] = STATE(4089), + [sym__function_argument_with_mode] = STATE(3838), + [sym_function_call_argument] = STATE(3346), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_can_find_expression] = STATE(18), + [sym_accumulate_aggregate] = STATE(3454), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(1080), + [sym_identifier] = ACTIONS(317), [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), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(333), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(337), + [aux_sym_ambiguous_expression_token1] = ACTIONS(339), + [aux_sym_current_changed_expression_token1] = ACTIONS(341), + [aux_sym_locked_expression_token1] = ACTIONS(343), + [aux_sym_input_expression_token1] = ACTIONS(345), + [aux_sym_scope_tuning_token1] = ACTIONS(347), + [aux_sym_argument_mode_token1] = ACTIONS(349), + [aux_sym_argument_mode_token2] = ACTIONS(349), + [aux_sym_if_statement_token1] = ACTIONS(351), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(355), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(355), + [aux_sym_accumulate_expression_token1] = ACTIONS(357), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [203] = { - [sym_body] = STATE(3920), + [sym_body] = STATE(3716), [sym_comment] = STATE(203), - [sym__block_terminator] = STATE(3323), + [sym__block_terminator] = STATE(1030), [sym_include] = STATE(203), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -42237,7 +41334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -42258,49 +41355,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [204] = { - [sym_body] = STATE(3604), + [sym_body] = STATE(3887), [sym_comment] = STATE(204), - [sym__block_terminator] = STATE(1322), + [sym__block_terminator] = STATE(3115), [sym_include] = STATE(204), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -42311,7 +41408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -42332,49 +41429,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [205] = { - [sym_body] = STATE(3682), + [sym_body] = STATE(3903), [sym_comment] = STATE(205), - [sym__block_terminator] = STATE(3463), + [sym__block_terminator] = STATE(3104), [sym_include] = STATE(205), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -42385,7 +41482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -42406,49 +41503,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [206] = { - [sym_body] = STATE(3909), + [sym_body] = STATE(3771), [sym_comment] = STATE(206), - [sym__block_terminator] = STATE(3325), + [sym__block_terminator] = STATE(1043), [sym_include] = STATE(206), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -42459,7 +41556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -42480,49 +41577,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [207] = { - [sym_body] = STATE(3867), + [sym_body] = STATE(3713), [sym_comment] = STATE(207), - [sym__block_terminator] = STATE(3342), + [sym__block_terminator] = STATE(1436), [sym_include] = STATE(207), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -42533,7 +41630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -42554,49 +41651,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [208] = { - [sym_body] = STATE(3683), + [sym_body] = STATE(3774), [sym_comment] = STATE(208), - [sym__block_terminator] = STATE(3461), + [sym__block_terminator] = STATE(1046), [sym_include] = STATE(208), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -42607,7 +41704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -42628,49 +41725,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [209] = { - [sym_body] = STATE(3685), + [sym_body] = STATE(3786), [sym_comment] = STATE(209), - [sym__block_terminator] = STATE(3459), + [sym__block_terminator] = STATE(1054), [sym_include] = STATE(209), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -42681,7 +41778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -42702,49 +41799,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [210] = { - [sym_body] = STATE(3689), + [sym_body] = STATE(3794), [sym_comment] = STATE(210), - [sym__block_terminator] = STATE(3458), + [sym__block_terminator] = STATE(1061), [sym_include] = STATE(210), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -42755,7 +41852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -42776,49 +41873,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [211] = { - [sym_body] = STATE(3694), + [sym_body] = STATE(3951), [sym_comment] = STATE(211), - [sym__block_terminator] = STATE(3455), + [sym__block_terminator] = STATE(3029), [sym_include] = STATE(211), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -42829,7 +41926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -42850,49 +41947,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [212] = { - [sym_body] = STATE(3696), + [sym_body] = STATE(3958), [sym_comment] = STATE(212), - [sym__block_terminator] = STATE(3454), + [sym__block_terminator] = STATE(3025), [sym_include] = STATE(212), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -42903,7 +42000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -42924,49 +42021,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [213] = { - [sym_body] = STATE(3698), + [sym_body] = STATE(3881), [sym_comment] = STATE(213), - [sym__block_terminator] = STATE(3453), + [sym__block_terminator] = STATE(1304), [sym_include] = STATE(213), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -42977,7 +42074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -42998,49 +42095,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [214] = { - [sym_body] = STATE(3701), + [sym_body] = STATE(3712), [sym_comment] = STATE(214), - [sym__block_terminator] = STATE(3452), + [sym__block_terminator] = STATE(1438), [sym_include] = STATE(214), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -43051,7 +42148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -43072,49 +42169,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [215] = { - [sym_body] = STATE(3707), + [sym_body] = STATE(3830), [sym_comment] = STATE(215), - [sym__block_terminator] = STATE(3445), + [sym__block_terminator] = STATE(1099), [sym_include] = STATE(215), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -43125,7 +42222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -43146,49 +42243,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [216] = { - [sym_body] = STATE(3709), + [sym_body] = STATE(4010), [sym_comment] = STATE(216), - [sym__block_terminator] = STATE(3443), + [sym__block_terminator] = STATE(3172), [sym_include] = STATE(216), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -43199,7 +42296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -43220,49 +42317,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [217] = { - [sym_body] = STATE(3712), + [sym_body] = STATE(3837), [sym_comment] = STATE(217), - [sym__block_terminator] = STATE(3438), + [sym__block_terminator] = STATE(973), [sym_include] = STATE(217), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -43273,7 +42370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -43294,49 +42391,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [218] = { - [sym_body] = STATE(3714), + [sym_body] = STATE(3674), [sym_comment] = STATE(218), - [sym__block_terminator] = STATE(3435), + [sym__block_terminator] = STATE(1451), [sym_include] = STATE(218), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -43347,7 +42444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -43368,49 +42465,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [219] = { - [sym_body] = STATE(3716), + [sym_body] = STATE(3842), [sym_comment] = STATE(219), - [sym__block_terminator] = STATE(3439), + [sym__block_terminator] = STATE(1023), [sym_include] = STATE(219), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -43421,7 +42518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -43442,49 +42539,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [220] = { - [sym_body] = STATE(3509), + [sym_body] = STATE(3863), [sym_comment] = STATE(220), - [sym__block_terminator] = STATE(3430), + [sym__block_terminator] = STATE(936), [sym_include] = STATE(220), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -43495,7 +42592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -43516,49 +42613,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [221] = { - [sym_body] = STATE(3729), + [sym_body] = STATE(3949), [sym_comment] = STATE(221), - [sym__block_terminator] = STATE(3429), + [sym__block_terminator] = STATE(1010), [sym_include] = STATE(221), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -43569,7 +42666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -43590,49 +42687,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [222] = { - [sym_body] = STATE(3730), + [sym_body] = STATE(3943), [sym_comment] = STATE(222), - [sym__block_terminator] = STATE(3424), + [sym__block_terminator] = STATE(1001), [sym_include] = STATE(222), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -43643,7 +42740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -43664,49 +42761,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [223] = { - [sym_body] = STATE(3733), + [sym_body] = STATE(3941), [sym_comment] = STATE(223), - [sym__block_terminator] = STATE(3419), + [sym__block_terminator] = STATE(1000), [sym_include] = STATE(223), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -43717,7 +42814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -43738,49 +42835,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [224] = { - [sym_body] = STATE(3737), + [sym_body] = STATE(3940), [sym_comment] = STATE(224), - [sym__block_terminator] = STATE(3418), + [sym__block_terminator] = STATE(999), [sym_include] = STATE(224), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -43791,7 +42888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -43812,49 +42909,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [225] = { - [sym_body] = STATE(3747), + [sym_body] = STATE(3937), [sym_comment] = STATE(225), - [sym__block_terminator] = STATE(3410), + [sym__block_terminator] = STATE(997), [sym_include] = STATE(225), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -43865,7 +42962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -43886,49 +42983,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [226] = { - [sym_body] = STATE(3750), + [sym_body] = STATE(3497), [sym_comment] = STATE(226), - [sym__block_terminator] = STATE(3391), + [sym__block_terminator] = STATE(996), [sym_include] = STATE(226), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -43939,7 +43036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -43960,49 +43057,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [227] = { - [sym_body] = STATE(3863), + [sym_body] = STATE(3931), [sym_comment] = STATE(227), - [sym__block_terminator] = STATE(3347), + [sym__block_terminator] = STATE(994), [sym_include] = STATE(227), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -44013,7 +43110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -44034,49 +43131,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [228] = { - [sym_body] = STATE(3755), + [sym_body] = STATE(3928), [sym_comment] = STATE(228), - [sym__block_terminator] = STATE(3387), + [sym__block_terminator] = STATE(988), [sym_include] = STATE(228), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -44087,7 +43184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -44108,49 +43205,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [229] = { - [sym_body] = STATE(3757), + [sym_body] = STATE(3926), [sym_comment] = STATE(229), - [sym__block_terminator] = STATE(3385), + [sym__block_terminator] = STATE(987), [sym_include] = STATE(229), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -44161,7 +43258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -44182,49 +43279,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [230] = { - [sym_body] = STATE(3940), + [sym_body] = STATE(3924), [sym_comment] = STATE(230), - [sym__block_terminator] = STATE(1344), + [sym__block_terminator] = STATE(974), [sym_include] = STATE(230), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -44235,7 +43332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -44256,49 +43353,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [231] = { - [sym_body] = STATE(3768), + [sym_body] = STATE(3922), [sym_comment] = STATE(231), - [sym__block_terminator] = STATE(3380), + [sym__block_terminator] = STATE(960), [sym_include] = STATE(231), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -44309,7 +43406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -44330,49 +43427,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [232] = { - [sym_body] = STATE(3785), + [sym_body] = STATE(3918), [sym_comment] = STATE(232), - [sym__block_terminator] = STATE(3375), + [sym__block_terminator] = STATE(951), [sym_include] = STATE(232), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -44383,7 +43480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -44404,49 +43501,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [233] = { - [sym_body] = STATE(3903), + [sym_body] = STATE(3916), [sym_comment] = STATE(233), - [sym__block_terminator] = STATE(1137), + [sym__block_terminator] = STATE(926), [sym_include] = STATE(233), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -44457,7 +43554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -44478,49 +43575,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [234] = { - [sym_body] = STATE(3801), + [sym_body] = STATE(3912), [sym_comment] = STATE(234), - [sym__block_terminator] = STATE(3369), + [sym__block_terminator] = STATE(957), [sym_include] = STATE(234), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -44531,7 +43628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -44552,49 +43649,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [235] = { - [sym_body] = STATE(3885), + [sym_body] = STATE(3911), [sym_comment] = STATE(235), - [sym__block_terminator] = STATE(1135), + [sym__block_terminator] = STATE(913), [sym_include] = STATE(235), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -44605,7 +43702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -44626,49 +43723,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [236] = { - [sym_body] = STATE(3807), + [sym_body] = STATE(3906), [sym_comment] = STATE(236), - [sym__block_terminator] = STATE(3365), + [sym__block_terminator] = STATE(849), [sym_include] = STATE(236), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -44679,7 +43776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -44700,49 +43797,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [237] = { - [sym_body] = STATE(3784), + [sym_body] = STATE(3902), [sym_comment] = STATE(237), - [sym__block_terminator] = STATE(1093), + [sym__block_terminator] = STATE(846), [sym_include] = STATE(237), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -44753,7 +43850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -44774,49 +43871,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [238] = { - [sym_body] = STATE(3850), + [sym_body] = STATE(3878), [sym_comment] = STATE(238), - [sym__block_terminator] = STATE(1116), + [sym__block_terminator] = STATE(838), [sym_include] = STATE(238), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -44827,7 +43924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -44848,49 +43945,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [239] = { - [sym_body] = STATE(3818), + [sym_body] = STATE(3888), [sym_comment] = STATE(239), - [sym__block_terminator] = STATE(1114), + [sym__block_terminator] = STATE(839), [sym_include] = STATE(239), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -44901,7 +43998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -44922,49 +44019,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [240] = { - [sym_body] = STATE(3786), + [sym_body] = STATE(4153), [sym_comment] = STATE(240), - [sym__block_terminator] = STATE(1097), [sym_include] = STATE(240), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -44975,7 +44071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -44996,49 +44092,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(365), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [241] = { - [sym_body] = STATE(3846), + [sym_body] = STATE(4355), [sym_comment] = STATE(241), - [sym__block_terminator] = STATE(3355), [sym_include] = STATE(241), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -45049,7 +44144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -45070,340 +44165,413 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(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), + [aux_sym__block_terminator_token1] = ACTIONS(367), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [242] = { - [sym_body] = STATE(4605), [sym_comment] = STATE(242), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(242), - [sym_assignment] = STATE(4539), - [sym_variable_definition] = STATE(1458), - [sym_variable_assignment] = STATE(1458), - [sym_buffer_definition] = STATE(1458), - [sym_query_definition] = STATE(1458), - [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), - [sym_if_statement] = STATE(1458), - [sym_label] = STATE(1459), - [sym_repeat_statement] = STATE(1458), - [sym_procedure_statement] = STATE(1458), - [sym_procedure_parameter_definition] = STATE(1458), - [sym_function_statement] = STATE(1458), - [sym_return_statement] = STATE(1458), - [sym_interface_statement] = STATE(1458), - [sym_using_statement] = STATE(1458), - [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), - [sym_stream_definition] = STATE(1458), - [sym_input_close_statement] = STATE(1458), - [sym_output_close_statement] = STATE(1458), - [sym__stream_statement] = STATE(1458), - [sym_input_stream_statement] = STATE(1460), - [sym_output_stream_statement] = STATE(1460), - [sym_do_block] = STATE(1458), - [sym_case_statement] = STATE(1458), - [sym_for_statement] = STATE(1458), - [sym_find_statement] = STATE(1458), - [sym_abl_statement] = STATE(1458), - [sym_assign_statement] = STATE(1458), - [sym_catch_statement] = STATE(1458), - [sym_finally_statement] = STATE(1458), - [sym_accumulate_statement] = STATE(1458), - [sym_undo_statement] = STATE(1458), - [sym_error_scope_statement] = STATE(1458), - [sym_temp_table_definition] = STATE(1458), - [sym_on_statement] = STATE(1458), - [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(598), + [aux_sym_qualified_name_repeat1] = STATE(708), + [aux_sym_can_find_expression_repeat2] = STATE(1836), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(373), - [aux_sym_input_expression_token1] = ACTIONS(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), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(369), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + [sym__namedot] = ACTIONS(397), }, [243] = { [sym_comment] = STATE(243), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(243), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(598), - [aux_sym_qualified_name_repeat1] = STATE(772), - [aux_sym_can_find_expression_repeat2] = STATE(1850), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(592), + [aux_sym_qualified_name_repeat1] = STATE(708), + [aux_sym_can_find_expression_repeat2] = STATE(1834), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(375), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), - [sym__namedot] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(399), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + [sym__namedot] = ACTIONS(397), }, [244] = { [sym_comment] = STATE(244), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(244), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(596), - [aux_sym_qualified_name_repeat1] = STATE(772), - [aux_sym_can_find_expression_repeat2] = STATE(1852), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(593), + [aux_sym_qualified_name_repeat1] = STATE(708), + [aux_sym_can_find_expression_repeat2] = STATE(1863), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(405), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), - [sym__namedot] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(401), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + [sym__namedot] = ACTIONS(397), }, [245] = { [sym_comment] = STATE(245), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(245), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(590), - [aux_sym_qualified_name_repeat1] = STATE(772), - [aux_sym_can_find_expression_repeat2] = STATE(1849), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(595), + [aux_sym_qualified_name_repeat1] = STATE(708), + [aux_sym_can_find_expression_repeat2] = STATE(1841), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(407), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), - [sym__namedot] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(403), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + [sym__namedot] = ACTIONS(397), }, [246] = { - [sym_body] = STATE(4232), [sym_comment] = STATE(246), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(246), - [sym_assignment] = STATE(4539), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(585), + [aux_sym_qualified_name_repeat1] = STATE(708), + [aux_sym_can_find_expression_repeat2] = STATE(1843), + [sym_identifier] = ACTIONS(317), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(405), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + [sym__namedot] = ACTIONS(397), + }, + [247] = { + [sym_body] = STATE(4399), + [sym_comment] = STATE(247), + [sym_include] = STATE(247), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -45414,7 +44582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -45435,48 +44603,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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(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), + [aux_sym__block_terminator_token1] = ACTIONS(407), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [247] = { - [sym_body] = STATE(4334), - [sym_comment] = STATE(247), - [sym_include] = STATE(247), - [sym_assignment] = STATE(4539), + [248] = { + [sym_comment] = STATE(248), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), + [sym_include] = STATE(248), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(583), + [aux_sym_qualified_name_repeat1] = STATE(708), + [aux_sym_can_find_expression_repeat2] = STATE(1847), + [sym_identifier] = ACTIONS(317), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(409), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + [sym__namedot] = ACTIONS(397), + }, + [249] = { + [sym_body] = STATE(4048), + [sym_comment] = STATE(249), + [sym_include] = STATE(249), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -45487,7 +44728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -45508,48 +44749,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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(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), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [248] = { - [sym_body] = STATE(4347), - [sym_comment] = STATE(248), - [sym_include] = STATE(248), - [sym_assignment] = STATE(4539), + [250] = { + [sym_body] = STATE(4261), + [sym_comment] = STATE(250), + [sym_include] = STATE(250), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -45560,7 +44801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -45581,48 +44822,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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(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), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [249] = { - [sym_body] = STATE(4480), - [sym_comment] = STATE(249), - [sym_include] = STATE(249), - [sym_assignment] = STATE(4539), + [251] = { + [sym_body] = STATE(4253), + [sym_comment] = STATE(251), + [sym_include] = STATE(251), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -45633,7 +44874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -45654,121 +44895,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [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), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [250] = { - [sym_comment] = STATE(250), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), - [sym_include] = STATE(250), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(603), - [aux_sym_qualified_name_repeat1] = STATE(772), - [aux_sym_can_find_expression_repeat2] = STATE(1875), - [sym_identifier] = ACTIONS(325), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(417), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), - [sym__namedot] = ACTIONS(403), - }, - [251] = { - [sym_body] = STATE(4550), - [sym_comment] = STATE(251), - [sym_include] = STATE(251), - [sym_assignment] = STATE(4539), + [252] = { + [sym_body] = STATE(4168), + [sym_comment] = STATE(252), + [sym_include] = STATE(252), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -45779,7 +44947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -45800,121 +44968,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(419), - [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_comment] = STATE(252), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), - [sym_include] = STATE(252), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(599), - [aux_sym_qualified_name_repeat1] = STATE(772), - [aux_sym_can_find_expression_repeat2] = STATE(1853), - [sym_identifier] = ACTIONS(325), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(421), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), - [sym__namedot] = ACTIONS(403), + [aux_sym__block_terminator_token1] = ACTIONS(417), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [253] = { - [sym_body] = STATE(4453), [sym_comment] = STATE(253), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(253), - [sym_assignment] = STATE(4539), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(589), + [aux_sym_qualified_name_repeat1] = STATE(708), + [aux_sym_can_find_expression_repeat2] = STATE(1871), + [sym_identifier] = ACTIONS(317), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(419), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + [sym__namedot] = ACTIONS(397), + }, + [254] = { + [sym_body] = STATE(4398), + [sym_comment] = STATE(254), + [sym_include] = STATE(254), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -45925,7 +45093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -45946,121 +45114,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(423), - [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_comment] = STATE(254), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), - [sym_include] = STATE(254), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(604), - [aux_sym_qualified_name_repeat1] = STATE(772), - [aux_sym_can_find_expression_repeat2] = STATE(1871), - [sym_identifier] = ACTIONS(325), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(425), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), - [sym__namedot] = ACTIONS(403), + [aux_sym__block_terminator_token1] = ACTIONS(421), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [255] = { - [sym_body] = STATE(4459), + [sym_body] = STATE(4367), [sym_comment] = STATE(255), [sym_include] = STATE(255), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -46071,7 +45166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -46092,48 +45187,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(427), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(423), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [256] = { - [sym_body] = STATE(4092), + [sym_body] = STATE(4219), [sym_comment] = STATE(256), [sym_include] = STATE(256), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -46144,7 +45239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -46165,48 +45260,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(429), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(425), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [257] = { - [sym_body] = STATE(4619), [sym_comment] = STATE(257), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(257), - [sym_assignment] = STATE(4539), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(590), + [aux_sym_qualified_name_repeat1] = STATE(708), + [aux_sym_can_find_expression_repeat2] = STATE(1837), + [sym_identifier] = ACTIONS(317), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(427), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + [sym__namedot] = ACTIONS(397), + }, + [258] = { + [sym_body] = STATE(4239), + [sym_comment] = STATE(258), + [sym_include] = STATE(258), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -46217,7 +45385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -46238,121 +45406,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(431), - [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_comment] = STATE(258), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), - [sym_include] = STATE(258), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(591), - [aux_sym_qualified_name_repeat1] = STATE(772), - [aux_sym_can_find_expression_repeat2] = STATE(1890), - [sym_identifier] = ACTIONS(325), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(433), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), - [sym__namedot] = ACTIONS(403), + [aux_sym__block_terminator_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [259] = { - [sym_body] = STATE(4086), + [sym_body] = STATE(4140), [sym_comment] = STATE(259), [sym_include] = STATE(259), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -46363,7 +45458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -46384,267 +45479,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(435), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(431), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [260] = { - [sym_body] = STATE(4536), [sym_comment] = STATE(260), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(260), - [sym_assignment] = STATE(4539), - [sym_variable_definition] = STATE(1458), - [sym_variable_assignment] = STATE(1458), - [sym_buffer_definition] = STATE(1458), - [sym_query_definition] = STATE(1458), - [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), - [sym_if_statement] = STATE(1458), - [sym_label] = STATE(1459), - [sym_repeat_statement] = STATE(1458), - [sym_procedure_statement] = STATE(1458), - [sym_procedure_parameter_definition] = STATE(1458), - [sym_function_statement] = STATE(1458), - [sym_return_statement] = STATE(1458), - [sym_interface_statement] = STATE(1458), - [sym_using_statement] = STATE(1458), - [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), - [sym_stream_definition] = STATE(1458), - [sym_input_close_statement] = STATE(1458), - [sym_output_close_statement] = STATE(1458), - [sym__stream_statement] = STATE(1458), - [sym_input_stream_statement] = STATE(1460), - [sym_output_stream_statement] = STATE(1460), - [sym_do_block] = STATE(1458), - [sym_case_statement] = STATE(1458), - [sym_for_statement] = STATE(1458), - [sym_find_statement] = STATE(1458), - [sym_abl_statement] = STATE(1458), - [sym_assign_statement] = STATE(1458), - [sym_catch_statement] = STATE(1458), - [sym_finally_statement] = STATE(1458), - [sym_accumulate_statement] = STATE(1458), - [sym_undo_statement] = STATE(1458), - [sym_error_scope_statement] = STATE(1458), - [sym_temp_table_definition] = STATE(1458), - [sym_on_statement] = STATE(1458), - [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(591), + [aux_sym_qualified_name_repeat1] = STATE(708), + [aux_sym_can_find_expression_repeat2] = STATE(1840), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(437), - [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), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(433), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + [sym__namedot] = ACTIONS(397), }, [261] = { - [sym_body] = STATE(4634), [sym_comment] = STATE(261), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(261), - [sym_assignment] = STATE(4539), - [sym_variable_definition] = STATE(1458), - [sym_variable_assignment] = STATE(1458), - [sym_buffer_definition] = STATE(1458), - [sym_query_definition] = STATE(1458), - [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), - [sym_if_statement] = STATE(1458), - [sym_label] = STATE(1459), - [sym_repeat_statement] = STATE(1458), - [sym_procedure_statement] = STATE(1458), - [sym_procedure_parameter_definition] = STATE(1458), - [sym_function_statement] = STATE(1458), - [sym_return_statement] = STATE(1458), - [sym_interface_statement] = STATE(1458), - [sym_using_statement] = STATE(1458), - [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), - [sym_stream_definition] = STATE(1458), - [sym_input_close_statement] = STATE(1458), - [sym_output_close_statement] = STATE(1458), - [sym__stream_statement] = STATE(1458), - [sym_input_stream_statement] = STATE(1460), - [sym_output_stream_statement] = STATE(1460), - [sym_do_block] = STATE(1458), - [sym_case_statement] = STATE(1458), - [sym_for_statement] = STATE(1458), - [sym_find_statement] = STATE(1458), - [sym_abl_statement] = STATE(1458), - [sym_assign_statement] = STATE(1458), - [sym_catch_statement] = STATE(1458), - [sym_finally_statement] = STATE(1458), - [sym_accumulate_statement] = STATE(1458), - [sym_undo_statement] = STATE(1458), - [sym_error_scope_statement] = STATE(1458), - [sym_temp_table_definition] = STATE(1458), - [sym_on_statement] = STATE(1458), - [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(596), + [aux_sym_qualified_name_repeat1] = STATE(708), + [aux_sym_can_find_expression_repeat2] = STATE(1867), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(439), - [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), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(435), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + [sym__namedot] = ACTIONS(397), }, [262] = { [sym_comment] = STATE(262), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(262), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(605), - [aux_sym_qualified_name_repeat1] = STATE(772), - [aux_sym_can_find_expression_repeat2] = STATE(1880), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(584), + [aux_sym_qualified_name_repeat1] = STATE(708), + [aux_sym_can_find_expression_repeat2] = STATE(1856), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(441), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), - [sym__namedot] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(437), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + [sym__namedot] = ACTIONS(397), }, [263] = { - [sym_body] = STATE(4566), + [sym_body] = STATE(4480), [sym_comment] = STATE(263), [sym_include] = STATE(263), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -46655,7 +45750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -46676,340 +45771,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(443), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(439), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, [264] = { [sym_comment] = STATE(264), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(264), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(602), - [aux_sym_qualified_name_repeat1] = STATE(772), - [aux_sym_can_find_expression_repeat2] = STATE(1878), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(594), + [aux_sym_qualified_name_repeat1] = STATE(708), + [aux_sym_can_find_expression_repeat2] = STATE(1842), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(445), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), - [sym__namedot] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(441), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + [sym__namedot] = ACTIONS(397), }, [265] = { [sym_comment] = STATE(265), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(265), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(593), - [aux_sym_qualified_name_repeat1] = STATE(772), - [aux_sym_can_find_expression_repeat2] = STATE(1877), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(588), + [aux_sym_qualified_name_repeat1] = STATE(708), + [aux_sym_can_find_expression_repeat2] = STATE(1845), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(447), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), - [sym__namedot] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(443), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + [sym__namedot] = ACTIONS(397), }, [266] = { + [sym_body] = STATE(4036), [sym_comment] = STATE(266), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), [sym_include] = STATE(266), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(595), - [aux_sym_qualified_name_repeat1] = STATE(772), - [aux_sym_can_find_expression_repeat2] = STATE(1884), - [sym_identifier] = ACTIONS(325), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(449), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), - [sym__namedot] = ACTIONS(403), - }, - [267] = { - [sym_comment] = STATE(267), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), - [sym_include] = STATE(267), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(601), - [aux_sym_qualified_name_repeat1] = STATE(772), - [aux_sym_can_find_expression_repeat2] = STATE(1883), - [sym_identifier] = ACTIONS(325), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(451), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), - [sym__namedot] = ACTIONS(403), - }, - [268] = { - [sym_body] = STATE(4333), - [sym_comment] = STATE(268), - [sym_include] = STATE(268), - [sym_assignment] = STATE(4539), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -47020,7 +45969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -47041,48 +45990,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(263), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(453), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(445), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [269] = { - [sym_body] = STATE(4349), - [sym_comment] = STATE(269), - [sym_include] = STATE(269), - [sym_assignment] = STATE(4539), + [267] = { + [sym_body] = STATE(4078), + [sym_comment] = STATE(267), + [sym_include] = STATE(267), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -47093,7 +46042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -47114,265 +46063,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(275), - [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(455), - [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), - }, - [270] = { - [sym_comment] = STATE(270), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), - [sym_include] = STATE(270), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(594), - [aux_sym_qualified_name_repeat1] = STATE(772), - [aux_sym_can_find_expression_repeat2] = STATE(1859), - [sym_identifier] = ACTIONS(325), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(457), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), - [sym__namedot] = ACTIONS(403), - }, - [271] = { - [sym_comment] = STATE(271), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), - [sym_include] = STATE(271), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(597), - [aux_sym_qualified_name_repeat1] = STATE(772), - [aux_sym_can_find_expression_repeat2] = STATE(1876), - [sym_identifier] = ACTIONS(325), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(459), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), - [sym__namedot] = ACTIONS(403), - }, - [272] = { - [sym_comment] = STATE(272), - [sym_include] = STATE(272), - [sym_assignment] = STATE(4593), - [sym_variable_definition] = STATE(1332), - [sym_variable_assignment] = STATE(1332), - [sym_buffer_definition] = STATE(1332), - [sym_query_definition] = STATE(1332), - [sym_function_call_statement] = STATE(1332), - [sym_function_call] = STATE(4588), - [sym_if_statement] = STATE(1332), - [sym_label] = STATE(1340), - [sym_repeat_statement] = STATE(1332), - [sym_procedure_statement] = STATE(1332), - [sym_procedure_parameter_definition] = STATE(1332), - [sym_function_statement] = STATE(1332), - [sym_return_statement] = STATE(1332), - [sym_interface_statement] = STATE(1332), - [sym_using_statement] = STATE(1332), - [sym_class_statement] = STATE(1332), - [sym_object_access] = STATE(4586), - [sym_stream_definition] = STATE(1332), - [sym_input_close_statement] = STATE(1332), - [sym_output_close_statement] = STATE(1332), - [sym__stream_statement] = STATE(1332), - [sym_input_stream_statement] = STATE(1346), - [sym_output_stream_statement] = STATE(1346), - [sym_do_block] = STATE(1332), - [sym_case_statement] = STATE(1332), - [sym_for_statement] = STATE(1332), - [sym_find_statement] = STATE(1332), - [sym_abl_statement] = STATE(1332), - [sym_assign_statement] = STATE(1332), - [sym_catch_statement] = STATE(1332), - [sym_finally_statement] = STATE(1332), - [sym_accumulate_statement] = STATE(1332), - [sym_undo_statement] = STATE(1332), - [sym_error_scope_statement] = STATE(1332), - [sym_temp_table_definition] = STATE(1332), - [sym_on_statement] = STATE(1332), - [sym__statement] = STATE(1347), - [aux_sym_source_code_repeat1] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(461), - [sym_identifier] = ACTIONS(463), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(466), - [aux_sym_primitive_type_token19] = ACTIONS(469), - [aux_sym_variable_definition_token1] = ACTIONS(472), - [aux_sym_variable_definition_token2] = ACTIONS(475), - [aux_sym_buffer_definition_token2] = ACTIONS(478), - [aux_sym_argument_mode_token1] = ACTIONS(481), - [aux_sym_if_statement_token1] = ACTIONS(484), - [aux_sym_repeat_statement_token1] = ACTIONS(487), - [aux_sym__procedure_terminator_token1] = ACTIONS(490), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(493), - [aux_sym__function_terminator_token1] = ACTIONS(496), - [aux_sym_interface_statement_token1] = ACTIONS(499), - [aux_sym_using_statement_token1] = ACTIONS(502), - [aux_sym_on_error_phrase_token1] = ACTIONS(505), - [aux_sym_on_error_phrase_token3] = ACTIONS(508), - [aux_sym_do_block_token1] = ACTIONS(511), - [aux_sym__case_terminator_token1] = ACTIONS(514), - [aux_sym_find_statement_token1] = ACTIONS(517), - [aux_sym_assign_statement_token1] = ACTIONS(520), - [aux_sym_catch_statement_token1] = ACTIONS(523), - [aux_sym_finally_statement_token1] = ACTIONS(526), - [aux_sym_accumulate_statement_token1] = ACTIONS(529), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(532), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(532), + [aux_sym__block_terminator_token1] = ACTIONS(447), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [273] = { - [sym_comment] = STATE(273), - [sym_include] = STATE(273), - [sym_assignment] = STATE(4539), + [268] = { + [sym_body] = STATE(4071), + [sym_comment] = STATE(268), + [sym_include] = STATE(268), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -47383,7 +46115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -47404,119 +46136,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), - [aux_sym_source_code_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(535), + [aux_sym_source_code_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(239), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(538), - [aux_sym_input_expression_token1] = ACTIONS(540), - [aux_sym_primitive_type_token19] = ACTIONS(543), - [aux_sym_variable_definition_token1] = ACTIONS(546), - [aux_sym_variable_definition_token2] = ACTIONS(549), - [aux_sym_buffer_definition_token2] = ACTIONS(552), - [aux_sym_argument_mode_token1] = ACTIONS(555), - [aux_sym_if_statement_token1] = ACTIONS(558), - [aux_sym_repeat_statement_token1] = ACTIONS(561), - [aux_sym__procedure_terminator_token1] = ACTIONS(564), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(567), - [aux_sym__function_terminator_token1] = ACTIONS(570), - [aux_sym_interface_statement_token1] = ACTIONS(573), - [aux_sym_using_statement_token1] = ACTIONS(576), - [aux_sym_on_error_phrase_token1] = ACTIONS(579), - [aux_sym_on_error_phrase_token3] = ACTIONS(582), - [aux_sym_do_block_token1] = ACTIONS(585), - [aux_sym__case_terminator_token1] = ACTIONS(588), - [aux_sym_find_statement_token1] = ACTIONS(591), - [aux_sym_assign_statement_token1] = ACTIONS(594), - [aux_sym_catch_statement_token1] = ACTIONS(597), - [aux_sym_finally_statement_token1] = ACTIONS(600), - [aux_sym_accumulate_statement_token1] = ACTIONS(603), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(606), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(606), + [aux_sym__block_terminator_token1] = ACTIONS(449), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), }, - [274] = { - [sym_comment] = STATE(274), - [sym_include] = STATE(274), - [sym_assignment] = STATE(4593), - [sym_variable_definition] = STATE(1332), - [sym_variable_assignment] = STATE(1332), - [sym_buffer_definition] = STATE(1332), - [sym_query_definition] = STATE(1332), - [sym_function_call_statement] = STATE(1332), - [sym_function_call] = STATE(4588), - [sym_if_statement] = STATE(1332), - [sym_label] = STATE(1340), - [sym_repeat_statement] = STATE(1332), - [sym_procedure_statement] = STATE(1332), - [sym_procedure_parameter_definition] = STATE(1332), - [sym_function_statement] = STATE(1332), - [sym_return_statement] = STATE(1332), - [sym_interface_statement] = STATE(1332), - [sym_using_statement] = STATE(1332), - [sym_class_statement] = STATE(1332), - [sym_object_access] = STATE(4586), - [sym_stream_definition] = STATE(1332), - [sym_input_close_statement] = STATE(1332), - [sym_output_close_statement] = STATE(1332), - [sym__stream_statement] = STATE(1332), - [sym_input_stream_statement] = STATE(1346), - [sym_output_stream_statement] = STATE(1346), - [sym_do_block] = STATE(1332), - [sym_case_statement] = STATE(1332), - [sym_for_statement] = STATE(1332), - [sym_find_statement] = STATE(1332), - [sym_abl_statement] = STATE(1332), - [sym_assign_statement] = STATE(1332), - [sym_catch_statement] = STATE(1332), - [sym_finally_statement] = STATE(1332), - [sym_accumulate_statement] = STATE(1332), - [sym_undo_statement] = STATE(1332), - [sym_error_scope_statement] = STATE(1332), - [sym_temp_table_definition] = STATE(1332), - [sym_on_statement] = STATE(1332), - [sym__statement] = STATE(1347), - [aux_sym_source_code_repeat1] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(609), - [sym_identifier] = ACTIONS(11), + [269] = { + [sym_comment] = STATE(269), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), + [sym_include] = STATE(269), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(587), + [aux_sym_qualified_name_repeat1] = STATE(708), + [aux_sym_can_find_expression_repeat2] = STATE(1848), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(13), - [aux_sym_primitive_type_token19] = ACTIONS(15), - [aux_sym_variable_definition_token1] = ACTIONS(17), - [aux_sym_variable_definition_token2] = ACTIONS(19), - [aux_sym_buffer_definition_token2] = ACTIONS(21), - [aux_sym_argument_mode_token1] = ACTIONS(23), - [aux_sym_if_statement_token1] = ACTIONS(25), - [aux_sym_repeat_statement_token1] = ACTIONS(27), - [aux_sym__procedure_terminator_token1] = ACTIONS(29), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(31), - [aux_sym__function_terminator_token1] = ACTIONS(33), - [aux_sym_interface_statement_token1] = ACTIONS(35), - [aux_sym_using_statement_token1] = ACTIONS(37), - [aux_sym_on_error_phrase_token1] = ACTIONS(39), - [aux_sym_on_error_phrase_token3] = ACTIONS(41), - [aux_sym_do_block_token1] = ACTIONS(43), - [aux_sym__case_terminator_token1] = ACTIONS(45), - [aux_sym_find_statement_token1] = ACTIONS(47), - [aux_sym_assign_statement_token1] = ACTIONS(49), - [aux_sym_catch_statement_token1] = ACTIONS(51), - [aux_sym_finally_statement_token1] = ACTIONS(53), - [aux_sym_accumulate_statement_token1] = ACTIONS(55), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(57), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(451), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), + [sym__namedot] = ACTIONS(397), }, - [275] = { - [sym_comment] = STATE(275), - [sym_include] = STATE(275), - [sym_assignment] = STATE(4539), + [270] = { + [sym_comment] = STATE(270), + [sym_include] = STATE(270), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(455), + [sym__terminator] = ACTIONS(455), + [anon_sym_LPAREN] = ACTIONS(455), + [anon_sym_RPAREN] = ACTIONS(455), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(455), + [anon_sym_LT_GT] = ACTIONS(455), + [anon_sym_EQ] = ACTIONS(455), + [anon_sym_GT] = ACTIONS(453), + [anon_sym_GT_EQ] = ACTIONS(455), + [aux_sym__comparison_operator_token1] = ACTIONS(455), + [aux_sym__comparison_operator_token2] = ACTIONS(455), + [aux_sym__comparison_operator_token3] = ACTIONS(455), + [aux_sym__comparison_operator_token4] = ACTIONS(455), + [aux_sym__comparison_operator_token5] = ACTIONS(455), + [aux_sym__comparison_operator_token6] = ACTIONS(455), + [aux_sym__comparison_operator_token7] = ACTIONS(455), + [aux_sym__comparison_operator_token8] = ACTIONS(455), + [aux_sym__comparison_operator_token9] = ACTIONS(455), + [aux_sym_variable_tuning_token1] = ACTIONS(455), + [aux_sym_variable_tuning_token2] = ACTIONS(455), + [aux_sym_variable_tuning_token3] = ACTIONS(455), + [aux_sym_variable_tuning_token4] = ACTIONS(455), + [aux_sym_variable_tuning_token5] = ACTIONS(455), + [aux_sym_variable_tuning_token6] = ACTIONS(455), + [anon_sym_COMMA] = ACTIONS(455), + [aux_sym_if_statement_token2] = ACTIONS(455), + [aux_sym_else_if_statement_token1] = ACTIONS(455), + [anon_sym_COLON] = ACTIONS(455), + [aux_sym_while_phrase_token1] = ACTIONS(455), + [aux_sym_property_tuning_token1] = ACTIONS(455), + [aux_sym_event_definition_token1] = ACTIONS(455), + [anon_sym_NO_DASHERROR] = ACTIONS(457), + [aux_sym_input_stream_tuning_token1] = ACTIONS(455), + [aux_sym_input_stream_tuning_token2] = ACTIONS(455), + [aux_sym_input_stream_tuning_token3] = ACTIONS(455), + [aux_sym_input_stream_tuning_token4] = ACTIONS(455), + [aux_sym_input_stream_tuning_token5] = ACTIONS(455), + [aux_sym_input_stream_tuning_token6] = ACTIONS(455), + [aux_sym_input_stream_tuning_token7] = ACTIONS(455), + [aux_sym_input_stream_tuning_token8] = ACTIONS(455), + [aux_sym_input_stream_tuning_token9] = ACTIONS(455), + [aux_sym_input_stream_tuning_token11] = ACTIONS(455), + [aux_sym_output_stream_tuning_token1] = ACTIONS(455), + [aux_sym_output_stream_tuning_token2] = ACTIONS(455), + [aux_sym_output_stream_tuning_token3] = ACTIONS(455), + [aux_sym_output_stream_tuning_token4] = ACTIONS(455), + [aux_sym_output_stream_tuning_token5] = ACTIONS(455), + [aux_sym_output_stream_tuning_token6] = ACTIONS(455), + [aux_sym_output_stream_tuning_token7] = ACTIONS(455), + [aux_sym_output_stream_tuning_token8] = ACTIONS(455), + [aux_sym_output_stream_statement_token1] = ACTIONS(455), + [aux_sym_on_error_phrase_token1] = ACTIONS(455), + [aux_sym_stop_after_phrase_token1] = ACTIONS(455), + [aux_sym_do_tuning_token1] = ACTIONS(455), + [anon_sym_BY] = ACTIONS(455), + [aux_sym_of_token1] = ACTIONS(455), + [aux_sym_field_definition_token1] = ACTIONS(455), + [aux_sym_index_definition_token1] = ACTIONS(455), + [aux_sym_on_statement_token1] = ACTIONS(455), + [sym__or_operator] = ACTIONS(455), + [sym__and_operator] = ACTIONS(455), + }, + [271] = { + [sym_comment] = STATE(271), + [sym_include] = STATE(271), + [sym_assignment] = STATE(4550), [sym_variable_definition] = STATE(1458), [sym_variable_assignment] = STATE(1458), [sym_buffer_definition] = STATE(1458), [sym_query_definition] = STATE(1458), [sym_function_call_statement] = STATE(1458), - [sym_function_call] = STATE(4546), + [sym_function_call] = STATE(4603), [sym_if_statement] = STATE(1458), [sym_label] = STATE(1459), [sym_repeat_statement] = STATE(1458), @@ -47527,7 +46332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interface_statement] = STATE(1458), [sym_using_statement] = STATE(1458), [sym_class_statement] = STATE(1458), - [sym_object_access] = STATE(4586), + [sym_object_access] = STATE(4574), [sym_stream_definition] = STATE(1458), [sym_input_close_statement] = STATE(1458), [sym_output_close_statement] = STATE(1458), @@ -47548,1030 +46353,1318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_temp_table_definition] = STATE(1458), [sym_on_statement] = STATE(1458), [sym__statement] = STATE(1461), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(239), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(459), + [aux_sym_input_expression_token1] = ACTIONS(243), + [aux_sym_primitive_type_token19] = ACTIONS(245), + [aux_sym_variable_definition_token1] = ACTIONS(247), + [aux_sym_variable_definition_token2] = ACTIONS(249), + [aux_sym_buffer_definition_token2] = ACTIONS(251), + [aux_sym_argument_mode_token1] = ACTIONS(253), + [aux_sym_if_statement_token1] = ACTIONS(255), + [aux_sym_repeat_statement_token1] = ACTIONS(257), + [aux_sym__procedure_terminator_token1] = ACTIONS(259), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(261), + [aux_sym__function_terminator_token1] = ACTIONS(263), + [aux_sym_interface_statement_token1] = ACTIONS(265), + [aux_sym_using_statement_token1] = ACTIONS(267), + [aux_sym_on_error_phrase_token1] = ACTIONS(269), + [aux_sym_on_error_phrase_token3] = ACTIONS(271), + [aux_sym_do_block_token1] = ACTIONS(273), + [aux_sym__case_terminator_token1] = ACTIONS(275), + [aux_sym_find_statement_token1] = ACTIONS(277), + [aux_sym_assign_statement_token1] = ACTIONS(279), + [aux_sym_catch_statement_token1] = ACTIONS(281), + [aux_sym_finally_statement_token1] = ACTIONS(283), + [aux_sym_accumulate_statement_token1] = ACTIONS(285), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(287), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(287), + }, + [272] = { + [sym_comment] = STATE(272), + [sym_include] = STATE(272), + [sym_assignment] = STATE(4578), + [sym_variable_definition] = STATE(1137), + [sym_variable_assignment] = STATE(1137), + [sym_buffer_definition] = STATE(1137), + [sym_query_definition] = STATE(1137), + [sym_function_call_statement] = STATE(1137), + [sym_function_call] = STATE(4576), + [sym_if_statement] = STATE(1137), + [sym_label] = STATE(1141), + [sym_repeat_statement] = STATE(1137), + [sym_procedure_statement] = STATE(1137), + [sym_procedure_parameter_definition] = STATE(1137), + [sym_function_statement] = STATE(1137), + [sym_return_statement] = STATE(1137), + [sym_interface_statement] = STATE(1137), + [sym_using_statement] = STATE(1137), + [sym_class_statement] = STATE(1137), + [sym_object_access] = STATE(4574), + [sym_stream_definition] = STATE(1137), + [sym_input_close_statement] = STATE(1137), + [sym_output_close_statement] = STATE(1137), + [sym__stream_statement] = STATE(1137), + [sym_input_stream_statement] = STATE(1142), + [sym_output_stream_statement] = STATE(1142), + [sym_do_block] = STATE(1137), + [sym_case_statement] = STATE(1137), + [sym_for_statement] = STATE(1137), + [sym_find_statement] = STATE(1137), + [sym_abl_statement] = STATE(1137), + [sym_assign_statement] = STATE(1137), + [sym_catch_statement] = STATE(1137), + [sym_finally_statement] = STATE(1137), + [sym_accumulate_statement] = STATE(1137), + [sym_undo_statement] = STATE(1137), + [sym_error_scope_statement] = STATE(1137), + [sym_temp_table_definition] = STATE(1137), + [sym_on_statement] = STATE(1137), + [sym__statement] = STATE(1144), [aux_sym_source_code_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(263), + [ts_builtin_sym_end] = ACTIONS(461), + [sym_identifier] = ACTIONS(11), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(611), - [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), + [aux_sym_input_expression_token1] = ACTIONS(13), + [aux_sym_primitive_type_token19] = ACTIONS(15), + [aux_sym_variable_definition_token1] = ACTIONS(17), + [aux_sym_variable_definition_token2] = ACTIONS(19), + [aux_sym_buffer_definition_token2] = ACTIONS(21), + [aux_sym_argument_mode_token1] = ACTIONS(23), + [aux_sym_if_statement_token1] = ACTIONS(25), + [aux_sym_repeat_statement_token1] = ACTIONS(27), + [aux_sym__procedure_terminator_token1] = ACTIONS(29), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(31), + [aux_sym__function_terminator_token1] = ACTIONS(33), + [aux_sym_interface_statement_token1] = ACTIONS(35), + [aux_sym_using_statement_token1] = ACTIONS(37), + [aux_sym_on_error_phrase_token1] = ACTIONS(39), + [aux_sym_on_error_phrase_token3] = ACTIONS(41), + [aux_sym_do_block_token1] = ACTIONS(43), + [aux_sym__case_terminator_token1] = ACTIONS(45), + [aux_sym_find_statement_token1] = ACTIONS(47), + [aux_sym_assign_statement_token1] = ACTIONS(49), + [aux_sym_catch_statement_token1] = ACTIONS(51), + [aux_sym_finally_statement_token1] = ACTIONS(53), + [aux_sym_accumulate_statement_token1] = ACTIONS(55), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(57), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(57), + }, + [273] = { + [sym_comment] = STATE(273), + [sym_include] = STATE(273), + [sym_assignment] = STATE(4578), + [sym_variable_definition] = STATE(1137), + [sym_variable_assignment] = STATE(1137), + [sym_buffer_definition] = STATE(1137), + [sym_query_definition] = STATE(1137), + [sym_function_call_statement] = STATE(1137), + [sym_function_call] = STATE(4576), + [sym_if_statement] = STATE(1137), + [sym_label] = STATE(1141), + [sym_repeat_statement] = STATE(1137), + [sym_procedure_statement] = STATE(1137), + [sym_procedure_parameter_definition] = STATE(1137), + [sym_function_statement] = STATE(1137), + [sym_return_statement] = STATE(1137), + [sym_interface_statement] = STATE(1137), + [sym_using_statement] = STATE(1137), + [sym_class_statement] = STATE(1137), + [sym_object_access] = STATE(4574), + [sym_stream_definition] = STATE(1137), + [sym_input_close_statement] = STATE(1137), + [sym_output_close_statement] = STATE(1137), + [sym__stream_statement] = STATE(1137), + [sym_input_stream_statement] = STATE(1142), + [sym_output_stream_statement] = STATE(1142), + [sym_do_block] = STATE(1137), + [sym_case_statement] = STATE(1137), + [sym_for_statement] = STATE(1137), + [sym_find_statement] = STATE(1137), + [sym_abl_statement] = STATE(1137), + [sym_assign_statement] = STATE(1137), + [sym_catch_statement] = STATE(1137), + [sym_finally_statement] = STATE(1137), + [sym_accumulate_statement] = STATE(1137), + [sym_undo_statement] = STATE(1137), + [sym_error_scope_statement] = STATE(1137), + [sym_temp_table_definition] = STATE(1137), + [sym_on_statement] = STATE(1137), + [sym__statement] = STATE(1144), + [aux_sym_source_code_repeat1] = STATE(273), + [ts_builtin_sym_end] = ACTIONS(463), + [sym_identifier] = ACTIONS(465), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym_input_expression_token1] = ACTIONS(468), + [aux_sym_primitive_type_token19] = ACTIONS(471), + [aux_sym_variable_definition_token1] = ACTIONS(474), + [aux_sym_variable_definition_token2] = ACTIONS(477), + [aux_sym_buffer_definition_token2] = ACTIONS(480), + [aux_sym_argument_mode_token1] = ACTIONS(483), + [aux_sym_if_statement_token1] = ACTIONS(486), + [aux_sym_repeat_statement_token1] = ACTIONS(489), + [aux_sym__procedure_terminator_token1] = ACTIONS(492), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(495), + [aux_sym__function_terminator_token1] = ACTIONS(498), + [aux_sym_interface_statement_token1] = ACTIONS(501), + [aux_sym_using_statement_token1] = ACTIONS(504), + [aux_sym_on_error_phrase_token1] = ACTIONS(507), + [aux_sym_on_error_phrase_token3] = ACTIONS(510), + [aux_sym_do_block_token1] = ACTIONS(513), + [aux_sym__case_terminator_token1] = ACTIONS(516), + [aux_sym_find_statement_token1] = ACTIONS(519), + [aux_sym_assign_statement_token1] = ACTIONS(522), + [aux_sym_catch_statement_token1] = ACTIONS(525), + [aux_sym_finally_statement_token1] = ACTIONS(528), + [aux_sym_accumulate_statement_token1] = ACTIONS(531), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(534), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(534), + }, + [274] = { + [sym_comment] = STATE(274), + [sym_include] = STATE(274), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(171), + [anon_sym_LBRACE] = ACTIONS(65), + [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_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_property_tuning_token1] = ACTIONS(173), + [aux_sym_event_definition_token1] = ACTIONS(173), + [anon_sym_NO_DASHERROR] = ACTIONS(537), + [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_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), + }, + [275] = { + [sym_comment] = STATE(275), + [sym_include] = STATE(275), + [sym_assignment] = STATE(4550), + [sym_variable_definition] = STATE(1458), + [sym_variable_assignment] = STATE(1458), + [sym_buffer_definition] = STATE(1458), + [sym_query_definition] = STATE(1458), + [sym_function_call_statement] = STATE(1458), + [sym_function_call] = STATE(4603), + [sym_if_statement] = STATE(1458), + [sym_label] = STATE(1459), + [sym_repeat_statement] = STATE(1458), + [sym_procedure_statement] = STATE(1458), + [sym_procedure_parameter_definition] = STATE(1458), + [sym_function_statement] = STATE(1458), + [sym_return_statement] = STATE(1458), + [sym_interface_statement] = STATE(1458), + [sym_using_statement] = STATE(1458), + [sym_class_statement] = STATE(1458), + [sym_object_access] = STATE(4574), + [sym_stream_definition] = STATE(1458), + [sym_input_close_statement] = STATE(1458), + [sym_output_close_statement] = STATE(1458), + [sym__stream_statement] = STATE(1458), + [sym_input_stream_statement] = STATE(1460), + [sym_output_stream_statement] = STATE(1460), + [sym_do_block] = STATE(1458), + [sym_case_statement] = STATE(1458), + [sym_for_statement] = STATE(1458), + [sym_find_statement] = STATE(1458), + [sym_abl_statement] = STATE(1458), + [sym_assign_statement] = STATE(1458), + [sym_catch_statement] = STATE(1458), + [sym_finally_statement] = STATE(1458), + [sym_accumulate_statement] = STATE(1458), + [sym_undo_statement] = STATE(1458), + [sym_error_scope_statement] = STATE(1458), + [sym_temp_table_definition] = STATE(1458), + [sym_on_statement] = STATE(1458), + [sym__statement] = STATE(1461), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(539), + [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), }, [276] = { [sym_comment] = STATE(276), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(276), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(594), - [aux_sym_can_find_expression_repeat2] = STATE(1859), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(587), + [aux_sym_can_find_expression_repeat2] = STATE(1848), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(457), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(451), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [277] = { [sym_comment] = STATE(277), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(277), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(593), - [aux_sym_can_find_expression_repeat2] = STATE(1877), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(588), + [aux_sym_can_find_expression_repeat2] = STATE(1845), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(447), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(443), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [278] = { [sym_comment] = STATE(278), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(278), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(603), - [aux_sym_can_find_expression_repeat2] = STATE(1875), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(591), + [aux_sym_can_find_expression_repeat2] = STATE(1840), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(417), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(433), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [279] = { [sym_comment] = STATE(279), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(279), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(591), - [aux_sym_can_find_expression_repeat2] = STATE(1890), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(593), + [aux_sym_can_find_expression_repeat2] = STATE(1863), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(433), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(401), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [280] = { [sym_comment] = STATE(280), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(280), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(604), - [aux_sym_can_find_expression_repeat2] = STATE(1871), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(598), + [aux_sym_can_find_expression_repeat2] = STATE(1836), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(425), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(369), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [281] = { [sym_comment] = STATE(281), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(281), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(599), - [aux_sym_can_find_expression_repeat2] = STATE(1853), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(596), + [aux_sym_can_find_expression_repeat2] = STATE(1867), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(421), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(435), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [282] = { [sym_comment] = STATE(282), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(282), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(597), - [aux_sym_can_find_expression_repeat2] = STATE(1876), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(594), + [aux_sym_can_find_expression_repeat2] = STATE(1842), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(459), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(441), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [283] = { [sym_comment] = STATE(283), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(283), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(598), - [aux_sym_can_find_expression_repeat2] = STATE(1850), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(589), + [aux_sym_can_find_expression_repeat2] = STATE(1871), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(375), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(419), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [284] = { [sym_comment] = STATE(284), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(284), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(605), - [aux_sym_can_find_expression_repeat2] = STATE(1880), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(584), + [aux_sym_can_find_expression_repeat2] = STATE(1856), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(441), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(437), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [285] = { [sym_comment] = STATE(285), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(285), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(602), - [aux_sym_can_find_expression_repeat2] = STATE(1878), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(590), + [aux_sym_can_find_expression_repeat2] = STATE(1837), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(445), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(427), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [286] = { [sym_comment] = STATE(286), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(286), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(596), - [aux_sym_can_find_expression_repeat2] = STATE(1852), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(585), + [aux_sym_can_find_expression_repeat2] = STATE(1843), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), [anon_sym_RPAREN] = ACTIONS(405), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [287] = { [sym_comment] = STATE(287), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(287), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(601), - [aux_sym_can_find_expression_repeat2] = STATE(1883), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(592), + [aux_sym_can_find_expression_repeat2] = STATE(1834), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(451), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(399), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [288] = { [sym_comment] = STATE(288), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(288), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), [sym__expression] = STATE(595), - [aux_sym_can_find_expression_repeat2] = STATE(1884), - [sym_identifier] = ACTIONS(325), + [aux_sym_can_find_expression_repeat2] = STATE(1841), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(449), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(403), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, [289] = { [sym_comment] = STATE(289), - [sym_constant] = STATE(20), - [sym_qualified_name] = STATE(20), - [sym_boolean_literal] = STATE(20), - [sym__decimal_literal] = STATE(11), - [sym_number_literal] = STATE(20), - [sym__string_literal] = STATE(20), - [sym_double_quoted_string] = STATE(6), - [sym_single_quoted_string] = STATE(6), - [sym_parenthesized_expression] = STATE(20), - [sym_logical_expression] = STATE(28), - [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(28), - [sym_multiplicative_expression] = STATE(28), - [sym_comparison_expression] = STATE(28), - [sym__binary_expression] = STATE(20), + [sym_constant] = STATE(18), + [sym_qualified_name] = STATE(18), + [sym_boolean_literal] = STATE(18), + [sym__decimal_literal] = STATE(27), + [sym_number_literal] = STATE(18), + [sym__string_literal] = STATE(18), + [sym_double_quoted_string] = STATE(17), + [sym_single_quoted_string] = STATE(17), + [sym_parenthesized_expression] = STATE(18), + [sym_logical_expression] = STATE(32), + [sym_unary_expression] = STATE(18), + [sym_ambiguous_expression] = STATE(18), + [sym_current_changed_expression] = STATE(18), + [sym_locked_expression] = STATE(18), + [sym_input_expression] = STATE(18), + [sym_additive_expression] = STATE(32), + [sym_multiplicative_expression] = STATE(32), + [sym_comparison_expression] = STATE(32), + [sym__binary_expression] = STATE(18), [sym_include] = STATE(289), - [sym_function_call] = STATE(20), - [sym_ternary_expression] = STATE(20), - [sym_new_expression] = STATE(20), - [sym_object_access] = STATE(29), - [sym_where_clause] = STATE(2196), - [sym_query_tuning] = STATE(2196), - [sym_can_find_expression] = STATE(20), - [sym_of] = STATE(2196), - [sym__using_first] = STATE(1938), - [sym_accumulate_expression] = STATE(20), - [sym_available_expression] = STATE(20), - [sym__expression] = STATE(590), - [aux_sym_can_find_expression_repeat2] = STATE(1849), - [sym_identifier] = ACTIONS(325), + [sym_function_call] = STATE(18), + [sym_ternary_expression] = STATE(18), + [sym_new_expression] = STATE(18), + [sym_object_access] = STATE(34), + [sym_where_clause] = STATE(2125), + [sym_query_tuning] = STATE(2125), + [sym_can_find_expression] = STATE(18), + [sym_of] = STATE(2125), + [sym__using_first] = STATE(1916), + [sym_accumulate_expression] = STATE(18), + [sym_available_expression] = STATE(18), + [sym__expression] = STATE(583), + [aux_sym_can_find_expression_repeat2] = STATE(1847), + [sym_identifier] = ACTIONS(317), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(327), - [sym_null_expression] = ACTIONS(329), - [aux_sym_boolean_literal_token1] = ACTIONS(331), - [aux_sym_boolean_literal_token2] = ACTIONS(331), - [aux_sym_boolean_literal_token3] = ACTIONS(331), - [aux_sym_boolean_literal_token4] = ACTIONS(331), - [sym__integer_literal] = ACTIONS(333), - [anon_sym_DQUOTE] = ACTIONS(335), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(407), - [aux_sym_unary_expression_token1] = ACTIONS(343), - [aux_sym_unary_expression_token2] = ACTIONS(377), - [aux_sym_ambiguous_expression_token1] = ACTIONS(379), - [aux_sym_current_changed_expression_token1] = ACTIONS(381), - [aux_sym_locked_expression_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(385), - [aux_sym_scope_tuning_token1] = ACTIONS(387), - [aux_sym_if_statement_token1] = ACTIONS(389), - [aux_sym_using_statement_token1] = ACTIONS(391), - [aux_sym_where_clause_token1] = ACTIONS(393), - [aux_sym_query_tuning_token1] = ACTIONS(395), - [aux_sym_query_tuning_token2] = ACTIONS(395), - [aux_sym_query_tuning_token3] = ACTIONS(395), - [aux_sym_query_tuning_token4] = ACTIONS(395), - [aux_sym_query_tuning_token5] = ACTIONS(395), - [aux_sym_query_tuning_token6] = ACTIONS(397), - [aux_sym_can_find_expression_token1] = ACTIONS(361), - [aux_sym_of_token1] = ACTIONS(399), - [aux_sym_accumulate_expression_token1] = ACTIONS(401), - [aux_sym_available_expression_token1] = ACTIONS(367), - [aux_sym_available_expression_token2] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(319), + [sym_null_expression] = ACTIONS(321), + [aux_sym_boolean_literal_token1] = ACTIONS(323), + [aux_sym_boolean_literal_token2] = ACTIONS(323), + [aux_sym_boolean_literal_token3] = ACTIONS(323), + [aux_sym_boolean_literal_token4] = ACTIONS(323), + [sym__integer_literal] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(409), + [aux_sym_unary_expression_token1] = ACTIONS(335), + [aux_sym_unary_expression_token2] = ACTIONS(371), + [aux_sym_ambiguous_expression_token1] = ACTIONS(373), + [aux_sym_current_changed_expression_token1] = ACTIONS(375), + [aux_sym_locked_expression_token1] = ACTIONS(377), + [aux_sym_input_expression_token1] = ACTIONS(379), + [aux_sym_scope_tuning_token1] = ACTIONS(381), + [aux_sym_if_statement_token1] = ACTIONS(383), + [aux_sym_using_statement_token1] = ACTIONS(385), + [aux_sym_where_clause_token1] = ACTIONS(387), + [aux_sym_query_tuning_token1] = ACTIONS(389), + [aux_sym_query_tuning_token2] = ACTIONS(389), + [aux_sym_query_tuning_token3] = ACTIONS(389), + [aux_sym_query_tuning_token4] = ACTIONS(389), + [aux_sym_query_tuning_token5] = ACTIONS(389), + [aux_sym_query_tuning_token6] = ACTIONS(391), + [aux_sym_can_find_expression_token1] = ACTIONS(353), + [aux_sym_of_token1] = ACTIONS(393), + [aux_sym_accumulate_expression_token1] = ACTIONS(395), + [aux_sym_available_expression_token1] = ACTIONS(359), + [aux_sym_available_expression_token2] = ACTIONS(359), }, }; @@ -48581,79 +47674,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(613), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - STATE(4621), 1, + STATE(4255), 1, sym__function_call_arguments, - ACTIONS(357), 2, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(290), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -48677,79 +47770,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(615), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - STATE(4642), 1, + STATE(4304), 1, sym__function_call_arguments, - ACTIONS(357), 2, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(291), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -48773,79 +47866,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(617), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - STATE(4603), 1, + STATE(4390), 1, sym__function_call_arguments, - ACTIONS(357), 2, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(292), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -48869,79 +47962,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(333), 1, anon_sym_RPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4219), 1, - sym_argument_mode, - STATE(4551), 1, + STATE(4025), 1, sym__function_call_arguments, - ACTIONS(357), 2, + STATE(4089), 1, + sym_argument_mode, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(293), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -48965,79 +48058,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(619), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - STATE(4315), 1, + STATE(4619), 1, sym__function_call_arguments, - ACTIONS(357), 2, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(294), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49061,79 +48154,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(621), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - STATE(4383), 1, + STATE(4269), 1, sym__function_call_arguments, - ACTIONS(357), 2, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(295), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49157,79 +48250,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(623), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4210), 1, - sym__function_call_arguments, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - ACTIONS(357), 2, + STATE(4636), 1, + sym__function_call_arguments, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(296), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49253,79 +48346,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(341), 1, - anon_sym_RPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, + ACTIONS(615), 1, + anon_sym_RPAREN, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(843), 1, + STATE(1094), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - STATE(4551), 1, + STATE(4304), 1, sym__function_call_arguments, - ACTIONS(357), 2, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(297), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49349,79 +48442,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(625), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - STATE(4364), 1, + STATE(4463), 1, sym__function_call_arguments, - ACTIONS(357), 2, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(298), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49445,79 +48538,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(627), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - STATE(4228), 1, + STATE(4572), 1, sym__function_call_arguments, - ACTIONS(357), 2, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(299), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49541,79 +48634,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(629), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4083), 1, + STATE(4054), 1, sym__function_call_arguments, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - ACTIONS(357), 2, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(300), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49637,79 +48730,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(631), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - STATE(4611), 1, + STATE(4278), 1, sym__function_call_arguments, - ACTIONS(357), 2, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(301), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49733,79 +48826,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(633), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - STATE(4631), 1, + STATE(4553), 1, sym__function_call_arguments, - ACTIONS(357), 2, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(302), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49829,79 +48922,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(635), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - STATE(4521), 1, + STATE(4580), 1, sym__function_call_arguments, - ACTIONS(357), 2, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(303), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49925,79 +49018,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(637), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - STATE(4394), 1, + STATE(4470), 1, sym__function_call_arguments, - ACTIONS(357), 2, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(304), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50021,79 +49114,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(639), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - STATE(4339), 1, + STATE(4502), 1, sym__function_call_arguments, - ACTIONS(357), 2, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(305), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50117,79 +49210,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(641), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4126), 1, - sym__function_call_arguments, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - ACTIONS(357), 2, + STATE(4130), 1, + sym__function_call_arguments, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(306), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50213,79 +49306,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, ACTIONS(643), 1, anon_sym_RPAREN, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(849), 1, + STATE(1080), 1, sym__expression, - STATE(3485), 1, + STATE(3346), 1, sym_function_call_argument, - STATE(3603), 1, + STATE(3838), 1, sym__function_argument_with_mode, - STATE(4144), 1, - sym__function_call_arguments, - STATE(4219), 1, + STATE(4089), 1, sym_argument_mode, - ACTIONS(357), 2, + STATE(4584), 1, + sym__function_call_arguments, + ACTIONS(349), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(307), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50309,78 +49402,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(114), 1, - sym__namecolon, - ACTIONS(645), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(649), 1, - sym__terminator, - ACTIONS(651), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(655), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(661), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(663), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(675), 1, - anon_sym_EQ, - ACTIONS(677), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(681), 1, - anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(14), 1, - aux_sym_object_access_repeat1, - STATE(323), 1, - sym__expression, - STATE(331), 1, - aux_sym_abl_statement_repeat1, - STATE(559), 1, + ACTIONS(645), 1, + anon_sym_RPAREN, + STATE(27), 1, sym__decimal_literal, - STATE(574), 1, + STATE(34), 1, sym_object_access, - ACTIONS(687), 2, + STATE(1080), 1, + sym__expression, + STATE(3346), 1, + sym_function_call_argument, + STATE(3838), 1, + sym__function_argument_with_mode, + STATE(4089), 1, + sym_argument_mode, + STATE(4552), 1, + sym__function_call_arguments, + ACTIONS(349), 2, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(17), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(308), 2, sym_comment, sym_include, - STATE(557), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(653), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50399,83 +49493,84 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [2469] = 34, + [2470] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(114), 1, - sym__namecolon, - ACTIONS(645), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(651), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(655), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(661), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(663), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(345), 1, aux_sym_input_expression_token1, - ACTIONS(675), 1, - anon_sym_EQ, - ACTIONS(677), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(689), 1, - sym__terminator, - ACTIONS(691), 1, - anon_sym_COLON, - STATE(14), 1, - aux_sym_object_access_repeat1, - STATE(323), 1, - sym__expression, - STATE(336), 1, - aux_sym_abl_statement_repeat1, - STATE(559), 1, + ACTIONS(647), 1, + anon_sym_RPAREN, + STATE(27), 1, sym__decimal_literal, - STATE(574), 1, + STATE(34), 1, sym_object_access, - ACTIONS(687), 2, + STATE(1080), 1, + sym__expression, + STATE(3346), 1, + sym_function_call_argument, + STATE(3838), 1, + sym__function_argument_with_mode, + STATE(4089), 1, + sym_argument_mode, + STATE(4549), 1, + sym__function_call_arguments, + ACTIONS(349), 2, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(17), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(309), 2, sym_comment, sym_include, - STATE(557), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(653), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50494,83 +49589,83 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [2598] = 34, + [2600] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(114), 1, - sym__namecolon, - ACTIONS(645), 1, + ACTIONS(649), 1, sym_identifier, - ACTIONS(647), 1, - anon_sym_LBRACE, ACTIONS(651), 1, - sym_null_expression, + anon_sym_LBRACE, + ACTIONS(653), 1, + sym__terminator, ACTIONS(655), 1, + sym_null_expression, + ACTIONS(659), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(661), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(663), 1, anon_sym_SQUOTE, - ACTIONS(661), 1, + ACTIONS(665), 1, anon_sym_LPAREN, - ACTIONS(663), 1, + ACTIONS(667), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(677), 1, aux_sym_input_expression_token1, - ACTIONS(675), 1, + ACTIONS(679), 1, anon_sym_EQ, - ACTIONS(677), 1, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, - aux_sym_if_statement_token1, ACTIONS(683), 1, - aux_sym_can_find_expression_token1, + aux_sym_if_statement_token1, ACTIONS(685), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, anon_sym_COLON, + ACTIONS(687), 1, + aux_sym_can_find_expression_token1, + ACTIONS(689), 1, + aux_sym_accumulate_expression_token1, ACTIONS(693), 1, - sym__terminator, - STATE(14), 1, - aux_sym_object_access_repeat1, - STATE(323), 1, - sym__expression, - STATE(329), 1, + sym__namecolon, + STATE(318), 1, aux_sym_abl_statement_repeat1, - STATE(559), 1, - sym__decimal_literal, - STATE(574), 1, + STATE(514), 1, + sym__expression, + STATE(556), 1, sym_object_access, - ACTIONS(687), 2, + STATE(577), 1, + sym__decimal_literal, + STATE(3064), 1, + aux_sym_object_access_repeat1, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(310), 2, sym_comment, sym_include, - STATE(557), 2, + STATE(551), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(574), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(578), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50589,83 +49684,83 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [2727] = 34, + [2729] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(114), 1, - sym__namecolon, - ACTIONS(645), 1, + ACTIONS(649), 1, sym_identifier, - ACTIONS(647), 1, - anon_sym_LBRACE, ACTIONS(651), 1, - sym_null_expression, + anon_sym_LBRACE, ACTIONS(655), 1, + sym_null_expression, + ACTIONS(659), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(661), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(663), 1, anon_sym_SQUOTE, - ACTIONS(661), 1, + ACTIONS(665), 1, anon_sym_LPAREN, - ACTIONS(663), 1, + ACTIONS(667), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(677), 1, aux_sym_input_expression_token1, - ACTIONS(675), 1, + ACTIONS(679), 1, anon_sym_EQ, - ACTIONS(677), 1, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, - aux_sym_if_statement_token1, ACTIONS(683), 1, + aux_sym_if_statement_token1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - anon_sym_COLON, + ACTIONS(693), 1, + sym__namecolon, ACTIONS(695), 1, sym__terminator, - STATE(14), 1, - aux_sym_object_access_repeat1, - STATE(323), 1, - sym__expression, - STATE(334), 1, + ACTIONS(697), 1, + anon_sym_COLON, + STATE(320), 1, aux_sym_abl_statement_repeat1, - STATE(559), 1, - sym__decimal_literal, - STATE(574), 1, + STATE(514), 1, + sym__expression, + STATE(556), 1, sym_object_access, - ACTIONS(687), 2, + STATE(577), 1, + sym__decimal_literal, + STATE(3064), 1, + aux_sym_object_access_repeat1, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(311), 2, sym_comment, sym_include, - STATE(557), 2, + STATE(551), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(574), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(578), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50684,83 +49779,83 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [2856] = 34, + [2858] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(114), 1, - sym__namecolon, - ACTIONS(645), 1, + ACTIONS(649), 1, sym_identifier, - ACTIONS(647), 1, - anon_sym_LBRACE, ACTIONS(651), 1, - sym_null_expression, + anon_sym_LBRACE, ACTIONS(655), 1, + sym_null_expression, + ACTIONS(659), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(661), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(663), 1, anon_sym_SQUOTE, - ACTIONS(661), 1, + ACTIONS(665), 1, anon_sym_LPAREN, - ACTIONS(663), 1, + ACTIONS(667), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(677), 1, aux_sym_input_expression_token1, - ACTIONS(675), 1, + ACTIONS(679), 1, anon_sym_EQ, - ACTIONS(677), 1, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, - aux_sym_if_statement_token1, ACTIONS(683), 1, + aux_sym_if_statement_token1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, - ACTIONS(697), 1, - sym__terminator, + ACTIONS(693), 1, + sym__namecolon, ACTIONS(699), 1, + sym__terminator, + ACTIONS(701), 1, anon_sym_COLON, - STATE(14), 1, - aux_sym_object_access_repeat1, - STATE(323), 1, - sym__expression, - STATE(328), 1, + STATE(321), 1, aux_sym_abl_statement_repeat1, - STATE(559), 1, - sym__decimal_literal, - STATE(574), 1, + STATE(514), 1, + sym__expression, + STATE(556), 1, sym_object_access, - ACTIONS(687), 2, + STATE(577), 1, + sym__decimal_literal, + STATE(3064), 1, + aux_sym_object_access_repeat1, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(312), 2, sym_comment, sym_include, - STATE(557), 2, + STATE(551), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(574), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(578), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50779,80 +49874,83 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [2985] = 32, + [2987] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(649), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(651), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(655), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(659), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(661), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(663), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(665), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(667), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(677), 1, aux_sym_input_expression_token1, - ACTIONS(355), 1, + ACTIONS(679), 1, + anon_sym_EQ, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(683), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(849), 1, + ACTIONS(693), 1, + sym__namecolon, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(703), 1, + sym__terminator, + STATE(319), 1, + aux_sym_abl_statement_repeat1, + STATE(514), 1, sym__expression, - STATE(3603), 1, - sym__function_argument_with_mode, - STATE(3727), 1, - sym_function_call_argument, - STATE(4219), 1, - sym_argument_mode, - ACTIONS(357), 2, - aux_sym_argument_mode_token1, - aux_sym_argument_mode_token2, - ACTIONS(367), 2, + STATE(556), 1, + sym_object_access, + STATE(577), 1, + sym__decimal_literal, + STATE(3064), 1, + aux_sym_object_access_repeat1, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(313), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(551), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(574), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(578), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50871,963 +49969,776 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [3109] = 12, + [3116] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(446), 1, - sym__comparison_operator, - STATE(450), 1, - sym__multiplicative_operator, - STATE(452), 1, - sym__additive_operator, - STATE(453), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(314), 2, - sym_comment, - sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 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(701), 24, - anon_sym_LBRACE, + ACTIONS(649), 1, sym_identifier, - sym__terminator, + ACTIONS(651), 1, + anon_sym_LBRACE, + ACTIONS(655), 1, sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(659), 1, sym__integer_literal, + ACTIONS(661), 1, anon_sym_DQUOTE, + ACTIONS(663), 1, anon_sym_SQUOTE, + ACTIONS(665), 1, anon_sym_LPAREN, + ACTIONS(667), 1, aux_sym_unary_expression_token1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, + ACTIONS(677), 1, aux_sym_input_expression_token1, + ACTIONS(679), 1, + anon_sym_EQ, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_if_statement_token1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [3191] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(709), 1, - sym__namedot, - ACTIONS(711), 1, + ACTIONS(693), 1, sym__namecolon, - STATE(350), 1, - aux_sym_qualified_name_repeat1, - STATE(351), 1, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(705), 1, + sym__terminator, + STATE(323), 1, + aux_sym_abl_statement_repeat1, + STATE(514), 1, + sym__expression, + STATE(556), 1, + sym_object_access, + STATE(577), 1, + sym__decimal_literal, + STATE(3064), 1, aux_sym_object_access_repeat1, - STATE(315), 2, + ACTIONS(691), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(314), 2, sym_comment, sym_include, - ACTIONS(127), 48, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, - anon_sym_STAR, - sym__terminator, - sym_null_expression, + STATE(551), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, + STATE(574), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(578), 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, + [3245] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(317), 1, + sym_identifier, + ACTIONS(319), 1, + anon_sym_LBRACE, + ACTIONS(321), 1, + sym_null_expression, + ACTIONS(325), 1, sym__integer_literal, + ACTIONS(327), 1, anon_sym_DQUOTE, + ACTIONS(329), 1, anon_sym_SQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(335), 1, aux_sym_unary_expression_token1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, + ACTIONS(345), 1, 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, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, + ACTIONS(351), 1, aux_sym_if_statement_token1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, + STATE(27), 1, + sym__decimal_literal, + STATE(34), 1, + sym_object_access, + STATE(1080), 1, + sym__expression, + STATE(3793), 1, + sym_function_call_argument, + STATE(3838), 1, + sym__function_argument_with_mode, + STATE(4089), 1, + sym_argument_mode, + ACTIONS(349), 2, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [3267] = 8, + STATE(17), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(315), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(32), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(18), 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, + [3369] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(446), 1, - sym__comparison_operator, - STATE(450), 1, - sym__multiplicative_operator, - STATE(452), 1, - sym__additive_operator, - STATE(453), 1, - sym__logical_operator, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(709), 1, + aux_sym_input_expression_token1, + ACTIONS(711), 1, + aux_sym_primitive_type_token19, + ACTIONS(715), 1, + aux_sym_buffer_definition_token2, + ACTIONS(717), 1, + aux_sym_argument_mode_token1, + ACTIONS(719), 1, + aux_sym_repeat_statement_token1, + ACTIONS(721), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(723), 1, + aux_sym_interface_statement_token1, + ACTIONS(725), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(727), 1, + aux_sym_on_error_phrase_token3, + ACTIONS(729), 1, + aux_sym_do_block_token1, + ACTIONS(731), 1, + aux_sym__case_terminator_token1, + ACTIONS(733), 1, + aux_sym_find_statement_token1, + ACTIONS(735), 1, + aux_sym_assign_statement_token1, + ACTIONS(737), 1, + aux_sym_accumulate_statement_token1, + STATE(3051), 1, + sym_label, + STATE(3237), 1, + sym__case_branch_body, + STATE(4102), 1, + sym_function_call, + STATE(4106), 1, + sym_assignment, + STATE(4574), 1, + sym_object_access, + ACTIONS(713), 2, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + ACTIONS(739), 2, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, STATE(316), 2, sym_comment, sym_include, - ACTIONS(245), 49, - anon_sym_SLASH, - anon_sym_LBRACE, + STATE(3242), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(3353), 2, + sym_do_block, + sym__terminated_statement, + STATE(3082), 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, + [3484] = 29, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(741), 1, sym_identifier, - anon_sym_STAR, + ACTIONS(744), 1, + anon_sym_LBRACE, + ACTIONS(747), 1, sym__terminator, + ACTIONS(749), 1, sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(755), 1, sym__integer_literal, + ACTIONS(758), 1, anon_sym_DQUOTE, + ACTIONS(761), 1, anon_sym_SQUOTE, + ACTIONS(764), 1, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(767), 1, aux_sym_unary_expression_token1, + ACTIONS(770), 1, aux_sym_unary_expression_token2, + ACTIONS(773), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(776), 1, aux_sym_current_changed_expression_token1, + ACTIONS(779), 1, aux_sym_locked_expression_token1, + ACTIONS(782), 1, 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, + ACTIONS(785), 1, aux_sym_scope_tuning_token1, + ACTIONS(788), 1, aux_sym_if_statement_token1, + ACTIONS(791), 1, aux_sym_can_find_expression_token1, + ACTIONS(794), 1, aux_sym_accumulate_expression_token1, + STATE(514), 1, + sym__expression, + STATE(556), 1, + sym_object_access, + STATE(577), 1, + sym__decimal_literal, + ACTIONS(797), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [3341] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(709), 1, - sym__namedot, - ACTIONS(711), 1, - sym__namecolon, - STATE(350), 1, - aux_sym_qualified_name_repeat1, - STATE(351), 1, - aux_sym_object_access_repeat1, - STATE(317), 2, + STATE(551), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(317), 3, sym_comment, sym_include, - ACTIONS(108), 48, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, - anon_sym_STAR, - sym__terminator, - sym_null_expression, + aux_sym_abl_statement_repeat1, + ACTIONS(752), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, + STATE(574), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(578), 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, + [3599] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(649), 1, + sym_identifier, + ACTIONS(651), 1, + anon_sym_LBRACE, + ACTIONS(655), 1, + sym_null_expression, + ACTIONS(659), 1, sym__integer_literal, + ACTIONS(661), 1, anon_sym_DQUOTE, + ACTIONS(663), 1, anon_sym_SQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(667), 1, aux_sym_unary_expression_token1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, + ACTIONS(677), 1, 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, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_if_statement_token1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, + ACTIONS(800), 1, + sym__terminator, + ACTIONS(802), 1, + anon_sym_LPAREN, + STATE(317), 1, + aux_sym_abl_statement_repeat1, + STATE(514), 1, + sym__expression, + STATE(556), 1, + sym_object_access, + STATE(577), 1, + sym__decimal_literal, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [3417] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(446), 1, - sym__comparison_operator, - STATE(450), 1, - sym__multiplicative_operator, - STATE(452), 1, - sym__additive_operator, - STATE(453), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, STATE(318), 2, sym_comment, sym_include, - ACTIONS(239), 45, - anon_sym_LBRACE, - sym_identifier, - sym__terminator, - sym_null_expression, + STATE(551), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, + STATE(574), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(578), 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, + [3716] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(649), 1, + sym_identifier, + ACTIONS(651), 1, + anon_sym_LBRACE, + ACTIONS(655), 1, + sym_null_expression, + ACTIONS(659), 1, sym__integer_literal, + ACTIONS(661), 1, anon_sym_DQUOTE, + ACTIONS(663), 1, anon_sym_SQUOTE, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(667), 1, aux_sym_unary_expression_token1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, + ACTIONS(677), 1, aux_sym_input_expression_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_if_statement_token1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, + ACTIONS(802), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + sym__terminator, + STATE(317), 1, + aux_sym_abl_statement_repeat1, + STATE(514), 1, + sym__expression, + STATE(556), 1, + sym_object_access, + STATE(577), 1, + sym__decimal_literal, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [3495] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(446), 1, - sym__comparison_operator, - STATE(450), 1, - sym__multiplicative_operator, - STATE(452), 1, - sym__additive_operator, - STATE(453), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, STATE(319), 2, sym_comment, sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 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(713), 24, - anon_sym_LBRACE, - sym_identifier, - sym__terminator, - sym_null_expression, + STATE(551), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(657), 4, 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, - [3577] = 11, + STATE(574), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(578), 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, + [3833] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(446), 1, - sym__comparison_operator, - STATE(450), 1, - sym__multiplicative_operator, - STATE(452), 1, - sym__additive_operator, - STATE(453), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(320), 2, - sym_comment, - sym_include, - ACTIONS(229), 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(215), 30, - anon_sym_LBRACE, + ACTIONS(649), 1, sym_identifier, - sym__terminator, + ACTIONS(651), 1, + anon_sym_LBRACE, + ACTIONS(655), 1, sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(659), 1, sym__integer_literal, + ACTIONS(661), 1, anon_sym_DQUOTE, + ACTIONS(663), 1, anon_sym_SQUOTE, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(667), 1, aux_sym_unary_expression_token1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, + ACTIONS(677), 1, aux_sym_input_expression_token1, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_if_statement_token1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, + ACTIONS(802), 1, + anon_sym_LPAREN, + ACTIONS(806), 1, + sym__terminator, + STATE(317), 1, + aux_sym_abl_statement_repeat1, + STATE(514), 1, + sym__expression, + STATE(556), 1, + sym_object_access, + STATE(577), 1, + sym__decimal_literal, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [3657] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(446), 1, - sym__comparison_operator, - STATE(450), 1, - sym__multiplicative_operator, - STATE(452), 1, - sym__additive_operator, - STATE(453), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - STATE(321), 2, + STATE(320), 2, sym_comment, sym_include, - ACTIONS(251), 47, - anon_sym_LBRACE, - sym_identifier, - sym__terminator, - sym_null_expression, + STATE(551), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(657), 4, 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__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [3733] = 12, + STATE(574), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(578), 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, + [3950] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(446), 1, - sym__comparison_operator, - STATE(450), 1, - sym__multiplicative_operator, - STATE(452), 1, - sym__additive_operator, - STATE(453), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(322), 2, - sym_comment, - sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 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(715), 24, - anon_sym_LBRACE, + ACTIONS(649), 1, sym_identifier, - sym__terminator, + ACTIONS(651), 1, + anon_sym_LBRACE, + ACTIONS(655), 1, sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(659), 1, sym__integer_literal, + ACTIONS(661), 1, anon_sym_DQUOTE, + ACTIONS(663), 1, anon_sym_SQUOTE, - anon_sym_LPAREN, + ACTIONS(667), 1, aux_sym_unary_expression_token1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, + ACTIONS(677), 1, aux_sym_input_expression_token1, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_if_statement_token1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, + ACTIONS(802), 1, + anon_sym_LPAREN, + ACTIONS(808), 1, + sym__terminator, + STATE(317), 1, + aux_sym_abl_statement_repeat1, + STATE(514), 1, + sym__expression, + STATE(556), 1, + sym_object_access, + STATE(577), 1, + sym__decimal_literal, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [3815] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(446), 1, - sym__comparison_operator, - STATE(450), 1, - sym__multiplicative_operator, - STATE(452), 1, - sym__additive_operator, - STATE(453), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(323), 2, + STATE(321), 2, sym_comment, sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 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(717), 24, - anon_sym_LBRACE, - sym_identifier, - sym__terminator, - sym_null_expression, + STATE(551), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(657), 4, 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, - [3897] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(446), 1, - sym__comparison_operator, - STATE(450), 1, - sym__multiplicative_operator, - STATE(452), 1, - sym__additive_operator, - STATE(453), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(324), 2, - sym_comment, - sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 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(719), 24, - anon_sym_LBRACE, - sym_identifier, - sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [3979] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(446), 1, - sym__comparison_operator, - STATE(450), 1, - sym__multiplicative_operator, - STATE(452), 1, - sym__additive_operator, - STATE(453), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(325), 2, - sym_comment, - sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 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(721), 24, - anon_sym_LBRACE, - sym_identifier, - sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [4061] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(446), 1, - sym__comparison_operator, - STATE(450), 1, - sym__multiplicative_operator, - STATE(452), 1, - sym__additive_operator, - STATE(453), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(326), 2, - sym_comment, - sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 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(723), 24, - anon_sym_LBRACE, - sym_identifier, - sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [4143] = 29, + STATE(574), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(578), 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, + [4067] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(810), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(812), 1, aux_sym_input_expression_token1, - ACTIONS(729), 1, + ACTIONS(814), 1, aux_sym_primitive_type_token19, - ACTIONS(733), 1, + ACTIONS(818), 1, aux_sym_buffer_definition_token2, - ACTIONS(735), 1, + ACTIONS(820), 1, aux_sym_argument_mode_token1, - ACTIONS(737), 1, + ACTIONS(822), 1, aux_sym_if_statement_token1, - ACTIONS(739), 1, + ACTIONS(824), 1, aux_sym_repeat_statement_token1, - ACTIONS(741), 1, + ACTIONS(826), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(743), 1, + ACTIONS(828), 1, aux_sym_interface_statement_token1, - ACTIONS(745), 1, + ACTIONS(830), 1, aux_sym_on_error_phrase_token1, - ACTIONS(747), 1, + ACTIONS(832), 1, aux_sym_on_error_phrase_token3, - ACTIONS(749), 1, + ACTIONS(834), 1, aux_sym_do_block_token1, - ACTIONS(751), 1, + ACTIONS(836), 1, aux_sym__case_terminator_token1, - ACTIONS(753), 1, + ACTIONS(838), 1, aux_sym_find_statement_token1, - ACTIONS(755), 1, + ACTIONS(840), 1, aux_sym_assign_statement_token1, - ACTIONS(757), 1, + ACTIONS(842), 1, aux_sym_accumulate_statement_token1, - STATE(3068), 1, + STATE(3241), 1, sym_label, - STATE(4518), 1, + STATE(4101), 1, + sym_function_call, + STATE(4103), 1, sym_assignment, - STATE(4586), 1, + STATE(4574), 1, sym_object_access, - STATE(4645), 1, - sym_function_call, - ACTIONS(731), 2, + ACTIONS(816), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(759), 2, + ACTIONS(844), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(327), 2, + STATE(322), 2, sym_comment, sym_include, - STATE(1055), 2, + STATE(1006), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(1199), 2, + STATE(1021), 2, sym_do_block, sym__terminated_statement, - STATE(1216), 23, + STATE(1071), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -51851,75 +50762,75 @@ static const uint16_t ts_small_parse_table[] = { sym_error_scope_statement, sym_temp_table_definition, sym_on_statement, - [4258] = 30, + [4182] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(649), 1, sym_identifier, - ACTIONS(647), 1, - anon_sym_LBRACE, ACTIONS(651), 1, - sym_null_expression, + anon_sym_LBRACE, ACTIONS(655), 1, + sym_null_expression, + ACTIONS(659), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(661), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, - anon_sym_SQUOTE, ACTIONS(663), 1, + anon_sym_SQUOTE, + ACTIONS(667), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, - aux_sym_input_expression_token1, ACTIONS(677), 1, + aux_sym_input_expression_token1, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, - aux_sym_if_statement_token1, ACTIONS(683), 1, + aux_sym_if_statement_token1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, - ACTIONS(761), 1, - sym__terminator, - ACTIONS(763), 1, + ACTIONS(802), 1, anon_sym_LPAREN, - STATE(323), 1, - sym__expression, - STATE(332), 1, + ACTIONS(846), 1, + sym__terminator, + STATE(317), 1, aux_sym_abl_statement_repeat1, - STATE(559), 1, - sym__decimal_literal, - STATE(574), 1, + STATE(514), 1, + sym__expression, + STATE(556), 1, sym_object_access, - ACTIONS(687), 2, + STATE(577), 1, + sym__decimal_literal, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(328), 2, + STATE(323), 2, sym_comment, sym_include, - STATE(557), 2, + STATE(551), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(574), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(578), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -51938,156 +50849,155 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [4375] = 30, + [4299] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, - sym_identifier, - ACTIONS(647), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(651), 1, - sym_null_expression, - ACTIONS(655), 1, - sym__integer_literal, - ACTIONS(657), 1, - anon_sym_DQUOTE, - ACTIONS(659), 1, - anon_sym_SQUOTE, - ACTIONS(663), 1, - aux_sym_unary_expression_token1, - ACTIONS(665), 1, - aux_sym_unary_expression_token2, - ACTIONS(667), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, - aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(848), 1, + sym_identifier, + ACTIONS(850), 1, aux_sym_input_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(679), 1, + ACTIONS(852), 1, + aux_sym_primitive_type_token19, + ACTIONS(856), 1, + aux_sym_buffer_definition_token2, + ACTIONS(858), 1, + aux_sym_argument_mode_token1, + ACTIONS(860), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(685), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(763), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - sym__terminator, - STATE(323), 1, - sym__expression, - STATE(332), 1, - aux_sym_abl_statement_repeat1, - STATE(559), 1, - sym__decimal_literal, - STATE(574), 1, + ACTIONS(862), 1, + aux_sym_repeat_statement_token1, + ACTIONS(864), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(866), 1, + aux_sym_interface_statement_token1, + ACTIONS(868), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(870), 1, + aux_sym_on_error_phrase_token3, + ACTIONS(872), 1, + aux_sym_do_block_token1, + ACTIONS(874), 1, + aux_sym__case_terminator_token1, + ACTIONS(876), 1, + aux_sym_find_statement_token1, + ACTIONS(878), 1, + aux_sym_assign_statement_token1, + ACTIONS(880), 1, + aux_sym_accumulate_statement_token1, + STATE(3060), 1, + sym_label, + STATE(4574), 1, sym_object_access, - ACTIONS(687), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(329), 2, + STATE(4616), 1, + sym_function_call, + STATE(4617), 1, + sym_assignment, + ACTIONS(854), 2, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + ACTIONS(882), 2, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + STATE(324), 2, sym_comment, sym_include, - STATE(557), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(653), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(572), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(576), 18, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym__string_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_input_expression, - sym__binary_expression, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [4492] = 29, + STATE(850), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(1017), 2, + sym_do_block, + sym__terminated_statement, + STATE(1036), 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, + [4414] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(767), 1, + ACTIONS(707), 1, sym_identifier, - ACTIONS(769), 1, + ACTIONS(709), 1, aux_sym_input_expression_token1, - ACTIONS(771), 1, + ACTIONS(711), 1, aux_sym_primitive_type_token19, - ACTIONS(775), 1, + ACTIONS(715), 1, aux_sym_buffer_definition_token2, - ACTIONS(777), 1, + ACTIONS(717), 1, aux_sym_argument_mode_token1, - ACTIONS(779), 1, + ACTIONS(719), 1, aux_sym_repeat_statement_token1, - ACTIONS(781), 1, + ACTIONS(721), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(783), 1, + ACTIONS(723), 1, aux_sym_interface_statement_token1, - ACTIONS(785), 1, + ACTIONS(725), 1, aux_sym_on_error_phrase_token1, - ACTIONS(787), 1, + ACTIONS(727), 1, aux_sym_on_error_phrase_token3, - ACTIONS(789), 1, + ACTIONS(729), 1, aux_sym_do_block_token1, - ACTIONS(791), 1, + ACTIONS(731), 1, aux_sym__case_terminator_token1, - ACTIONS(793), 1, + ACTIONS(733), 1, aux_sym_find_statement_token1, - ACTIONS(795), 1, + ACTIONS(735), 1, aux_sym_assign_statement_token1, - ACTIONS(797), 1, + ACTIONS(737), 1, aux_sym_accumulate_statement_token1, - STATE(3063), 1, + STATE(3051), 1, sym_label, - STATE(4064), 1, + STATE(4102), 1, sym_function_call, - STATE(4066), 1, + STATE(4106), 1, sym_assignment, - STATE(4097), 1, + STATE(4244), 1, sym__case_branch_body, - STATE(4586), 1, + STATE(4574), 1, sym_object_access, - ACTIONS(773), 2, + ACTIONS(713), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(799), 2, + ACTIONS(739), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(330), 2, + STATE(325), 2, sym_comment, sym_include, - STATE(3268), 2, - sym_do_block, - sym__terminated_statement, - STATE(3278), 2, + STATE(3242), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(3171), 23, + STATE(3353), 2, + sym_do_block, + sym__terminated_statement, + STATE(3082), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -52111,75 +51021,73 @@ static const uint16_t ts_small_parse_table[] = { sym_error_scope_statement, sym_temp_table_definition, sym_on_statement, - [4607] = 30, + [4529] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(651), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(655), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(663), 1, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, - aux_sym_input_expression_token1, - ACTIONS(677), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(763), 1, - anon_sym_LPAREN, - ACTIONS(801), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + ACTIONS(884), 1, sym__terminator, - STATE(323), 1, - sym__expression, - STATE(332), 1, - aux_sym_abl_statement_repeat1, - STATE(559), 1, + STATE(27), 1, sym__decimal_literal, - STATE(574), 1, + STATE(34), 1, sym_object_access, - ACTIONS(687), 2, + STATE(1455), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(331), 2, - sym_comment, - sym_include, - STATE(557), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + STATE(326), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52198,155 +51106,67 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [4724] = 29, + [4643] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(803), 1, - sym_identifier, - ACTIONS(806), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(809), 1, - sym__terminator, - ACTIONS(811), 1, - sym_null_expression, - ACTIONS(817), 1, - sym__integer_literal, + ACTIONS(810), 1, + sym_identifier, + ACTIONS(812), 1, + aux_sym_input_expression_token1, + ACTIONS(814), 1, + aux_sym_primitive_type_token19, + ACTIONS(818), 1, + aux_sym_buffer_definition_token2, ACTIONS(820), 1, - anon_sym_DQUOTE, - ACTIONS(823), 1, - anon_sym_SQUOTE, + aux_sym_argument_mode_token1, + ACTIONS(824), 1, + aux_sym_repeat_statement_token1, ACTIONS(826), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - aux_sym_unary_expression_token1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(828), 1, + aux_sym_interface_statement_token1, + ACTIONS(830), 1, + aux_sym_on_error_phrase_token1, ACTIONS(832), 1, - aux_sym_unary_expression_token2, - ACTIONS(835), 1, - aux_sym_ambiguous_expression_token1, + aux_sym_on_error_phrase_token3, + ACTIONS(834), 1, + aux_sym_do_block_token1, + ACTIONS(836), 1, + aux_sym__case_terminator_token1, ACTIONS(838), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(841), 1, - aux_sym_locked_expression_token1, - ACTIONS(844), 1, - aux_sym_input_expression_token1, - ACTIONS(847), 1, - aux_sym_scope_tuning_token1, - ACTIONS(850), 1, - aux_sym_if_statement_token1, - ACTIONS(853), 1, - aux_sym_can_find_expression_token1, - ACTIONS(856), 1, - aux_sym_accumulate_expression_token1, - STATE(323), 1, - sym__expression, - STATE(559), 1, - sym__decimal_literal, - STATE(574), 1, + aux_sym_find_statement_token1, + ACTIONS(840), 1, + aux_sym_assign_statement_token1, + ACTIONS(842), 1, + aux_sym_accumulate_statement_token1, + STATE(3241), 1, + sym_label, + STATE(4101), 1, + sym_function_call, + STATE(4103), 1, + sym_assignment, + STATE(4574), 1, sym_object_access, - ACTIONS(859), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(557), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(332), 3, - sym_comment, - sym_include, - aux_sym_abl_statement_repeat1, - ACTIONS(814), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(572), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(576), 18, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym__string_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_input_expression, - sym__binary_expression, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [4839] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - 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(779), 1, - aux_sym_repeat_statement_token1, - ACTIONS(781), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(783), 1, - aux_sym_interface_statement_token1, - ACTIONS(785), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(787), 1, - aux_sym_on_error_phrase_token3, - ACTIONS(789), 1, - aux_sym_do_block_token1, - ACTIONS(791), 1, - aux_sym__case_terminator_token1, - ACTIONS(793), 1, - aux_sym_find_statement_token1, - ACTIONS(795), 1, - aux_sym_assign_statement_token1, - ACTIONS(797), 1, - aux_sym_accumulate_statement_token1, - STATE(3063), 1, - sym_label, - STATE(3227), 1, - sym__case_branch_body, - STATE(4064), 1, - sym_function_call, - STATE(4066), 1, - sym_assignment, - STATE(4586), 1, - sym_object_access, - ACTIONS(773), 2, + ACTIONS(816), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(799), 2, + ACTIONS(844), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(333), 2, + STATE(327), 2, sym_comment, sym_include, - STATE(3268), 2, + STATE(761), 2, sym_do_block, sym__terminated_statement, - STATE(3278), 2, + STATE(1006), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(3171), 23, + STATE(1071), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -52370,75 +51190,136 @@ static const uint16_t ts_small_parse_table[] = { sym_error_scope_statement, sym_temp_table_definition, sym_on_statement, - [4954] = 30, + [4755] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(886), 1, + sym__namedot, + ACTIONS(91), 2, + aux_sym_variable_definition_token2, + anon_sym_LIKE, + STATE(328), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(93), 46, + sym__terminator, + aux_sym__block_terminator_token1, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_serialization_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token6, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_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_final_token1, + aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym_temp_table_tuning_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [4825] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(651), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(655), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(663), 1, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, - aux_sym_input_expression_token1, - ACTIONS(677), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(763), 1, - anon_sym_LPAREN, - ACTIONS(862), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + ACTIONS(889), 1, sym__terminator, - STATE(323), 1, - sym__expression, - STATE(332), 1, - aux_sym_abl_statement_repeat1, - STATE(559), 1, + STATE(27), 1, sym__decimal_literal, - STATE(574), 1, + STATE(34), 1, sym_object_access, - ACTIONS(687), 2, + STATE(1271), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(334), 2, - sym_comment, - sym_include, - STATE(557), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + STATE(329), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52457,69 +51338,67 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5071] = 29, + [4939] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(864), 1, + ACTIONS(810), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(812), 1, aux_sym_input_expression_token1, - ACTIONS(868), 1, + ACTIONS(814), 1, aux_sym_primitive_type_token19, - ACTIONS(872), 1, + ACTIONS(818), 1, aux_sym_buffer_definition_token2, - ACTIONS(874), 1, + ACTIONS(820), 1, aux_sym_argument_mode_token1, - ACTIONS(876), 1, - aux_sym_if_statement_token1, - ACTIONS(878), 1, + ACTIONS(824), 1, aux_sym_repeat_statement_token1, - ACTIONS(880), 1, + ACTIONS(826), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(882), 1, + ACTIONS(828), 1, aux_sym_interface_statement_token1, - ACTIONS(884), 1, + ACTIONS(830), 1, aux_sym_on_error_phrase_token1, - ACTIONS(886), 1, + ACTIONS(832), 1, aux_sym_on_error_phrase_token3, - ACTIONS(888), 1, + ACTIONS(834), 1, aux_sym_do_block_token1, - ACTIONS(890), 1, + ACTIONS(836), 1, aux_sym__case_terminator_token1, - ACTIONS(892), 1, + ACTIONS(838), 1, aux_sym_find_statement_token1, - ACTIONS(894), 1, + ACTIONS(840), 1, aux_sym_assign_statement_token1, - ACTIONS(896), 1, + ACTIONS(842), 1, aux_sym_accumulate_statement_token1, - STATE(3206), 1, + STATE(3241), 1, sym_label, - STATE(4032), 1, + STATE(4101), 1, sym_function_call, - STATE(4036), 1, + STATE(4103), 1, sym_assignment, - STATE(4586), 1, + STATE(4574), 1, sym_object_access, - ACTIONS(870), 2, + ACTIONS(816), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(898), 2, + ACTIONS(844), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(335), 2, + STATE(330), 2, sym_comment, sym_include, - STATE(1141), 2, - sym_do_block, - sym__terminated_statement, - STATE(1186), 2, + STATE(1006), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(1235), 23, + STATE(1105), 2, + sym_do_block, + sym__terminated_statement, + STATE(1071), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -52543,154 +51422,67 @@ static const uint16_t ts_small_parse_table[] = { sym_error_scope_statement, sym_temp_table_definition, sym_on_statement, - [5186] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(645), 1, - sym_identifier, - ACTIONS(647), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym_null_expression, - ACTIONS(655), 1, - sym__integer_literal, - ACTIONS(657), 1, - anon_sym_DQUOTE, - ACTIONS(659), 1, - anon_sym_SQUOTE, - ACTIONS(663), 1, - aux_sym_unary_expression_token1, - ACTIONS(665), 1, - aux_sym_unary_expression_token2, - ACTIONS(667), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, - aux_sym_locked_expression_token1, - ACTIONS(673), 1, - aux_sym_input_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(679), 1, - aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(685), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(763), 1, - anon_sym_LPAREN, - ACTIONS(900), 1, - sym__terminator, - STATE(323), 1, - sym__expression, - STATE(332), 1, - aux_sym_abl_statement_repeat1, - STATE(559), 1, - sym__decimal_literal, - STATE(574), 1, - sym_object_access, - ACTIONS(687), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(336), 2, - sym_comment, - sym_include, - STATE(557), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(653), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(572), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(576), 18, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym__string_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_input_expression, - sym__binary_expression, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [5303] = 28, + [5051] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(848), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(850), 1, aux_sym_input_expression_token1, - ACTIONS(729), 1, + ACTIONS(852), 1, aux_sym_primitive_type_token19, - ACTIONS(733), 1, + ACTIONS(856), 1, aux_sym_buffer_definition_token2, - ACTIONS(735), 1, + ACTIONS(858), 1, aux_sym_argument_mode_token1, - ACTIONS(739), 1, + ACTIONS(862), 1, aux_sym_repeat_statement_token1, - ACTIONS(741), 1, + ACTIONS(864), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(743), 1, + ACTIONS(866), 1, aux_sym_interface_statement_token1, - ACTIONS(745), 1, + ACTIONS(868), 1, aux_sym_on_error_phrase_token1, - ACTIONS(747), 1, + ACTIONS(870), 1, aux_sym_on_error_phrase_token3, - ACTIONS(749), 1, + ACTIONS(872), 1, aux_sym_do_block_token1, - ACTIONS(751), 1, + ACTIONS(874), 1, aux_sym__case_terminator_token1, - ACTIONS(753), 1, + ACTIONS(876), 1, aux_sym_find_statement_token1, - ACTIONS(755), 1, + ACTIONS(878), 1, aux_sym_assign_statement_token1, - ACTIONS(757), 1, + ACTIONS(880), 1, aux_sym_accumulate_statement_token1, - STATE(3068), 1, + STATE(3060), 1, sym_label, - STATE(4518), 1, - sym_assignment, - STATE(4586), 1, + STATE(4574), 1, sym_object_access, - STATE(4645), 1, + STATE(4616), 1, sym_function_call, - ACTIONS(731), 2, + STATE(4617), 1, + sym_assignment, + ACTIONS(854), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(759), 2, + ACTIONS(882), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(337), 2, + STATE(331), 2, sym_comment, sym_include, - STATE(916), 2, - sym_do_block, - sym__terminated_statement, - STATE(1055), 2, + STATE(850), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(1216), 23, + STATE(1008), 2, + sym_do_block, + sym__terminated_statement, + STATE(1036), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -52714,73 +51506,73 @@ static const uint16_t ts_small_parse_table[] = { sym_error_scope_statement, sym_temp_table_definition, sym_on_statement, - [5415] = 29, + [5163] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - ACTIONS(902), 1, + ACTIONS(891), 1, sym__terminator, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(906), 1, + STATE(1364), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(338), 2, + STATE(332), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52799,157 +51591,137 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5529] = 28, - ACTIONS(3), 1, + [5277] = 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(864), 1, - sym_identifier, - ACTIONS(866), 1, - aux_sym_input_expression_token1, - ACTIONS(868), 1, - aux_sym_primitive_type_token19, - ACTIONS(872), 1, - aux_sym_buffer_definition_token2, - ACTIONS(874), 1, - aux_sym_argument_mode_token1, - ACTIONS(878), 1, - aux_sym_repeat_statement_token1, - ACTIONS(880), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(882), 1, - aux_sym_interface_statement_token1, - ACTIONS(884), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(886), 1, - aux_sym_on_error_phrase_token3, - ACTIONS(888), 1, - aux_sym_do_block_token1, - ACTIONS(890), 1, - aux_sym__case_terminator_token1, - ACTIONS(892), 1, - aux_sym_find_statement_token1, - ACTIONS(894), 1, - aux_sym_assign_statement_token1, - ACTIONS(896), 1, - aux_sym_accumulate_statement_token1, - STATE(3206), 1, - sym_label, - STATE(4032), 1, - sym_function_call, - STATE(4036), 1, - sym_assignment, - STATE(4586), 1, - sym_object_access, - ACTIONS(870), 2, - aux_sym_variable_definition_token1, + ACTIONS(893), 1, + sym__namedot, + STATE(328), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(79), 2, aux_sym_variable_definition_token2, - ACTIONS(898), 2, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - STATE(339), 2, + anon_sym_LIKE, + STATE(333), 2, sym_comment, sym_include, - STATE(896), 2, - sym_do_block, - sym__terminated_statement, - STATE(1186), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(1235), 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, - [5641] = 29, + ACTIONS(81), 46, + sym__terminator, + aux_sym__block_terminator_token1, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_serialization_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token6, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_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_final_token1, + aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym_temp_table_tuning_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [5349] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - ACTIONS(904), 1, + ACTIONS(895), 1, sym__terminator, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(901), 1, + STATE(1394), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(340), 2, + STATE(334), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52968,128 +51740,152 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5755] = 5, + [5463] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(906), 1, - sym__namecolon, - STATE(341), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(120), 49, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(317), 1, sym_identifier, - anon_sym_STAR, - sym__terminator, + ACTIONS(319), 1, + anon_sym_LBRACE, + ACTIONS(321), 1, sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(325), 1, sym__integer_literal, + ACTIONS(327), 1, anon_sym_DQUOTE, + ACTIONS(329), 1, anon_sym_SQUOTE, + ACTIONS(331), 1, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(335), 1, aux_sym_unary_expression_token1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, + ACTIONS(343), 1, 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, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, + ACTIONS(351), 1, aux_sym_if_statement_token1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [5821] = 28, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + ACTIONS(897), 1, + sym__terminator, + STATE(27), 1, + sym__decimal_literal, + STATE(34), 1, + sym_object_access, + STATE(1326), 1, + sym__expression, + ACTIONS(359), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(17), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(335), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(32), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(18), 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, + [5577] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(864), 1, + ACTIONS(848), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(850), 1, aux_sym_input_expression_token1, - ACTIONS(868), 1, + ACTIONS(852), 1, aux_sym_primitive_type_token19, - ACTIONS(872), 1, + ACTIONS(856), 1, aux_sym_buffer_definition_token2, - ACTIONS(874), 1, + ACTIONS(858), 1, aux_sym_argument_mode_token1, - ACTIONS(878), 1, + ACTIONS(862), 1, aux_sym_repeat_statement_token1, - ACTIONS(880), 1, + ACTIONS(864), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(882), 1, + ACTIONS(866), 1, aux_sym_interface_statement_token1, - ACTIONS(884), 1, + ACTIONS(868), 1, aux_sym_on_error_phrase_token1, - ACTIONS(886), 1, + ACTIONS(870), 1, aux_sym_on_error_phrase_token3, - ACTIONS(888), 1, + ACTIONS(872), 1, aux_sym_do_block_token1, - ACTIONS(890), 1, + ACTIONS(874), 1, aux_sym__case_terminator_token1, - ACTIONS(892), 1, + ACTIONS(876), 1, aux_sym_find_statement_token1, - ACTIONS(894), 1, + ACTIONS(878), 1, aux_sym_assign_statement_token1, - ACTIONS(896), 1, + ACTIONS(880), 1, aux_sym_accumulate_statement_token1, - STATE(3206), 1, + STATE(3060), 1, sym_label, - STATE(4032), 1, + STATE(4574), 1, + sym_object_access, + STATE(4616), 1, sym_function_call, - STATE(4036), 1, + STATE(4617), 1, sym_assignment, - STATE(4586), 1, - sym_object_access, - ACTIONS(870), 2, + ACTIONS(854), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(898), 2, + ACTIONS(882), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(342), 2, + STATE(336), 2, sym_comment, sym_include, - STATE(1180), 2, + STATE(766), 2, sym_do_block, sym__terminated_statement, - STATE(1186), 2, + STATE(850), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(1235), 23, + STATE(1036), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -53113,73 +51909,71 @@ static const uint16_t ts_small_parse_table[] = { sym_error_scope_statement, sym_temp_table_definition, sym_on_statement, - [5933] = 29, + [5689] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(649), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(651), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(655), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(659), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(661), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(663), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, - anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(667), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(677), 1, + aux_sym_input_expression_token1, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(683), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - ACTIONS(909), 1, - sym__terminator, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(889), 1, + ACTIONS(802), 1, + anon_sym_LPAREN, + STATE(515), 1, sym__expression, - ACTIONS(367), 2, + STATE(556), 1, + sym_object_access, + STATE(577), 1, + sym__decimal_literal, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(343), 2, + STATE(337), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(551), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(574), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(578), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53198,134 +51992,154 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6047] = 5, + [5800] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, - sym__namedot, - STATE(344), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(71), 49, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(317), 1, sym_identifier, - anon_sym_STAR, - sym__terminator, + ACTIONS(319), 1, + anon_sym_LBRACE, + ACTIONS(321), 1, sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(325), 1, sym__integer_literal, + ACTIONS(327), 1, anon_sym_DQUOTE, + ACTIONS(329), 1, anon_sym_SQUOTE, + ACTIONS(331), 1, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(335), 1, aux_sym_unary_expression_token1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(371), 1, aux_sym_unary_expression_token2, + ACTIONS(373), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(375), 1, aux_sym_current_changed_expression_token1, + ACTIONS(377), 1, aux_sym_locked_expression_token1, + ACTIONS(379), 1, 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, + ACTIONS(381), 1, aux_sym_scope_tuning_token1, + ACTIONS(383), 1, aux_sym_if_statement_token1, - aux_sym_can_find_expression_token1, + ACTIONS(395), 1, aux_sym_accumulate_expression_token1, + STATE(27), 1, + sym__decimal_literal, + STATE(34), 1, + sym_object_access, + STATE(637), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [6113] = 29, + STATE(17), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(338), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(32), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(18), 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, + [5911] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - ACTIONS(914), 1, - sym__terminator, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(892), 1, + STATE(1434), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(345), 2, + STATE(339), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53344,281 +52158,320 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6227] = 6, + [6022] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(709), 1, - sym__namedot, - STATE(350), 1, - aux_sym_qualified_name_repeat1, - STATE(346), 2, - sym_comment, - sym_include, - ACTIONS(207), 49, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(899), 1, sym_identifier, - anon_sym_STAR, - sym__terminator, + ACTIONS(901), 1, + anon_sym_LBRACE, + ACTIONS(903), 1, sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(907), 1, sym__integer_literal, + ACTIONS(909), 1, anon_sym_DQUOTE, + ACTIONS(911), 1, anon_sym_SQUOTE, + ACTIONS(913), 1, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(915), 1, aux_sym_unary_expression_token1, + ACTIONS(917), 1, aux_sym_unary_expression_token2, + ACTIONS(919), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(921), 1, aux_sym_current_changed_expression_token1, + ACTIONS(923), 1, aux_sym_locked_expression_token1, + ACTIONS(925), 1, 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, + ACTIONS(927), 1, aux_sym_scope_tuning_token1, + ACTIONS(929), 1, aux_sym_if_statement_token1, + ACTIONS(931), 1, aux_sym_can_find_expression_token1, + ACTIONS(933), 1, aux_sym_accumulate_expression_token1, + STATE(657), 1, + sym__expression, + STATE(716), 1, + sym_object_access, + STATE(752), 1, + sym__decimal_literal, + ACTIONS(935), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [6295] = 28, + STATE(340), 2, + sym_comment, + sym_include, + STATE(746), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(905), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(749), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(728), 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, + [6133] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, + ACTIONS(937), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(939), 1, + anon_sym_LBRACE, + ACTIONS(941), 1, + sym_null_expression, + ACTIONS(945), 1, + sym__integer_literal, + ACTIONS(947), 1, + anon_sym_DQUOTE, + ACTIONS(949), 1, + anon_sym_SQUOTE, + ACTIONS(951), 1, + anon_sym_LPAREN, + ACTIONS(953), 1, + aux_sym_unary_expression_token1, + ACTIONS(955), 1, + aux_sym_unary_expression_token2, + ACTIONS(957), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(959), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(961), 1, + aux_sym_locked_expression_token1, + ACTIONS(963), 1, aux_sym_input_expression_token1, - ACTIONS(729), 1, - aux_sym_primitive_type_token19, - ACTIONS(733), 1, - aux_sym_buffer_definition_token2, - ACTIONS(735), 1, - aux_sym_argument_mode_token1, - ACTIONS(739), 1, - aux_sym_repeat_statement_token1, - ACTIONS(741), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(743), 1, - aux_sym_interface_statement_token1, - ACTIONS(745), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(747), 1, - aux_sym_on_error_phrase_token3, - ACTIONS(749), 1, - aux_sym_do_block_token1, - ACTIONS(751), 1, - aux_sym__case_terminator_token1, - ACTIONS(753), 1, - aux_sym_find_statement_token1, - ACTIONS(755), 1, - aux_sym_assign_statement_token1, - ACTIONS(757), 1, - aux_sym_accumulate_statement_token1, - STATE(3068), 1, - sym_label, - STATE(4518), 1, - sym_assignment, - STATE(4586), 1, + ACTIONS(965), 1, + aux_sym_scope_tuning_token1, + ACTIONS(967), 1, + aux_sym_if_statement_token1, + ACTIONS(969), 1, + aux_sym_can_find_expression_token1, + ACTIONS(971), 1, + aux_sym_accumulate_expression_token1, + STATE(801), 1, + sym__expression, + STATE(1180), 1, sym_object_access, - STATE(4645), 1, - sym_function_call, - ACTIONS(731), 2, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - ACTIONS(759), 2, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - STATE(347), 2, + STATE(1545), 1, + sym__decimal_literal, + ACTIONS(973), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(341), 2, sym_comment, sym_include, - STATE(1055), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(1189), 2, - sym_do_block, - sym__terminated_statement, - STATE(1216), 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, - [6407] = 6, + STATE(1548), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(943), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1544), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1547), 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, + [6244] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(709), 1, - sym__namedot, - STATE(350), 1, - aux_sym_qualified_name_repeat1, - STATE(348), 2, - sym_comment, - sym_include, - ACTIONS(159), 49, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(937), 1, sym_identifier, - anon_sym_STAR, - sym__terminator, + ACTIONS(939), 1, + anon_sym_LBRACE, + ACTIONS(941), 1, sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(945), 1, sym__integer_literal, + ACTIONS(947), 1, anon_sym_DQUOTE, + ACTIONS(949), 1, anon_sym_SQUOTE, + ACTIONS(951), 1, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(953), 1, aux_sym_unary_expression_token1, + ACTIONS(955), 1, aux_sym_unary_expression_token2, + ACTIONS(957), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(959), 1, aux_sym_current_changed_expression_token1, + ACTIONS(961), 1, aux_sym_locked_expression_token1, + ACTIONS(963), 1, 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, + ACTIONS(965), 1, aux_sym_scope_tuning_token1, + ACTIONS(967), 1, aux_sym_if_statement_token1, + ACTIONS(969), 1, aux_sym_can_find_expression_token1, + ACTIONS(971), 1, aux_sym_accumulate_expression_token1, + STATE(802), 1, + sym__expression, + STATE(1180), 1, + sym_object_access, + STATE(1545), 1, + sym__decimal_literal, + ACTIONS(973), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [6475] = 29, + STATE(342), 2, + sym_comment, + sym_include, + STATE(1548), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(943), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1544), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1547), 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, + [6355] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - ACTIONS(916), 1, - sym__terminator, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(871), 1, + STATE(49), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(349), 2, + STATE(343), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53637,195 +52490,154 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6589] = 6, + [6466] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(709), 1, - sym__namedot, - STATE(344), 1, - aux_sym_qualified_name_repeat1, - STATE(350), 2, - sym_comment, - sym_include, - ACTIONS(63), 49, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(937), 1, sym_identifier, - anon_sym_STAR, - sym__terminator, + ACTIONS(939), 1, + anon_sym_LBRACE, + ACTIONS(941), 1, sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(945), 1, sym__integer_literal, + ACTIONS(947), 1, anon_sym_DQUOTE, + ACTIONS(949), 1, anon_sym_SQUOTE, + ACTIONS(951), 1, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(953), 1, aux_sym_unary_expression_token1, + ACTIONS(955), 1, aux_sym_unary_expression_token2, + ACTIONS(957), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(959), 1, aux_sym_current_changed_expression_token1, + ACTIONS(961), 1, aux_sym_locked_expression_token1, + ACTIONS(963), 1, 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, + ACTIONS(965), 1, aux_sym_scope_tuning_token1, + ACTIONS(967), 1, aux_sym_if_statement_token1, + ACTIONS(969), 1, aux_sym_can_find_expression_token1, + ACTIONS(971), 1, aux_sym_accumulate_expression_token1, + STATE(803), 1, + sym__expression, + STATE(1180), 1, + sym_object_access, + STATE(1545), 1, + sym__decimal_literal, + ACTIONS(973), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [6657] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(711), 1, - sym__namecolon, - STATE(341), 1, - aux_sym_object_access_repeat1, - STATE(351), 2, + STATE(344), 2, sym_comment, sym_include, - ACTIONS(116), 49, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, - anon_sym_STAR, - sym__terminator, - sym_null_expression, + STATE(1548), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(943), 4, 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__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [6725] = 28, + STATE(1544), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1547), 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, + [6577] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, + ACTIONS(937), 1, sym_identifier, - ACTIONS(920), 1, + ACTIONS(939), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(941), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(945), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(947), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(949), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(951), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(953), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(957), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(959), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(961), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, + ACTIONS(963), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(965), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(967), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(969), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(971), 1, aux_sym_accumulate_expression_token1, - STATE(691), 1, + STATE(804), 1, sym__expression, - STATE(845), 1, + STATE(1180), 1, sym_object_access, - STATE(937), 1, + STATE(1545), 1, sym__decimal_literal, - ACTIONS(954), 2, + ACTIONS(973), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(352), 2, + STATE(345), 2, sym_comment, sym_include, - STATE(938), 2, + STATE(1548), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + ACTIONS(943), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(1544), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(1547), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53844,71 +52656,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6836] = 28, + [6688] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(899), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(901), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(903), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(907), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(909), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(911), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(915), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(917), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(919), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(921), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(923), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(925), 1, + aux_sym_input_expression_token1, + ACTIONS(927), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(929), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(931), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(933), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(881), 1, + STATE(650), 1, sym__expression, - ACTIONS(367), 2, + STATE(716), 1, + sym_object_access, + STATE(752), 1, + sym__decimal_literal, + ACTIONS(935), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(353), 2, + STATE(346), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(746), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(905), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(728), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53927,146 +52739,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6947] = 20, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(956), 1, - sym__terminator, - ACTIONS(962), 1, - aux_sym_input_stream_tuning_token9, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - STATE(1718), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(354), 2, - sym_comment, - sym_include, - ACTIONS(958), 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(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(960), 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(231), 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, - [7042] = 28, + [6799] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(627), 1, + STATE(1237), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(355), 2, + STATE(347), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54085,71 +52822,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7153] = 28, + [6910] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(899), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(901), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(903), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(907), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(909), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(911), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(915), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(917), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(919), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(921), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(923), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(925), 1, + aux_sym_input_expression_token1, + ACTIONS(927), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(929), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(931), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(933), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(711), 1, + STATE(648), 1, sym__expression, - ACTIONS(367), 2, + STATE(716), 1, + sym_object_access, + STATE(752), 1, + sym__decimal_literal, + ACTIONS(935), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(356), 2, + STATE(348), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(746), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(905), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(728), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54168,71 +52905,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7264] = 28, + [7021] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(899), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(901), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(903), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(907), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(909), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(911), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(915), 1, aux_sym_unary_expression_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(377), 1, + ACTIONS(917), 1, aux_sym_unary_expression_token2, - ACTIONS(379), 1, + ACTIONS(919), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(381), 1, + ACTIONS(921), 1, aux_sym_current_changed_expression_token1, - ACTIONS(383), 1, + ACTIONS(923), 1, aux_sym_locked_expression_token1, - ACTIONS(385), 1, + ACTIONS(925), 1, aux_sym_input_expression_token1, - ACTIONS(387), 1, + ACTIONS(927), 1, aux_sym_scope_tuning_token1, - ACTIONS(389), 1, + ACTIONS(929), 1, aux_sym_if_statement_token1, - ACTIONS(401), 1, + ACTIONS(931), 1, + aux_sym_can_find_expression_token1, + ACTIONS(933), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(652), 1, + STATE(642), 1, sym__expression, - ACTIONS(367), 2, + STATE(716), 1, + sym_object_access, + STATE(752), 1, + sym__decimal_literal, + ACTIONS(935), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(357), 2, + STATE(349), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(746), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(905), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(728), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54251,71 +52988,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7375] = 28, + [7132] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(899), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(901), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(903), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(907), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(909), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(911), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(915), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(917), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(919), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(921), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(923), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(925), 1, + aux_sym_input_expression_token1, + ACTIONS(927), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(929), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(931), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(933), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(902), 1, + STATE(641), 1, sym__expression, - ACTIONS(367), 2, + STATE(716), 1, + sym_object_access, + STATE(752), 1, + sym__decimal_literal, + ACTIONS(935), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(358), 2, + STATE(350), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(746), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(905), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(728), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54334,71 +53071,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7486] = 28, + [7243] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(699), 1, + STATE(582), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(359), 2, + STATE(351), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54417,71 +53154,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7597] = 28, + [7354] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(377), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(379), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(381), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(383), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - ACTIONS(387), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(389), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(401), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(659), 1, + STATE(668), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(360), 2, + STATE(352), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54500,71 +53237,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7708] = 28, + [7465] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(317), 1, + sym_identifier, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - ACTIONS(964), 1, - sym_identifier, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(878), 1, + STATE(555), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(361), 2, + STATE(353), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54583,71 +53320,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7819] = 28, + [7576] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(377), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(379), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(381), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(383), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - ACTIONS(387), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(389), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(401), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(657), 1, + STATE(1494), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(362), 2, + STATE(354), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54666,71 +53403,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7930] = 28, + [7687] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(888), 1, + STATE(614), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(363), 2, + STATE(355), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54749,71 +53486,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8041] = 28, + [7798] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(899), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(901), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(903), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(907), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(909), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(911), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(915), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(917), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(919), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(921), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(923), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(925), 1, + aux_sym_input_expression_token1, + ACTIONS(927), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(929), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(931), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(933), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(868), 1, + STATE(640), 1, sym__expression, - ACTIONS(367), 2, + STATE(716), 1, + sym_object_access, + STATE(752), 1, + sym__decimal_literal, + ACTIONS(935), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(364), 2, + STATE(356), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(746), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(905), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(728), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54832,71 +53569,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8152] = 28, + [7909] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(814), 1, + STATE(758), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(365), 2, + STATE(357), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54915,71 +53652,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8263] = 28, + [8020] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(966), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(970), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(974), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(976), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(978), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(980), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(982), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(984), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(986), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(988), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(990), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(992), 1, - aux_sym_input_expression_token1, - ACTIONS(994), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(996), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(998), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1000), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(802), 1, - sym__expression, - STATE(918), 1, - sym_object_access, - STATE(965), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1002), 2, + STATE(34), 1, + sym_object_access, + STATE(1323), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(366), 2, - sym_comment, - sym_include, - STATE(970), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(972), 4, + STATE(358), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(977), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(956), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54998,131 +53735,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8374] = 5, + [8131] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - sym__namedot, - STATE(367), 2, - sym_comment, - sym_include, - ACTIONS(71), 49, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(975), 1, 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__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [8439] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(966), 1, - sym_identifier, - ACTIONS(968), 1, + ACTIONS(977), 1, anon_sym_LBRACE, - ACTIONS(970), 1, + ACTIONS(979), 1, sym_null_expression, - ACTIONS(974), 1, + ACTIONS(983), 1, sym__integer_literal, - ACTIONS(976), 1, + ACTIONS(985), 1, anon_sym_DQUOTE, - ACTIONS(978), 1, + ACTIONS(987), 1, anon_sym_SQUOTE, - ACTIONS(980), 1, + ACTIONS(989), 1, anon_sym_LPAREN, - ACTIONS(982), 1, + ACTIONS(991), 1, aux_sym_unary_expression_token1, - ACTIONS(984), 1, + ACTIONS(993), 1, aux_sym_unary_expression_token2, - ACTIONS(986), 1, + ACTIONS(995), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(988), 1, + ACTIONS(997), 1, aux_sym_current_changed_expression_token1, - ACTIONS(990), 1, + ACTIONS(999), 1, aux_sym_locked_expression_token1, - ACTIONS(992), 1, + ACTIONS(1001), 1, aux_sym_input_expression_token1, - ACTIONS(994), 1, + ACTIONS(1003), 1, aux_sym_scope_tuning_token1, - ACTIONS(996), 1, + ACTIONS(1005), 1, aux_sym_if_statement_token1, - ACTIONS(998), 1, + ACTIONS(1007), 1, aux_sym_can_find_expression_token1, - ACTIONS(1000), 1, + ACTIONS(1009), 1, aux_sym_accumulate_expression_token1, - STATE(797), 1, + STATE(600), 1, sym__expression, - STATE(918), 1, + STATE(652), 1, sym_object_access, - STATE(965), 1, + STATE(704), 1, sym__decimal_literal, - ACTIONS(1002), 2, + ACTIONS(1011), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(368), 2, + STATE(359), 2, sym_comment, sym_include, - STATE(970), 2, + STATE(703), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(972), 4, + ACTIONS(981), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(977), 4, + STATE(677), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(956), 18, + STATE(660), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55141,71 +53818,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8550] = 28, + [8242] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(966), 1, + ACTIONS(975), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(977), 1, anon_sym_LBRACE, - ACTIONS(970), 1, + ACTIONS(979), 1, sym_null_expression, - ACTIONS(974), 1, + ACTIONS(983), 1, sym__integer_literal, - ACTIONS(976), 1, + ACTIONS(985), 1, anon_sym_DQUOTE, - ACTIONS(978), 1, + ACTIONS(987), 1, anon_sym_SQUOTE, - ACTIONS(980), 1, + ACTIONS(989), 1, anon_sym_LPAREN, - ACTIONS(982), 1, + ACTIONS(991), 1, aux_sym_unary_expression_token1, - ACTIONS(984), 1, + ACTIONS(993), 1, aux_sym_unary_expression_token2, - ACTIONS(986), 1, + ACTIONS(995), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(988), 1, + ACTIONS(997), 1, aux_sym_current_changed_expression_token1, - ACTIONS(990), 1, + ACTIONS(999), 1, aux_sym_locked_expression_token1, - ACTIONS(992), 1, + ACTIONS(1001), 1, aux_sym_input_expression_token1, - ACTIONS(994), 1, + ACTIONS(1003), 1, aux_sym_scope_tuning_token1, - ACTIONS(996), 1, + ACTIONS(1005), 1, aux_sym_if_statement_token1, - ACTIONS(998), 1, + ACTIONS(1007), 1, aux_sym_can_find_expression_token1, - ACTIONS(1000), 1, + ACTIONS(1009), 1, aux_sym_accumulate_expression_token1, - STATE(796), 1, + STATE(609), 1, sym__expression, - STATE(918), 1, + STATE(652), 1, sym_object_access, - STATE(965), 1, + STATE(704), 1, sym__decimal_literal, - ACTIONS(1002), 2, + ACTIONS(1011), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(369), 2, + STATE(360), 2, sym_comment, sym_include, - STATE(970), 2, + STATE(703), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(972), 4, + ACTIONS(981), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(977), 4, + STATE(677), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(956), 18, + STATE(660), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55224,71 +53901,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8661] = 28, + [8353] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(966), 1, + ACTIONS(975), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(977), 1, anon_sym_LBRACE, - ACTIONS(970), 1, + ACTIONS(979), 1, sym_null_expression, - ACTIONS(974), 1, + ACTIONS(983), 1, sym__integer_literal, - ACTIONS(976), 1, + ACTIONS(985), 1, anon_sym_DQUOTE, - ACTIONS(978), 1, + ACTIONS(987), 1, anon_sym_SQUOTE, - ACTIONS(980), 1, + ACTIONS(989), 1, anon_sym_LPAREN, - ACTIONS(982), 1, + ACTIONS(991), 1, aux_sym_unary_expression_token1, - ACTIONS(984), 1, + ACTIONS(993), 1, aux_sym_unary_expression_token2, - ACTIONS(986), 1, + ACTIONS(995), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(988), 1, + ACTIONS(997), 1, aux_sym_current_changed_expression_token1, - ACTIONS(990), 1, + ACTIONS(999), 1, aux_sym_locked_expression_token1, - ACTIONS(992), 1, + ACTIONS(1001), 1, aux_sym_input_expression_token1, - ACTIONS(994), 1, + ACTIONS(1003), 1, aux_sym_scope_tuning_token1, - ACTIONS(996), 1, + ACTIONS(1005), 1, aux_sym_if_statement_token1, - ACTIONS(998), 1, + ACTIONS(1007), 1, aux_sym_can_find_expression_token1, - ACTIONS(1000), 1, + ACTIONS(1009), 1, aux_sym_accumulate_expression_token1, - STATE(795), 1, + STATE(606), 1, sym__expression, - STATE(918), 1, + STATE(652), 1, sym_object_access, - STATE(965), 1, + STATE(704), 1, sym__decimal_literal, - ACTIONS(1002), 2, + ACTIONS(1011), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(370), 2, + STATE(361), 2, sym_comment, sym_include, - STATE(970), 2, + STATE(703), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(972), 4, + ACTIONS(981), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(977), 4, + STATE(677), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(956), 18, + STATE(660), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55307,71 +53984,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8772] = 28, + [8464] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(975), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(977), 1, anon_sym_LBRACE, - ACTIONS(651), 1, + ACTIONS(979), 1, sym_null_expression, - ACTIONS(655), 1, + ACTIONS(983), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(985), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(987), 1, anon_sym_SQUOTE, - ACTIONS(663), 1, + ACTIONS(989), 1, + anon_sym_LPAREN, + ACTIONS(991), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(993), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(995), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(997), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(999), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1001), 1, aux_sym_input_expression_token1, - ACTIONS(677), 1, + ACTIONS(1003), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, + ACTIONS(1005), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(1007), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(1009), 1, aux_sym_accumulate_expression_token1, - ACTIONS(763), 1, - anon_sym_LPAREN, - STATE(314), 1, + STATE(602), 1, sym__expression, - STATE(559), 1, - sym__decimal_literal, - STATE(574), 1, + STATE(652), 1, sym_object_access, - ACTIONS(687), 2, + STATE(704), 1, + sym__decimal_literal, + ACTIONS(1011), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(371), 2, + STATE(362), 2, sym_comment, sym_include, - STATE(557), 2, + STATE(703), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + ACTIONS(981), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(677), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(660), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55390,206 +54067,154 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8883] = 20, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(962), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1004), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - STATE(1697), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(372), 2, - sym_comment, - sym_include, - ACTIONS(958), 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(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(960), 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(231), 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, - [8978] = 5, + [8575] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1006), 1, - anon_sym_NO_DASHERROR, - STATE(373), 2, - sym_comment, - sym_include, - ACTIONS(147), 49, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(975), 1, sym_identifier, - anon_sym_STAR, - sym__terminator, + ACTIONS(977), 1, + anon_sym_LBRACE, + ACTIONS(979), 1, sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(983), 1, sym__integer_literal, + ACTIONS(985), 1, anon_sym_DQUOTE, + ACTIONS(987), 1, anon_sym_SQUOTE, + ACTIONS(989), 1, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(991), 1, aux_sym_unary_expression_token1, + ACTIONS(993), 1, aux_sym_unary_expression_token2, + ACTIONS(995), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(997), 1, aux_sym_current_changed_expression_token1, + ACTIONS(999), 1, aux_sym_locked_expression_token1, + ACTIONS(1001), 1, 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, + ACTIONS(1003), 1, aux_sym_scope_tuning_token1, + ACTIONS(1005), 1, aux_sym_if_statement_token1, + ACTIONS(1007), 1, aux_sym_can_find_expression_token1, + ACTIONS(1009), 1, aux_sym_accumulate_expression_token1, + STATE(599), 1, + sym__expression, + STATE(652), 1, + sym_object_access, + STATE(704), 1, + sym__decimal_literal, + ACTIONS(1011), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [9043] = 28, + STATE(363), 2, + sym_comment, + sym_include, + STATE(703), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(981), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(677), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(660), 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, + [8686] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1008), 1, + ACTIONS(975), 1, sym_identifier, - ACTIONS(1010), 1, + ACTIONS(977), 1, anon_sym_LBRACE, - ACTIONS(1012), 1, + ACTIONS(979), 1, sym_null_expression, - ACTIONS(1016), 1, + ACTIONS(983), 1, sym__integer_literal, - ACTIONS(1018), 1, + ACTIONS(985), 1, anon_sym_DQUOTE, - ACTIONS(1020), 1, + ACTIONS(987), 1, anon_sym_SQUOTE, - ACTIONS(1022), 1, + ACTIONS(989), 1, anon_sym_LPAREN, - ACTIONS(1024), 1, + ACTIONS(991), 1, aux_sym_unary_expression_token1, - ACTIONS(1026), 1, + ACTIONS(993), 1, aux_sym_unary_expression_token2, - ACTIONS(1028), 1, + ACTIONS(995), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1030), 1, + ACTIONS(997), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1032), 1, + ACTIONS(999), 1, aux_sym_locked_expression_token1, - ACTIONS(1034), 1, + ACTIONS(1001), 1, aux_sym_input_expression_token1, - ACTIONS(1036), 1, + ACTIONS(1003), 1, aux_sym_scope_tuning_token1, - ACTIONS(1038), 1, + ACTIONS(1005), 1, aux_sym_if_statement_token1, - ACTIONS(1040), 1, + ACTIONS(1007), 1, aux_sym_can_find_expression_token1, - ACTIONS(1042), 1, + ACTIONS(1009), 1, aux_sym_accumulate_expression_token1, - STATE(824), 1, + STATE(601), 1, sym__expression, - STATE(952), 1, + STATE(652), 1, sym_object_access, - STATE(999), 1, + STATE(704), 1, sym__decimal_literal, - ACTIONS(1044), 2, + ACTIONS(1011), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(374), 2, + STATE(364), 2, sym_comment, sym_include, - STATE(996), 2, + STATE(703), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1014), 4, + ACTIONS(981), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(995), 4, + STATE(677), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1006), 18, + STATE(660), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55608,71 +54233,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9154] = 28, + [8797] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(975), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(977), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(979), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(983), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(985), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(987), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(989), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(991), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(993), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(995), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(997), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(999), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1001), 1, + aux_sym_input_expression_token1, + ACTIONS(1003), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1005), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1007), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1009), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(388), 1, + STATE(607), 1, sym__expression, - ACTIONS(367), 2, + STATE(652), 1, + sym_object_access, + STATE(704), 1, + sym__decimal_literal, + ACTIONS(1011), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(375), 2, + STATE(365), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(703), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(981), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(677), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(660), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55691,71 +54316,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9265] = 28, + [8908] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(975), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(977), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(979), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(983), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(985), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(987), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(989), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(991), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(993), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(995), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(997), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(999), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1001), 1, + aux_sym_input_expression_token1, + ACTIONS(1003), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1005), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1007), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1009), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(49), 1, + STATE(605), 1, sym__expression, - ACTIONS(367), 2, + STATE(652), 1, + sym_object_access, + STATE(704), 1, + sym__decimal_literal, + ACTIONS(1011), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(376), 2, + STATE(366), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(703), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(981), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(677), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(660), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55774,71 +54399,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9376] = 28, + [9019] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(975), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(977), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(979), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(983), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(985), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(987), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(989), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(991), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(993), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(995), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(997), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(999), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1001), 1, + aux_sym_input_expression_token1, + ACTIONS(1003), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1005), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1007), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1009), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(860), 1, + STATE(604), 1, sym__expression, - ACTIONS(367), 2, + STATE(652), 1, + sym_object_access, + STATE(704), 1, + sym__decimal_literal, + ACTIONS(1011), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(377), 2, + STATE(367), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(703), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(981), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(677), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(660), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55857,71 +54482,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9487] = 28, + [9130] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(975), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(977), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(979), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(983), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(985), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(987), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(989), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(991), 1, aux_sym_unary_expression_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(377), 1, + ACTIONS(993), 1, aux_sym_unary_expression_token2, - ACTIONS(379), 1, + ACTIONS(995), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(381), 1, + ACTIONS(997), 1, aux_sym_current_changed_expression_token1, - ACTIONS(383), 1, + ACTIONS(999), 1, aux_sym_locked_expression_token1, - ACTIONS(385), 1, + ACTIONS(1001), 1, aux_sym_input_expression_token1, - ACTIONS(387), 1, + ACTIONS(1003), 1, aux_sym_scope_tuning_token1, - ACTIONS(389), 1, + ACTIONS(1005), 1, aux_sym_if_statement_token1, - ACTIONS(401), 1, + ACTIONS(1007), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1009), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(638), 1, + STATE(603), 1, sym__expression, - ACTIONS(367), 2, + STATE(652), 1, + sym_object_access, + STATE(704), 1, + sym__decimal_literal, + ACTIONS(1011), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(378), 2, + STATE(368), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(703), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(981), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(677), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(660), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55940,71 +54565,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9598] = 28, + [9241] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(899), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(901), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(903), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(907), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(909), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(911), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(915), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(917), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(919), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(921), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(923), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(925), 1, + aux_sym_input_expression_token1, + ACTIONS(927), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(929), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(931), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(933), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(630), 1, + STATE(633), 1, sym__expression, - ACTIONS(367), 2, + STATE(716), 1, + sym_object_access, + STATE(752), 1, + sym__decimal_literal, + ACTIONS(935), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(379), 2, + STATE(369), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(746), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(905), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(728), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56023,71 +54648,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9709] = 28, + [9352] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, + ACTIONS(899), 1, sym_identifier, - ACTIONS(920), 1, + ACTIONS(901), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(903), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(907), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(909), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(911), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(915), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(917), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(919), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(921), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(923), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, + ACTIONS(925), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(927), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(929), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(931), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(933), 1, aux_sym_accumulate_expression_token1, - STATE(693), 1, + STATE(632), 1, sym__expression, - STATE(845), 1, + STATE(716), 1, sym_object_access, - STATE(937), 1, + STATE(752), 1, sym__decimal_literal, - ACTIONS(954), 2, + ACTIONS(935), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(380), 2, + STATE(370), 2, sym_comment, sym_include, - STATE(938), 2, + STATE(746), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + ACTIONS(905), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(728), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56106,71 +54731,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9820] = 28, + [9463] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, + ACTIONS(899), 1, sym_identifier, - ACTIONS(920), 1, + ACTIONS(901), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(903), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(907), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(909), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(911), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(915), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(917), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(919), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(921), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(923), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, + ACTIONS(925), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(927), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(929), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(931), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(933), 1, aux_sym_accumulate_expression_token1, - STATE(714), 1, + STATE(631), 1, sym__expression, - STATE(845), 1, + STATE(716), 1, sym_object_access, - STATE(937), 1, + STATE(752), 1, sym__decimal_literal, - ACTIONS(954), 2, + ACTIONS(935), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(381), 2, + STATE(371), 2, sym_comment, sym_include, - STATE(938), 2, + STATE(746), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + ACTIONS(905), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(728), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56189,146 +54814,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9931] = 20, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(962), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1046), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - STATE(1706), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(382), 2, - sym_comment, - sym_include, - ACTIONS(958), 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(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(960), 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(231), 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, - [10026] = 28, + [9574] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(899), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(901), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(903), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(907), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(909), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(911), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(915), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(917), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(919), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(921), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(923), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(925), 1, + aux_sym_input_expression_token1, + ACTIONS(927), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(929), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(931), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(933), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(825), 1, + STATE(639), 1, sym__expression, - ACTIONS(367), 2, + STATE(716), 1, + sym_object_access, + STATE(752), 1, + sym__decimal_literal, + ACTIONS(935), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(383), 2, + STATE(372), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(746), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(905), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(728), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56347,71 +54897,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10137] = 28, + [9685] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(966), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(970), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(974), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(976), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(978), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(980), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(982), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(984), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(986), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(988), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(990), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(992), 1, - aux_sym_input_expression_token1, - ACTIONS(994), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(996), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(998), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1000), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(804), 1, - sym__expression, - STATE(918), 1, - sym_object_access, - STATE(965), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1002), 2, + STATE(34), 1, + sym_object_access, + STATE(623), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(384), 2, - sym_comment, - sym_include, - STATE(970), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(972), 4, + STATE(373), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(977), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(956), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56430,71 +54980,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10248] = 28, + [9796] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(651), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(655), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(663), 1, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, - aux_sym_input_expression_token1, - ACTIONS(677), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(763), 1, - anon_sym_LPAREN, - STATE(320), 1, - sym__expression, - STATE(559), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - STATE(574), 1, + STATE(34), 1, sym_object_access, - ACTIONS(687), 2, + STATE(541), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(385), 2, - sym_comment, - sym_include, - STATE(557), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + STATE(374), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56513,71 +55063,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10359] = 28, + [9907] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(966), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(970), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(974), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(976), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(978), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(980), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(982), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(984), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(986), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(988), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(990), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(992), 1, - aux_sym_input_expression_token1, - ACTIONS(994), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(996), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(998), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1000), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(788), 1, - sym__expression, - STATE(918), 1, - sym_object_access, - STATE(965), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1002), 2, + STATE(34), 1, + sym_object_access, + STATE(1082), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(386), 2, - sym_comment, - sym_include, - STATE(970), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(972), 4, + STATE(375), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(977), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(956), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56596,71 +55146,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10470] = 28, + [10018] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(966), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(970), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(974), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(976), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(978), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(980), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(982), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(984), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(986), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(988), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(990), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(992), 1, - aux_sym_input_expression_token1, - ACTIONS(994), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(996), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(998), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1000), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(808), 1, - sym__expression, - STATE(918), 1, - sym_object_access, - STATE(965), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1002), 2, + STATE(34), 1, + sym_object_access, + STATE(1276), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(387), 2, - sym_comment, - sym_include, - STATE(970), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(972), 4, + STATE(376), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(977), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(956), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56679,146 +55229,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10581] = 20, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(962), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1048), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - STATE(1700), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(388), 2, - sym_comment, - sym_include, - ACTIONS(958), 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(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(960), 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(231), 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, - [10676] = 28, + [10129] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(966), 1, + ACTIONS(649), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(651), 1, anon_sym_LBRACE, - ACTIONS(970), 1, + ACTIONS(655), 1, sym_null_expression, - ACTIONS(974), 1, + ACTIONS(659), 1, sym__integer_literal, - ACTIONS(976), 1, + ACTIONS(661), 1, anon_sym_DQUOTE, - ACTIONS(978), 1, + ACTIONS(663), 1, anon_sym_SQUOTE, - ACTIONS(980), 1, - anon_sym_LPAREN, - ACTIONS(982), 1, + ACTIONS(667), 1, aux_sym_unary_expression_token1, - ACTIONS(984), 1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, - ACTIONS(986), 1, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(988), 1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, - ACTIONS(990), 1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, - ACTIONS(992), 1, + ACTIONS(677), 1, aux_sym_input_expression_token1, - ACTIONS(994), 1, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, - ACTIONS(996), 1, + ACTIONS(683), 1, aux_sym_if_statement_token1, - ACTIONS(998), 1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, - ACTIONS(1000), 1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, - STATE(809), 1, + ACTIONS(802), 1, + anon_sym_LPAREN, + STATE(513), 1, sym__expression, - STATE(918), 1, + STATE(556), 1, sym_object_access, - STATE(965), 1, + STATE(577), 1, sym__decimal_literal, - ACTIONS(1002), 2, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(389), 2, + STATE(377), 2, sym_comment, sym_include, - STATE(970), 2, + STATE(551), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(972), 4, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(977), 4, + STATE(574), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(956), 18, + STATE(578), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56837,71 +55312,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10787] = 28, + [10240] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(589), 1, + STATE(46), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(390), 2, + STATE(378), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56920,71 +55395,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10898] = 28, + [10351] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(651), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(655), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(663), 1, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1039), 1, aux_sym_input_expression_token1, - ACTIONS(677), 1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(763), 1, - anon_sym_LPAREN, - STATE(322), 1, + STATE(688), 1, sym__expression, - STATE(559), 1, - sym__decimal_literal, - STATE(574), 1, + STATE(995), 1, sym_object_access, - ACTIONS(687), 2, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(391), 2, + STATE(379), 2, sym_comment, sym_include, - STATE(557), 2, + STATE(1314), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57003,71 +55478,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11009] = 28, + [10462] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(317), 1, + sym_identifier, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(355), 1, - aux_sym_scope_tuning_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1050), 1, - sym_identifier, - ACTIONS(1052), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1054), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1056), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1058), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1060), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1062), 1, - aux_sym_input_expression_token1, - ACTIONS(1064), 1, + ACTIONS(347), 1, + aux_sym_scope_tuning_token1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1066), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(767), 1, + STATE(1296), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(392), 2, + STATE(380), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57086,71 +55561,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11120] = 28, + [10573] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(966), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(970), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(974), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(976), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(978), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(980), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(982), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(984), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(986), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(988), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(990), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(992), 1, - aux_sym_input_expression_token1, - ACTIONS(994), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(996), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(998), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1000), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(811), 1, - sym__expression, - STATE(918), 1, - sym_object_access, - STATE(965), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1002), 2, + STATE(34), 1, + sym_object_access, + STATE(613), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(393), 2, - sym_comment, - sym_include, - STATE(970), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(972), 4, + STATE(381), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(977), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(956), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57169,71 +55644,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11231] = 28, + [10684] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(494), 1, + STATE(538), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(394), 2, + STATE(382), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57252,71 +55727,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11342] = 28, + [10795] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(651), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(655), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(663), 1, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1039), 1, aux_sym_input_expression_token1, - ACTIONS(677), 1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(763), 1, - anon_sym_LPAREN, - STATE(324), 1, + STATE(694), 1, sym__expression, - STATE(559), 1, - sym__decimal_literal, - STATE(574), 1, + STATE(995), 1, sym_object_access, - ACTIONS(687), 2, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(395), 2, + STATE(383), 2, sym_comment, sym_include, - STATE(557), 2, + STATE(1314), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57335,71 +55810,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11453] = 28, + [10906] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(634), 1, + STATE(47), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(396), 2, + STATE(384), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57418,71 +55893,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11564] = 28, + [11017] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1039), 1, + aux_sym_input_expression_token1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(587), 1, + STATE(684), 1, sym__expression, - ACTIONS(367), 2, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(397), 2, + STATE(385), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1314), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57501,71 +55976,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11675] = 28, + [11128] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(937), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(939), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(941), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(945), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(947), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(949), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(951), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(953), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(957), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(959), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(961), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(963), 1, + aux_sym_input_expression_token1, + ACTIONS(965), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(967), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(969), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(971), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(372), 1, + STATE(791), 1, sym__expression, - ACTIONS(367), 2, + STATE(1180), 1, + sym_object_access, + STATE(1545), 1, + sym__decimal_literal, + ACTIONS(973), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(398), 2, + STATE(386), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1548), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(943), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1544), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1547), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57584,71 +56059,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11786] = 28, + [11239] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(937), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(939), 1, anon_sym_LBRACE, - ACTIONS(651), 1, + ACTIONS(941), 1, sym_null_expression, - ACTIONS(655), 1, + ACTIONS(945), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(947), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(949), 1, anon_sym_SQUOTE, - ACTIONS(663), 1, + ACTIONS(951), 1, + anon_sym_LPAREN, + ACTIONS(953), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(957), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(959), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(961), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(963), 1, aux_sym_input_expression_token1, - ACTIONS(677), 1, + ACTIONS(965), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, + ACTIONS(967), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(969), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(971), 1, aux_sym_accumulate_expression_token1, - ACTIONS(763), 1, - anon_sym_LPAREN, - STATE(319), 1, + STATE(789), 1, sym__expression, - STATE(559), 1, - sym__decimal_literal, - STATE(574), 1, + STATE(1180), 1, sym_object_access, - ACTIONS(687), 2, + STATE(1545), 1, + sym__decimal_literal, + ACTIONS(973), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(399), 2, + STATE(387), 2, sym_comment, sym_include, - STATE(557), 2, + STATE(1548), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + ACTIONS(943), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(1544), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(1547), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57667,71 +56142,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11897] = 28, + [11350] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(377), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(379), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(381), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(383), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - ACTIONS(387), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(389), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(401), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(653), 1, + STATE(1092), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(400), 2, + STATE(388), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57750,206 +56225,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12008] = 20, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(962), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1068), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - STATE(1722), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(401), 2, - sym_comment, - sym_include, - ACTIONS(958), 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(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(960), 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(231), 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, - [12103] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1070), 1, - sym__namedot, - STATE(402), 2, - sym_comment, - sym_include, - ACTIONS(98), 49, - 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__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [12168] = 28, + [11461] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(628), 1, + STATE(612), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(403), 2, + STATE(389), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57968,71 +56308,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12279] = 28, + [11572] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(377), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(379), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(381), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(383), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - ACTIONS(387), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(389), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(401), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(661), 1, + STATE(540), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(404), 2, + STATE(390), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58051,146 +56391,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12390] = 20, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(962), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1072), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - STATE(1694), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(405), 2, - sym_comment, - sym_include, - ACTIONS(958), 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(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(960), 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(231), 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, - [12485] = 28, + [11683] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(812), 1, + STATE(1327), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(406), 2, + STATE(391), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58209,71 +56474,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12596] = 28, + [11794] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(920), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, + ACTIONS(1039), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - STATE(710), 1, + STATE(700), 1, sym__expression, - STATE(845), 1, + STATE(995), 1, sym_object_access, - STATE(937), 1, + STATE(1404), 1, sym__decimal_literal, - ACTIONS(954), 2, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(407), 2, + STATE(392), 2, sym_comment, sym_include, - STATE(938), 2, + STATE(1314), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58292,146 +56557,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12707] = 20, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(962), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1074), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - STATE(1701), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(408), 2, - sym_comment, - sym_include, - ACTIONS(958), 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(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(960), 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(231), 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, - [12802] = 28, + [11905] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(937), 1, + sym_identifier, + ACTIONS(939), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(941), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(945), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(947), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(949), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(951), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(953), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(957), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(959), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(961), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(963), 1, + aux_sym_input_expression_token1, + ACTIONS(965), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(967), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(969), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(971), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - ACTIONS(1076), 1, - sym_identifier, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(855), 1, + STATE(782), 1, sym__expression, - ACTIONS(367), 2, + STATE(1180), 1, + sym_object_access, + STATE(1545), 1, + sym__decimal_literal, + ACTIONS(973), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(409), 2, + STATE(393), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1548), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(943), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1544), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1547), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58450,71 +56640,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12913] = 28, + [12016] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(966), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(970), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(974), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(976), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(978), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(980), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(982), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(984), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(986), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(988), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(990), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(992), 1, - aux_sym_input_expression_token1, - ACTIONS(994), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(996), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(998), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1000), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(800), 1, - sym__expression, - STATE(918), 1, - sym_object_access, - STATE(965), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1002), 2, + STATE(34), 1, + sym_object_access, + STATE(542), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(410), 2, - sym_comment, - sym_include, - STATE(970), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(972), 4, + STATE(394), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(977), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(956), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58533,71 +56723,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13024] = 28, + [12127] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(869), 1, + STATE(1342), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(411), 2, + STATE(395), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58616,71 +56806,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13135] = 28, + [12238] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1008), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(1010), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(1012), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(1016), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(1018), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(1020), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(1022), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(1024), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1026), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1028), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1030), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1032), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1034), 1, - aux_sym_input_expression_token1, - ACTIONS(1036), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(1038), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1040), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1042), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(827), 1, - sym__expression, - STATE(952), 1, - sym_object_access, - STATE(999), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1044), 2, + STATE(34), 1, + sym_object_access, + STATE(626), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(412), 2, - sym_comment, - sym_include, - STATE(996), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1014), 4, + STATE(396), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(995), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1006), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58699,71 +56889,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13246] = 28, + [12349] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(810), 1, + STATE(580), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(413), 2, + STATE(397), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58782,71 +56972,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13357] = 28, + [12460] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1078), 1, + ACTIONS(937), 1, sym_identifier, - ACTIONS(1080), 1, + ACTIONS(939), 1, anon_sym_LBRACE, - ACTIONS(1082), 1, + ACTIONS(941), 1, sym_null_expression, - ACTIONS(1086), 1, + ACTIONS(945), 1, sym__integer_literal, - ACTIONS(1088), 1, + ACTIONS(947), 1, anon_sym_DQUOTE, - ACTIONS(1090), 1, + ACTIONS(949), 1, anon_sym_SQUOTE, - ACTIONS(1092), 1, + ACTIONS(951), 1, anon_sym_LPAREN, - ACTIONS(1094), 1, + ACTIONS(953), 1, aux_sym_unary_expression_token1, - ACTIONS(1096), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token2, - ACTIONS(1098), 1, + ACTIONS(957), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1100), 1, + ACTIONS(959), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1102), 1, + ACTIONS(961), 1, aux_sym_locked_expression_token1, - ACTIONS(1104), 1, + ACTIONS(963), 1, aux_sym_input_expression_token1, - ACTIONS(1106), 1, + ACTIONS(965), 1, aux_sym_scope_tuning_token1, - ACTIONS(1108), 1, + ACTIONS(967), 1, aux_sym_if_statement_token1, - ACTIONS(1110), 1, + ACTIONS(969), 1, aux_sym_can_find_expression_token1, - ACTIONS(1112), 1, + ACTIONS(971), 1, aux_sym_accumulate_expression_token1, - STATE(612), 1, + STATE(784), 1, sym__expression, - STATE(645), 1, + STATE(1180), 1, sym_object_access, - STATE(674), 1, + STATE(1545), 1, sym__decimal_literal, - ACTIONS(1114), 2, + ACTIONS(973), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(414), 2, + STATE(398), 2, sym_comment, sym_include, - STATE(669), 2, + STATE(1548), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1084), 4, + ACTIONS(943), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(668), 4, + STATE(1544), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(685), 18, + STATE(1547), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58865,71 +57055,154 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13468] = 28, + [12571] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1078), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(1080), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(1082), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(1086), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(1088), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(1090), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(1092), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(1094), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1096), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1098), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1100), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1102), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1104), 1, - aux_sym_input_expression_token1, - ACTIONS(1106), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(1108), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1110), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1112), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(609), 1, - sym__expression, - STATE(645), 1, - sym_object_access, - STATE(674), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1114), 2, + STATE(34), 1, + sym_object_access, + STATE(546), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(415), 2, + STATE(17), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(399), 2, sym_comment, sym_include, - STATE(669), 2, + ACTIONS(323), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(32), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(18), 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, + [12682] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(317), 1, + sym_identifier, + ACTIONS(319), 1, + anon_sym_LBRACE, + ACTIONS(321), 1, + sym_null_expression, + ACTIONS(325), 1, + sym__integer_literal, + ACTIONS(327), 1, + anon_sym_DQUOTE, + ACTIONS(329), 1, + anon_sym_SQUOTE, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(335), 1, + aux_sym_unary_expression_token1, + ACTIONS(337), 1, + aux_sym_unary_expression_token2, + ACTIONS(339), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(341), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(343), 1, + aux_sym_locked_expression_token1, + ACTIONS(347), 1, + aux_sym_scope_tuning_token1, + ACTIONS(351), 1, + aux_sym_if_statement_token1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(357), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, + sym__decimal_literal, + STATE(34), 1, + sym_object_access, + STATE(797), 1, + sym__expression, + ACTIONS(359), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1084), 4, + STATE(400), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(668), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(685), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58948,71 +57221,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13579] = 28, + [12793] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1078), 1, + ACTIONS(937), 1, sym_identifier, - ACTIONS(1080), 1, + ACTIONS(939), 1, anon_sym_LBRACE, - ACTIONS(1082), 1, + ACTIONS(941), 1, sym_null_expression, - ACTIONS(1086), 1, + ACTIONS(945), 1, sym__integer_literal, - ACTIONS(1088), 1, + ACTIONS(947), 1, anon_sym_DQUOTE, - ACTIONS(1090), 1, + ACTIONS(949), 1, anon_sym_SQUOTE, - ACTIONS(1092), 1, + ACTIONS(951), 1, anon_sym_LPAREN, - ACTIONS(1094), 1, + ACTIONS(953), 1, aux_sym_unary_expression_token1, - ACTIONS(1096), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token2, - ACTIONS(1098), 1, + ACTIONS(957), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1100), 1, + ACTIONS(959), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1102), 1, + ACTIONS(961), 1, aux_sym_locked_expression_token1, - ACTIONS(1104), 1, + ACTIONS(963), 1, aux_sym_input_expression_token1, - ACTIONS(1106), 1, + ACTIONS(965), 1, aux_sym_scope_tuning_token1, - ACTIONS(1108), 1, + ACTIONS(967), 1, aux_sym_if_statement_token1, - ACTIONS(1110), 1, + ACTIONS(969), 1, aux_sym_can_find_expression_token1, - ACTIONS(1112), 1, + ACTIONS(971), 1, aux_sym_accumulate_expression_token1, - STATE(610), 1, + STATE(787), 1, sym__expression, - STATE(645), 1, + STATE(1180), 1, sym_object_access, - STATE(674), 1, + STATE(1545), 1, sym__decimal_literal, - ACTIONS(1114), 2, + ACTIONS(973), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(416), 2, + STATE(401), 2, sym_comment, sym_include, - STATE(669), 2, + STATE(1548), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1084), 4, + ACTIONS(943), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(668), 4, + STATE(1544), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(685), 18, + STATE(1547), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59031,71 +57304,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13690] = 28, + [12904] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(377), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(379), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(381), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(383), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(385), 1, + ACTIONS(1039), 1, aux_sym_input_expression_token1, - ACTIONS(387), 1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(389), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(401), 1, + ACTIONS(1045), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(655), 1, + STATE(669), 1, sym__expression, - ACTIONS(367), 2, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(417), 2, + STATE(402), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1314), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59114,71 +57387,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13801] = 28, + [13015] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1078), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(1080), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(1082), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(1086), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(1088), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(1090), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(1092), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1094), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(1096), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(1098), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1100), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1102), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(1104), 1, + ACTIONS(1039), 1, aux_sym_input_expression_token1, - ACTIONS(1106), 1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(1108), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(1110), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(1112), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - STATE(611), 1, + STATE(701), 1, sym__expression, - STATE(645), 1, + STATE(995), 1, sym_object_access, - STATE(674), 1, + STATE(1404), 1, sym__decimal_literal, - ACTIONS(1114), 2, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(418), 2, + STATE(403), 2, sym_comment, sym_include, - STATE(669), 2, + STATE(1314), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1084), 4, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(668), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(685), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59197,71 +57470,154 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13912] = 28, + [13126] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1078), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(1080), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(1082), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(1086), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(1088), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(1090), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(1092), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(1094), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1096), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1098), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1100), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1102), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1104), 1, - aux_sym_input_expression_token1, - ACTIONS(1106), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(1108), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1110), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1112), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(614), 1, - sym__expression, - STATE(645), 1, - sym_object_access, - STATE(674), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1114), 2, + STATE(34), 1, + sym_object_access, + STATE(729), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(419), 2, + STATE(17), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(404), 2, sym_comment, sym_include, - STATE(669), 2, + ACTIONS(323), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(32), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(18), 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, + [13237] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(317), 1, + sym_identifier, + ACTIONS(319), 1, + anon_sym_LBRACE, + ACTIONS(321), 1, + sym_null_expression, + ACTIONS(325), 1, + sym__integer_literal, + ACTIONS(327), 1, + anon_sym_DQUOTE, + ACTIONS(329), 1, + anon_sym_SQUOTE, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(335), 1, + aux_sym_unary_expression_token1, + ACTIONS(337), 1, + aux_sym_unary_expression_token2, + ACTIONS(339), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(341), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(343), 1, + aux_sym_locked_expression_token1, + ACTIONS(347), 1, + aux_sym_scope_tuning_token1, + ACTIONS(351), 1, + aux_sym_if_statement_token1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(357), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, + sym__decimal_literal, + STATE(34), 1, + sym_object_access, + STATE(619), 1, + sym__expression, + ACTIONS(359), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1084), 4, + STATE(405), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(668), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(685), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59280,71 +57636,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14023] = 28, + [13348] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1078), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1080), 1, + ACTIONS(1053), 1, anon_sym_LBRACE, - ACTIONS(1082), 1, + ACTIONS(1055), 1, sym_null_expression, - ACTIONS(1086), 1, + ACTIONS(1059), 1, sym__integer_literal, - ACTIONS(1088), 1, + ACTIONS(1061), 1, anon_sym_DQUOTE, - ACTIONS(1090), 1, + ACTIONS(1063), 1, anon_sym_SQUOTE, - ACTIONS(1092), 1, + ACTIONS(1065), 1, anon_sym_LPAREN, - ACTIONS(1094), 1, + ACTIONS(1067), 1, aux_sym_unary_expression_token1, - ACTIONS(1096), 1, + ACTIONS(1069), 1, aux_sym_unary_expression_token2, - ACTIONS(1098), 1, + ACTIONS(1071), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1100), 1, + ACTIONS(1073), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1102), 1, + ACTIONS(1075), 1, aux_sym_locked_expression_token1, - ACTIONS(1104), 1, + ACTIONS(1077), 1, aux_sym_input_expression_token1, - ACTIONS(1106), 1, + ACTIONS(1079), 1, aux_sym_scope_tuning_token1, - ACTIONS(1108), 1, + ACTIONS(1081), 1, aux_sym_if_statement_token1, - ACTIONS(1110), 1, + ACTIONS(1083), 1, aux_sym_can_find_expression_token1, - ACTIONS(1112), 1, + ACTIONS(1085), 1, aux_sym_accumulate_expression_token1, - STATE(615), 1, + STATE(818), 1, sym__expression, - STATE(645), 1, + STATE(1537), 1, sym_object_access, - STATE(674), 1, + STATE(1593), 1, sym__decimal_literal, - ACTIONS(1114), 2, + ACTIONS(1087), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(420), 2, + STATE(406), 2, sym_comment, sym_include, - STATE(669), 2, + STATE(1580), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1084), 4, + ACTIONS(1057), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(668), 4, + STATE(1592), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(685), 18, + STATE(1596), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59363,71 +57719,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14134] = 28, + [13459] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1078), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(1080), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(1082), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(1086), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(1088), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(1090), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(1092), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1094), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(1096), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(1098), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1100), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1102), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(1104), 1, + ACTIONS(1039), 1, aux_sym_input_expression_token1, - ACTIONS(1106), 1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(1108), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(1110), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(1112), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - STATE(607), 1, + STATE(705), 1, sym__expression, - STATE(645), 1, + STATE(995), 1, sym_object_access, - STATE(674), 1, + STATE(1404), 1, sym__decimal_literal, - ACTIONS(1114), 2, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(421), 2, + STATE(407), 2, sym_comment, sym_include, - STATE(669), 2, + STATE(1314), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1084), 4, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(668), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(685), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59446,71 +57802,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14245] = 28, + [13570] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1078), 1, + ACTIONS(975), 1, sym_identifier, - ACTIONS(1080), 1, + ACTIONS(977), 1, anon_sym_LBRACE, - ACTIONS(1082), 1, + ACTIONS(979), 1, sym_null_expression, - ACTIONS(1086), 1, + ACTIONS(983), 1, sym__integer_literal, - ACTIONS(1088), 1, + ACTIONS(985), 1, anon_sym_DQUOTE, - ACTIONS(1090), 1, + ACTIONS(987), 1, anon_sym_SQUOTE, - ACTIONS(1092), 1, + ACTIONS(989), 1, anon_sym_LPAREN, - ACTIONS(1094), 1, + ACTIONS(991), 1, aux_sym_unary_expression_token1, - ACTIONS(1096), 1, + ACTIONS(993), 1, aux_sym_unary_expression_token2, - ACTIONS(1098), 1, + ACTIONS(995), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1100), 1, + ACTIONS(997), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1102), 1, + ACTIONS(999), 1, aux_sym_locked_expression_token1, - ACTIONS(1104), 1, + ACTIONS(1001), 1, aux_sym_input_expression_token1, - ACTIONS(1106), 1, + ACTIONS(1003), 1, aux_sym_scope_tuning_token1, - ACTIONS(1108), 1, + ACTIONS(1005), 1, aux_sym_if_statement_token1, - ACTIONS(1110), 1, + ACTIONS(1007), 1, aux_sym_can_find_expression_token1, - ACTIONS(1112), 1, + ACTIONS(1009), 1, aux_sym_accumulate_expression_token1, - STATE(606), 1, + STATE(608), 1, sym__expression, - STATE(645), 1, + STATE(652), 1, sym_object_access, - STATE(674), 1, + STATE(704), 1, sym__decimal_literal, - ACTIONS(1114), 2, + ACTIONS(1011), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(422), 2, + STATE(408), 2, sym_comment, sym_include, - STATE(669), 2, + STATE(703), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1084), 4, + ACTIONS(981), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(668), 4, + STATE(677), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(685), 18, + STATE(660), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59529,71 +57885,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14356] = 28, + [13681] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1078), 1, - sym_identifier, - ACTIONS(1080), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(1082), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(1086), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(1088), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(1090), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(1092), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(1094), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1096), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1098), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1100), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1102), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1104), 1, - aux_sym_input_expression_token1, - ACTIONS(1106), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(1108), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1110), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1112), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(608), 1, - sym__expression, - STATE(645), 1, - sym_object_access, - STATE(674), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + ACTIONS(1089), 1, + sym_identifier, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1114), 2, + STATE(34), 1, + sym_object_access, + STATE(1127), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(423), 2, - sym_comment, - sym_include, - STATE(669), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1084), 4, + STATE(409), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(668), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(685), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59612,71 +57968,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14467] = 28, + [13792] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1078), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(1080), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(1082), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(1086), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(1088), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(1090), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(1092), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(1094), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1096), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1098), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1100), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1102), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1104), 1, - aux_sym_input_expression_token1, - ACTIONS(1106), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(1108), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1110), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1112), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(613), 1, - sym__expression, - STATE(645), 1, - sym_object_access, - STATE(674), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1114), 2, + STATE(34), 1, + sym_object_access, + STATE(1369), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(424), 2, - sym_comment, - sym_include, - STATE(669), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1084), 4, + STATE(410), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(668), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(685), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59695,71 +58051,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14578] = 28, + [13903] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1008), 1, + ACTIONS(649), 1, sym_identifier, - ACTIONS(1010), 1, + ACTIONS(651), 1, anon_sym_LBRACE, - ACTIONS(1012), 1, + ACTIONS(655), 1, sym_null_expression, - ACTIONS(1016), 1, + ACTIONS(659), 1, sym__integer_literal, - ACTIONS(1018), 1, + ACTIONS(661), 1, anon_sym_DQUOTE, - ACTIONS(1020), 1, + ACTIONS(663), 1, anon_sym_SQUOTE, - ACTIONS(1022), 1, - anon_sym_LPAREN, - ACTIONS(1024), 1, + ACTIONS(667), 1, aux_sym_unary_expression_token1, - ACTIONS(1026), 1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, - ACTIONS(1028), 1, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1030), 1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1032), 1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, - ACTIONS(1034), 1, + ACTIONS(677), 1, aux_sym_input_expression_token1, - ACTIONS(1036), 1, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, - ACTIONS(1038), 1, + ACTIONS(683), 1, aux_sym_if_statement_token1, - ACTIONS(1040), 1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, - ACTIONS(1042), 1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, - STATE(828), 1, + ACTIONS(802), 1, + anon_sym_LPAREN, + STATE(522), 1, sym__expression, - STATE(952), 1, + STATE(556), 1, sym_object_access, - STATE(999), 1, + STATE(577), 1, sym__decimal_literal, - ACTIONS(1044), 2, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(425), 2, + STATE(411), 2, sym_comment, sym_include, - STATE(996), 2, + STATE(551), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1014), 4, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(995), 4, + STATE(574), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1006), 18, + STATE(578), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59778,71 +58134,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14689] = 28, + [14014] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(377), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(379), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(381), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(383), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - ACTIONS(387), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(389), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(401), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(637), 1, + STATE(1242), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(426), 2, + STATE(412), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59861,71 +58217,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14800] = 28, + [14125] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(317), 1, + sym_identifier, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(355), 1, - aux_sym_scope_tuning_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1050), 1, - sym_identifier, - ACTIONS(1052), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1054), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1056), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1058), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1060), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1062), 1, - aux_sym_input_expression_token1, - ACTIONS(1064), 1, + ACTIONS(347), 1, + aux_sym_scope_tuning_token1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1066), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(768), 1, + STATE(1381), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(427), 2, + STATE(413), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59944,71 +58300,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14911] = 28, + [14236] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1008), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(1010), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(1012), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(1016), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(1018), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(1020), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(1022), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(1024), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1026), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1028), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1030), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1032), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1034), 1, - aux_sym_input_expression_token1, - ACTIONS(1036), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(1038), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1040), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1042), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(830), 1, - sym__expression, - STATE(952), 1, - sym_object_access, - STATE(999), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1044), 2, + STATE(34), 1, + sym_object_access, + STATE(1216), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(428), 2, - sym_comment, - sym_include, - STATE(996), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1014), 4, + STATE(414), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(995), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1006), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60027,71 +58383,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15022] = 28, + [14347] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1008), 1, + ACTIONS(649), 1, sym_identifier, - ACTIONS(1010), 1, + ACTIONS(651), 1, anon_sym_LBRACE, - ACTIONS(1012), 1, + ACTIONS(655), 1, sym_null_expression, - ACTIONS(1016), 1, + ACTIONS(659), 1, sym__integer_literal, - ACTIONS(1018), 1, + ACTIONS(661), 1, anon_sym_DQUOTE, - ACTIONS(1020), 1, + ACTIONS(663), 1, anon_sym_SQUOTE, - ACTIONS(1022), 1, - anon_sym_LPAREN, - ACTIONS(1024), 1, + ACTIONS(667), 1, aux_sym_unary_expression_token1, - ACTIONS(1026), 1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, - ACTIONS(1028), 1, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1030), 1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1032), 1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, - ACTIONS(1034), 1, + ACTIONS(677), 1, aux_sym_input_expression_token1, - ACTIONS(1036), 1, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, - ACTIONS(1038), 1, + ACTIONS(683), 1, aux_sym_if_statement_token1, - ACTIONS(1040), 1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, - ACTIONS(1042), 1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, - STATE(831), 1, + ACTIONS(802), 1, + anon_sym_LPAREN, + STATE(519), 1, sym__expression, - STATE(952), 1, + STATE(556), 1, sym_object_access, - STATE(999), 1, + STATE(577), 1, sym__decimal_literal, - ACTIONS(1044), 2, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(429), 2, + STATE(415), 2, sym_comment, sym_include, - STATE(996), 2, + STATE(551), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1014), 4, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(995), 4, + STATE(574), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1006), 18, + STATE(578), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60110,71 +58466,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15133] = 28, + [14458] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1008), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(1010), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(1012), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(1016), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(1018), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(1020), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(1022), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(1024), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1026), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1028), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1030), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1032), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1034), 1, - aux_sym_input_expression_token1, - ACTIONS(1036), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(1038), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1040), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1042), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(834), 1, - sym__expression, - STATE(952), 1, - sym_object_access, - STATE(999), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1044), 2, + STATE(34), 1, + sym_object_access, + STATE(545), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(430), 2, - sym_comment, - sym_include, - STATE(996), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1014), 4, + STATE(416), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(995), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1006), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60193,71 +58549,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15244] = 28, + [14569] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(801), 1, + STATE(792), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(431), 2, + STATE(417), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60276,71 +58632,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15355] = 28, + [14680] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(937), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(939), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(941), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(945), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(947), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(949), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(951), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(953), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(957), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(959), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(961), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(963), 1, + aux_sym_input_expression_token1, + ACTIONS(965), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(967), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(969), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(971), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(867), 1, + STATE(794), 1, sym__expression, - ACTIONS(367), 2, + STATE(1180), 1, + sym_object_access, + STATE(1545), 1, + sym__decimal_literal, + ACTIONS(973), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(432), 2, + STATE(418), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1548), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(943), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1544), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1547), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60359,71 +58715,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15466] = 28, + [14791] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1008), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1010), 1, + ACTIONS(1053), 1, anon_sym_LBRACE, - ACTIONS(1012), 1, + ACTIONS(1055), 1, sym_null_expression, - ACTIONS(1016), 1, + ACTIONS(1059), 1, sym__integer_literal, - ACTIONS(1018), 1, + ACTIONS(1061), 1, anon_sym_DQUOTE, - ACTIONS(1020), 1, + ACTIONS(1063), 1, anon_sym_SQUOTE, - ACTIONS(1022), 1, + ACTIONS(1065), 1, anon_sym_LPAREN, - ACTIONS(1024), 1, + ACTIONS(1067), 1, aux_sym_unary_expression_token1, - ACTIONS(1026), 1, + ACTIONS(1069), 1, aux_sym_unary_expression_token2, - ACTIONS(1028), 1, + ACTIONS(1071), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1030), 1, + ACTIONS(1073), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1032), 1, + ACTIONS(1075), 1, aux_sym_locked_expression_token1, - ACTIONS(1034), 1, + ACTIONS(1077), 1, aux_sym_input_expression_token1, - ACTIONS(1036), 1, + ACTIONS(1079), 1, aux_sym_scope_tuning_token1, - ACTIONS(1038), 1, + ACTIONS(1081), 1, aux_sym_if_statement_token1, - ACTIONS(1040), 1, + ACTIONS(1083), 1, aux_sym_can_find_expression_token1, - ACTIONS(1042), 1, + ACTIONS(1085), 1, aux_sym_accumulate_expression_token1, - STATE(821), 1, + STATE(808), 1, sym__expression, - STATE(952), 1, + STATE(1537), 1, sym_object_access, - STATE(999), 1, + STATE(1593), 1, sym__decimal_literal, - ACTIONS(1044), 2, + ACTIONS(1087), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(433), 2, + STATE(419), 2, sym_comment, sym_include, - STATE(996), 2, + STATE(1580), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1014), 4, + ACTIONS(1057), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(995), 4, + STATE(1592), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1006), 18, + STATE(1596), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60442,71 +58798,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15577] = 28, + [14902] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1008), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(1010), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(1012), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(1016), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(1018), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(1020), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(1022), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(1024), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1026), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1028), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1030), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1032), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1034), 1, - aux_sym_input_expression_token1, - ACTIONS(1036), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(1038), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1040), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1042), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(820), 1, - sym__expression, - STATE(952), 1, - sym_object_access, - STATE(999), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1044), 2, + STATE(34), 1, + sym_object_access, + STATE(624), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(434), 2, - sym_comment, - sym_include, - STATE(996), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1014), 4, + STATE(420), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(995), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1006), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60525,71 +58881,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15688] = 28, + [15013] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(920), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, - aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(671), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(954), 2, + STATE(34), 1, + sym_object_access, + STATE(532), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(435), 2, - sym_comment, - sym_include, - STATE(938), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + STATE(421), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60608,71 +58964,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15799] = 28, + [15124] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1008), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(1010), 1, + ACTIONS(1053), 1, anon_sym_LBRACE, - ACTIONS(1012), 1, + ACTIONS(1055), 1, sym_null_expression, - ACTIONS(1016), 1, + ACTIONS(1059), 1, sym__integer_literal, - ACTIONS(1018), 1, + ACTIONS(1061), 1, anon_sym_DQUOTE, - ACTIONS(1020), 1, + ACTIONS(1063), 1, anon_sym_SQUOTE, - ACTIONS(1022), 1, + ACTIONS(1065), 1, anon_sym_LPAREN, - ACTIONS(1024), 1, + ACTIONS(1067), 1, aux_sym_unary_expression_token1, - ACTIONS(1026), 1, + ACTIONS(1069), 1, aux_sym_unary_expression_token2, - ACTIONS(1028), 1, + ACTIONS(1071), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1030), 1, + ACTIONS(1073), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1032), 1, + ACTIONS(1075), 1, aux_sym_locked_expression_token1, - ACTIONS(1034), 1, + ACTIONS(1077), 1, aux_sym_input_expression_token1, - ACTIONS(1036), 1, + ACTIONS(1079), 1, aux_sym_scope_tuning_token1, - ACTIONS(1038), 1, + ACTIONS(1081), 1, aux_sym_if_statement_token1, - ACTIONS(1040), 1, + ACTIONS(1083), 1, aux_sym_can_find_expression_token1, - ACTIONS(1042), 1, + ACTIONS(1085), 1, aux_sym_accumulate_expression_token1, - STATE(815), 1, + STATE(811), 1, sym__expression, - STATE(952), 1, + STATE(1537), 1, sym_object_access, - STATE(999), 1, + STATE(1593), 1, sym__decimal_literal, - ACTIONS(1044), 2, + ACTIONS(1087), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(436), 2, + STATE(422), 2, sym_comment, sym_include, - STATE(996), 2, + STATE(1580), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1014), 4, + ACTIONS(1057), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(995), 4, + STATE(1592), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1006), 18, + STATE(1596), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60691,71 +59047,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15910] = 28, + [15235] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(1051), 1, + sym_identifier, + ACTIONS(1053), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1055), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1059), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1061), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1063), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1065), 1, anon_sym_LPAREN, - ACTIONS(355), 1, - aux_sym_scope_tuning_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1050), 1, - sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1067), 1, aux_sym_unary_expression_token1, - ACTIONS(1054), 1, + ACTIONS(1069), 1, aux_sym_unary_expression_token2, - ACTIONS(1056), 1, + ACTIONS(1071), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1058), 1, + ACTIONS(1073), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1060), 1, + ACTIONS(1075), 1, aux_sym_locked_expression_token1, - ACTIONS(1062), 1, + ACTIONS(1077), 1, aux_sym_input_expression_token1, - ACTIONS(1064), 1, + ACTIONS(1079), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1081), 1, aux_sym_if_statement_token1, - ACTIONS(1066), 1, + ACTIONS(1083), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1085), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(769), 1, + STATE(812), 1, sym__expression, - ACTIONS(367), 2, + STATE(1537), 1, + sym_object_access, + STATE(1593), 1, + sym__decimal_literal, + ACTIONS(1087), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(437), 2, + STATE(423), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1580), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1057), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1592), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1596), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60774,71 +59130,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16021] = 28, + [15346] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(1051), 1, + sym_identifier, + ACTIONS(1053), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1055), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1059), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1061), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1063), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1065), 1, anon_sym_LPAREN, - ACTIONS(355), 1, - aux_sym_scope_tuning_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1050), 1, - sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1067), 1, aux_sym_unary_expression_token1, - ACTIONS(1054), 1, + ACTIONS(1069), 1, aux_sym_unary_expression_token2, - ACTIONS(1056), 1, + ACTIONS(1071), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1058), 1, + ACTIONS(1073), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1060), 1, + ACTIONS(1075), 1, aux_sym_locked_expression_token1, - ACTIONS(1062), 1, + ACTIONS(1077), 1, aux_sym_input_expression_token1, - ACTIONS(1064), 1, + ACTIONS(1079), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1081), 1, aux_sym_if_statement_token1, - ACTIONS(1066), 1, + ACTIONS(1083), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1085), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(770), 1, + STATE(806), 1, sym__expression, - ACTIONS(367), 2, + STATE(1537), 1, + sym_object_access, + STATE(1593), 1, + sym__decimal_literal, + ACTIONS(1087), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(438), 2, + STATE(424), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1580), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1057), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1592), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1596), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60857,71 +59213,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16132] = 28, + [15457] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(899), 1, + sym_identifier, + ACTIONS(901), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(903), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(907), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(909), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(911), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(355), 1, - aux_sym_scope_tuning_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1050), 1, - sym_identifier, - ACTIONS(1052), 1, + ACTIONS(915), 1, aux_sym_unary_expression_token1, - ACTIONS(1054), 1, + ACTIONS(917), 1, aux_sym_unary_expression_token2, - ACTIONS(1056), 1, + ACTIONS(919), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1058), 1, + ACTIONS(921), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1060), 1, + ACTIONS(923), 1, aux_sym_locked_expression_token1, - ACTIONS(1062), 1, + ACTIONS(925), 1, aux_sym_input_expression_token1, - ACTIONS(1064), 1, + ACTIONS(927), 1, + aux_sym_scope_tuning_token1, + ACTIONS(929), 1, aux_sym_if_statement_token1, - ACTIONS(1066), 1, + ACTIONS(931), 1, + aux_sym_can_find_expression_token1, + ACTIONS(933), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(771), 1, + STATE(636), 1, sym__expression, - ACTIONS(367), 2, + STATE(716), 1, + sym_object_access, + STATE(752), 1, + sym__decimal_literal, + ACTIONS(935), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(439), 2, + STATE(425), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(746), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(905), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(728), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60940,71 +59296,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16243] = 28, + [15568] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(1051), 1, + sym_identifier, + ACTIONS(1053), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1055), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1059), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1061), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1063), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1065), 1, anon_sym_LPAREN, - ACTIONS(355), 1, - aux_sym_scope_tuning_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1050), 1, - sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1067), 1, aux_sym_unary_expression_token1, - ACTIONS(1054), 1, + ACTIONS(1069), 1, aux_sym_unary_expression_token2, - ACTIONS(1056), 1, + ACTIONS(1071), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1058), 1, + ACTIONS(1073), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1060), 1, + ACTIONS(1075), 1, aux_sym_locked_expression_token1, - ACTIONS(1062), 1, + ACTIONS(1077), 1, aux_sym_input_expression_token1, - ACTIONS(1064), 1, + ACTIONS(1079), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1081), 1, aux_sym_if_statement_token1, - ACTIONS(1066), 1, + ACTIONS(1083), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1085), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(765), 1, + STATE(807), 1, sym__expression, - ACTIONS(367), 2, + STATE(1537), 1, + sym_object_access, + STATE(1593), 1, + sym__decimal_literal, + ACTIONS(1087), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(440), 2, + STATE(426), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1580), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1057), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1592), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1596), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61023,71 +59379,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16354] = 28, + [15679] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(317), 1, + sym_identifier, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(355), 1, - aux_sym_scope_tuning_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1050), 1, - sym_identifier, - ACTIONS(1052), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1054), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1056), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1058), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1060), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1062), 1, - aux_sym_input_expression_token1, - ACTIONS(1064), 1, + ACTIONS(347), 1, + aux_sym_scope_tuning_token1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1066), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(760), 1, + STATE(1366), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(441), 2, + STATE(427), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61106,71 +59462,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16465] = 28, + [15790] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1008), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(1010), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(1012), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(1016), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(1018), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(1020), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(1022), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1024), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(1026), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(1028), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1030), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1032), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(1034), 1, + ACTIONS(1039), 1, aux_sym_input_expression_token1, - ACTIONS(1036), 1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(1038), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(1040), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(1042), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - STATE(819), 1, + STATE(767), 1, sym__expression, - STATE(952), 1, + STATE(995), 1, sym_object_access, - STATE(999), 1, + STATE(1404), 1, sym__decimal_literal, - ACTIONS(1044), 2, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(442), 2, + STATE(428), 2, sym_comment, sym_include, - STATE(996), 2, + STATE(1314), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1014), 4, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(995), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1006), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61189,71 +59545,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16576] = 28, + [15901] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1039), 1, + aux_sym_input_expression_token1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(872), 1, + STATE(696), 1, sym__expression, - ACTIONS(367), 2, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(443), 2, + STATE(429), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1314), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61272,71 +59628,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16687] = 28, + [16012] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(317), 1, + sym_identifier, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(355), 1, - aux_sym_scope_tuning_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1050), 1, - sym_identifier, - ACTIONS(1052), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1054), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1056), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1058), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1060), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1062), 1, - aux_sym_input_expression_token1, - ACTIONS(1064), 1, + ACTIONS(347), 1, + aux_sym_scope_tuning_token1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1066), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(764), 1, + STATE(1372), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(444), 2, + STATE(430), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61355,71 +59711,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16798] = 28, + [16123] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(317), 1, + sym_identifier, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(355), 1, - aux_sym_scope_tuning_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1050), 1, - sym_identifier, - ACTIONS(1052), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1054), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1056), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1058), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1060), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1062), 1, - aux_sym_input_expression_token1, - ACTIONS(1064), 1, + ACTIONS(347), 1, + aux_sym_scope_tuning_token1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1066), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(763), 1, + STATE(1179), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(445), 2, + STATE(431), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61438,71 +59794,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16909] = 28, + [16234] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1053), 1, anon_sym_LBRACE, - ACTIONS(651), 1, + ACTIONS(1055), 1, sym_null_expression, - ACTIONS(655), 1, + ACTIONS(1059), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(1061), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(1063), 1, anon_sym_SQUOTE, - ACTIONS(663), 1, + ACTIONS(1065), 1, + anon_sym_LPAREN, + ACTIONS(1067), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(1069), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(1071), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(1073), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1075), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1077), 1, aux_sym_input_expression_token1, - ACTIONS(677), 1, + ACTIONS(1079), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, + ACTIONS(1081), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(1083), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(1085), 1, aux_sym_accumulate_expression_token1, - ACTIONS(763), 1, - anon_sym_LPAREN, - STATE(318), 1, + STATE(817), 1, sym__expression, - STATE(559), 1, - sym__decimal_literal, - STATE(574), 1, + STATE(1537), 1, sym_object_access, - ACTIONS(687), 2, + STATE(1593), 1, + sym__decimal_literal, + ACTIONS(1087), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(446), 2, + STATE(432), 2, sym_comment, sym_include, - STATE(557), 2, + STATE(1580), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + ACTIONS(1057), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(1592), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(1596), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61521,71 +59877,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17020] = 28, + [16345] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(1051), 1, + sym_identifier, + ACTIONS(1053), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1055), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1059), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1061), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1063), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1065), 1, anon_sym_LPAREN, - ACTIONS(355), 1, - aux_sym_scope_tuning_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1050), 1, - sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1067), 1, aux_sym_unary_expression_token1, - ACTIONS(1054), 1, + ACTIONS(1069), 1, aux_sym_unary_expression_token2, - ACTIONS(1056), 1, + ACTIONS(1071), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1058), 1, + ACTIONS(1073), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1060), 1, + ACTIONS(1075), 1, aux_sym_locked_expression_token1, - ACTIONS(1062), 1, + ACTIONS(1077), 1, aux_sym_input_expression_token1, - ACTIONS(1064), 1, + ACTIONS(1079), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1081), 1, aux_sym_if_statement_token1, - ACTIONS(1066), 1, + ACTIONS(1083), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1085), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(759), 1, + STATE(819), 1, sym__expression, - ACTIONS(367), 2, + STATE(1537), 1, + sym_object_access, + STATE(1593), 1, + sym__decimal_literal, + ACTIONS(1087), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(447), 2, + STATE(433), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1580), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1057), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1592), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1596), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61604,71 +59960,154 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17131] = 28, + [16456] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(1051), 1, + sym_identifier, + ACTIONS(1053), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1055), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1059), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1061), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1063), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1065), 1, anon_sym_LPAREN, - ACTIONS(355), 1, + ACTIONS(1067), 1, + aux_sym_unary_expression_token1, + ACTIONS(1069), 1, + aux_sym_unary_expression_token2, + ACTIONS(1071), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(1073), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(1075), 1, + aux_sym_locked_expression_token1, + ACTIONS(1077), 1, + aux_sym_input_expression_token1, + ACTIONS(1079), 1, aux_sym_scope_tuning_token1, - ACTIONS(361), 1, + ACTIONS(1081), 1, + aux_sym_if_statement_token1, + ACTIONS(1083), 1, aux_sym_can_find_expression_token1, - ACTIONS(1050), 1, + ACTIONS(1085), 1, + aux_sym_accumulate_expression_token1, + STATE(820), 1, + sym__expression, + STATE(1537), 1, + sym_object_access, + STATE(1593), 1, + sym__decimal_literal, + ACTIONS(1087), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(434), 2, + sym_comment, + sym_include, + STATE(1580), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1057), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1592), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1596), 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, + [16567] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1015), 1, + anon_sym_LBRACE, + ACTIONS(1017), 1, + sym_null_expression, + ACTIONS(1021), 1, + sym__integer_literal, + ACTIONS(1023), 1, + anon_sym_DQUOTE, + ACTIONS(1025), 1, + anon_sym_SQUOTE, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(1054), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(1056), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1058), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1060), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(1062), 1, + ACTIONS(1039), 1, aux_sym_input_expression_token1, - ACTIONS(1064), 1, + ACTIONS(1041), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(1066), 1, + ACTIONS(1045), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(762), 1, + STATE(658), 1, sym__expression, - ACTIONS(367), 2, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(448), 2, + STATE(435), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1314), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61687,71 +60126,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17242] = 28, + [16678] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(717), 1, + STATE(622), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(449), 2, + STATE(436), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61770,71 +60209,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17353] = 28, + [16789] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1053), 1, anon_sym_LBRACE, - ACTIONS(651), 1, + ACTIONS(1055), 1, sym_null_expression, - ACTIONS(655), 1, + ACTIONS(1059), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(1061), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(1063), 1, anon_sym_SQUOTE, - ACTIONS(663), 1, + ACTIONS(1065), 1, + anon_sym_LPAREN, + ACTIONS(1067), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(1069), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(1071), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(1073), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1075), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1077), 1, aux_sym_input_expression_token1, - ACTIONS(677), 1, + ACTIONS(1079), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, + ACTIONS(1081), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(1083), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(1085), 1, aux_sym_accumulate_expression_token1, - ACTIONS(763), 1, - anon_sym_LPAREN, - STATE(316), 1, + STATE(821), 1, sym__expression, - STATE(559), 1, - sym__decimal_literal, - STATE(574), 1, + STATE(1537), 1, sym_object_access, - ACTIONS(687), 2, + STATE(1593), 1, + sym__decimal_literal, + ACTIONS(1087), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(450), 2, + STATE(437), 2, sym_comment, sym_include, - STATE(557), 2, + STATE(1580), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + ACTIONS(1057), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(1592), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(1596), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61853,71 +60292,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17464] = 28, + [16900] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(852), 1, + STATE(543), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(451), 2, + STATE(438), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61936,71 +60375,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17575] = 28, + [17011] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(651), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(655), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(663), 1, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1039), 1, aux_sym_input_expression_token1, - ACTIONS(677), 1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(763), 1, - anon_sym_LPAREN, - STATE(321), 1, + STATE(693), 1, sym__expression, - STATE(559), 1, - sym__decimal_literal, - STATE(574), 1, + STATE(995), 1, sym_object_access, - ACTIONS(687), 2, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(452), 2, + STATE(439), 2, sym_comment, sym_include, - STATE(557), 2, + STATE(1314), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62019,71 +60458,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17686] = 28, + [17122] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(651), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(655), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(663), 1, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(371), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(373), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(375), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(377), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - ACTIONS(677), 1, + ACTIONS(381), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, + ACTIONS(383), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(395), 1, aux_sym_accumulate_expression_token1, - ACTIONS(763), 1, - anon_sym_LPAREN, - STATE(326), 1, - sym__expression, - STATE(559), 1, + STATE(27), 1, sym__decimal_literal, - STATE(574), 1, + STATE(34), 1, sym_object_access, - ACTIONS(687), 2, + STATE(649), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(453), 2, - sym_comment, - sym_include, - STATE(557), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + STATE(440), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62102,71 +60541,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17797] = 28, + [17233] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(1051), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(1053), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1055), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1059), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1061), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1063), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1065), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(1067), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(1069), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(1071), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(1073), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(1075), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1077), 1, + aux_sym_input_expression_token1, + ACTIONS(1079), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1081), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1083), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1085), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(51), 1, + STATE(823), 1, sym__expression, - ACTIONS(367), 2, + STATE(1537), 1, + sym_object_access, + STATE(1593), 1, + sym__decimal_literal, + ACTIONS(1087), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(454), 2, + STATE(441), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1580), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1057), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1592), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1596), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62185,71 +60624,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17908] = 28, + [17344] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(887), 1, + STATE(671), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(455), 2, + STATE(442), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62268,71 +60707,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18019] = 28, + [17455] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(651), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(655), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(657), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(659), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(663), 1, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(665), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(667), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(669), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, - aux_sym_input_expression_token1, - ACTIONS(677), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(679), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(685), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(763), 1, - anon_sym_LPAREN, - STATE(325), 1, - sym__expression, - STATE(559), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - STATE(574), 1, + STATE(34), 1, sym_object_access, - ACTIONS(687), 2, + STATE(48), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(456), 2, - sym_comment, - sym_include, - STATE(557), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(653), 4, + STATE(443), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(572), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(576), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62351,71 +60790,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18130] = 28, + [17566] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1039), 1, + aux_sym_input_expression_token1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(623), 1, + STATE(763), 1, sym__expression, - ACTIONS(367), 2, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(457), 2, + STATE(444), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1314), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62434,131 +60873,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18241] = 5, + [17677] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(133), 1, - sym__namecolon, - STATE(458), 2, - sym_comment, - sym_include, - ACTIONS(131), 49, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(317), 1, 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__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [18306] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - ACTIONS(1116), 1, - sym_identifier, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(879), 1, + STATE(1156), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(459), 2, + STATE(445), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62577,71 +60956,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18417] = 28, + [17788] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1039), 1, + aux_sym_input_expression_token1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(859), 1, + STATE(672), 1, sym__expression, - ACTIONS(367), 2, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(460), 2, + STATE(446), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1314), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62660,71 +61039,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18528] = 28, + [17899] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(791), 1, + STATE(620), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(461), 2, + STATE(447), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62743,71 +61122,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18639] = 28, + [18010] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(408), 1, + STATE(581), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(462), 2, + STATE(448), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62826,71 +61205,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18750] = 28, + [18121] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(54), 1, + STATE(799), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(463), 2, + STATE(449), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62909,71 +61288,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18861] = 28, + [18232] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(793), 1, + STATE(54), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(464), 2, + STATE(450), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62992,71 +61371,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18972] = 28, + [18343] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(920), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, - aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(705), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(954), 2, + STATE(34), 1, + sym_object_access, + STATE(1115), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(465), 2, - sym_comment, - sym_include, - STATE(938), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + STATE(451), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63075,71 +61454,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19083] = 28, + [18454] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1039), 1, + aux_sym_input_expression_token1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(895), 1, + STATE(706), 1, sym__expression, - ACTIONS(367), 2, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(466), 2, + STATE(452), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1314), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63158,71 +61537,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19194] = 28, + [18565] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(866), 1, + STATE(45), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(467), 2, + STATE(453), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63241,71 +61620,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19305] = 28, + [18676] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(377), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(379), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(381), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(383), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - ACTIONS(387), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(389), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(401), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(647), 1, + STATE(55), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(468), 2, + STATE(454), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63324,71 +61703,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19416] = 28, + [18787] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(920), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, - aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(709), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(954), 2, + STATE(34), 1, + sym_object_access, + STATE(57), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(469), 2, - sym_comment, - sym_include, - STATE(938), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + STATE(455), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63407,71 +61786,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19527] = 28, + [18898] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(885), 1, + STATE(58), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(470), 2, + STATE(456), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63490,71 +61869,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19638] = 28, + [19009] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, - sym_identifier, - ACTIONS(920), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, - aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(670), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + ACTIONS(1091), 1, + sym_identifier, + STATE(27), 1, sym__decimal_literal, - ACTIONS(954), 2, + STATE(34), 1, + sym_object_access, + STATE(1129), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(471), 2, - sym_comment, - sym_include, - STATE(938), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + STATE(457), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63573,71 +61952,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19749] = 28, + [19120] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(48), 1, + STATE(1187), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(472), 2, + STATE(458), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63656,71 +62035,132 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19860] = 28, + [19231] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(91), 2, + aux_sym_variable_definition_token2, + anon_sym_LIKE, + STATE(459), 2, + sym_comment, + sym_include, + ACTIONS(93), 47, + sym__namedot, + sym__terminator, + aux_sym__block_terminator_token1, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_serialization_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token6, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_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_final_token1, + aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym_temp_table_tuning_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [19298] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(649), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(651), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(655), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(659), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(661), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(663), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, - anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(667), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(677), 1, + aux_sym_input_expression_token1, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(683), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(844), 1, + ACTIONS(802), 1, + anon_sym_LPAREN, + STATE(516), 1, sym__expression, - ACTIONS(367), 2, + STATE(556), 1, + sym_object_access, + STATE(577), 1, + sym__decimal_literal, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(473), 2, + STATE(460), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(551), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(574), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(578), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63739,71 +62179,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19971] = 28, + [19409] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(371), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(373), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(375), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(377), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + ACTIONS(381), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(383), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(395), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(884), 1, + STATE(653), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(474), 2, + STATE(461), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63822,71 +62262,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20082] = 28, + [19520] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, - sym_identifier, - ACTIONS(920), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, - aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(787), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + ACTIONS(1093), 1, + sym_identifier, + STATE(27), 1, sym__decimal_literal, - ACTIONS(954), 2, + STATE(34), 1, + sym_object_access, + STATE(1132), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(475), 2, - sym_comment, - sym_include, - STATE(938), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + STATE(462), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63905,71 +62345,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20193] = 28, + [19631] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(377), 1, + ACTIONS(371), 1, aux_sym_unary_expression_token2, - ACTIONS(379), 1, + ACTIONS(373), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(381), 1, + ACTIONS(375), 1, aux_sym_current_changed_expression_token1, - ACTIONS(383), 1, + ACTIONS(377), 1, aux_sym_locked_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - ACTIONS(387), 1, + ACTIONS(381), 1, aux_sym_scope_tuning_token1, - ACTIONS(389), 1, + ACTIONS(383), 1, aux_sym_if_statement_token1, - ACTIONS(401), 1, + ACTIONS(395), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(663), 1, + STATE(654), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(476), 2, + STATE(463), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63988,71 +62428,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20304] = 28, + [19742] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(371), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(373), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(375), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(377), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + ACTIONS(381), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(383), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(395), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(625), 1, + STATE(644), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(477), 2, + STATE(464), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64071,71 +62511,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20415] = 28, + [19853] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(371), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(373), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(375), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(377), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + ACTIONS(381), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(383), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(395), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(865), 1, + STATE(645), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(478), 2, + STATE(465), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64154,71 +62594,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20526] = 28, + [19964] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1039), 1, + aux_sym_input_expression_token1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(524), 1, + STATE(665), 1, sym__expression, - ACTIONS(367), 2, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(479), 2, + STATE(466), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1314), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64237,71 +62677,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20637] = 28, + [20075] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(371), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(373), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(375), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(377), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + ACTIONS(381), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(383), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(395), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(905), 1, + STATE(655), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(480), 2, + STATE(467), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64320,71 +62760,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20748] = 28, + [20186] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(317), 1, + sym_identifier, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - ACTIONS(1118), 1, - sym_identifier, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(857), 1, + STATE(536), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(481), 2, + STATE(468), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64403,71 +62843,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20859] = 28, + [20297] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(377), 1, + ACTIONS(371), 1, aux_sym_unary_expression_token2, - ACTIONS(379), 1, + ACTIONS(373), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(381), 1, + ACTIONS(375), 1, aux_sym_current_changed_expression_token1, - ACTIONS(383), 1, + ACTIONS(377), 1, aux_sym_locked_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - ACTIONS(387), 1, + ACTIONS(381), 1, aux_sym_scope_tuning_token1, - ACTIONS(389), 1, + ACTIONS(383), 1, aux_sym_if_statement_token1, - ACTIONS(401), 1, + ACTIONS(395), 1, aux_sym_accumulate_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(656), 1, + STATE(635), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(482), 2, + STATE(469), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64486,71 +62926,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20970] = 28, + [20408] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(920), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(371), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(373), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(375), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(377), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(381), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(383), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, - aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(395), 1, aux_sym_accumulate_expression_token1, - STATE(702), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(954), 2, + STATE(34), 1, + sym_object_access, + STATE(634), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(483), 2, - sym_comment, - sym_include, - STATE(938), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + STATE(470), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64569,71 +63009,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21081] = 28, + [20519] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(966), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(968), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(970), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(974), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(976), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(978), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(980), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(982), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(984), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(371), 1, aux_sym_unary_expression_token2, - ACTIONS(986), 1, + ACTIONS(373), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(988), 1, + ACTIONS(375), 1, aux_sym_current_changed_expression_token1, - ACTIONS(990), 1, + ACTIONS(377), 1, aux_sym_locked_expression_token1, - ACTIONS(992), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - ACTIONS(994), 1, + ACTIONS(381), 1, aux_sym_scope_tuning_token1, - ACTIONS(996), 1, + ACTIONS(383), 1, aux_sym_if_statement_token1, - ACTIONS(998), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1000), 1, + ACTIONS(395), 1, aux_sym_accumulate_expression_token1, - STATE(803), 1, - sym__expression, - STATE(918), 1, - sym_object_access, - STATE(965), 1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1002), 2, + STATE(34), 1, + sym_object_access, + STATE(638), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(484), 2, - sym_comment, - sym_include, - STATE(970), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(972), 4, + STATE(471), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(977), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(956), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64652,71 +63092,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21192] = 28, + [20630] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + ACTIONS(1095), 1, + sym_identifier, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(864), 1, + STATE(1145), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(485), 2, + STATE(472), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64735,146 +63175,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21303] = 20, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(962), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1120), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - STATE(1723), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(486), 2, - sym_comment, - sym_include, - ACTIONS(958), 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(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(960), 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(231), 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, - [21398] = 28, + [20741] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(903), 1, + STATE(715), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(487), 2, + STATE(473), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64893,71 +63258,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21509] = 28, + [20852] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1039), 1, + aux_sym_input_expression_token1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(629), 1, + STATE(764), 1, sym__expression, - ACTIONS(367), 2, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(488), 2, + STATE(474), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1314), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64976,71 +63341,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21620] = 28, + [20963] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(649), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(651), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(655), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(659), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(661), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(663), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, - anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(667), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(677), 1, + aux_sym_input_expression_token1, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(683), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(588), 1, + ACTIONS(802), 1, + anon_sym_LPAREN, + STATE(518), 1, sym__expression, - ACTIONS(367), 2, + STATE(556), 1, + sym_object_access, + STATE(577), 1, + sym__decimal_literal, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(489), 2, + STATE(475), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(551), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(574), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(578), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65059,131 +63424,154 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21731] = 5, + [21074] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1122), 1, - anon_sym_NO_DASHERROR, - STATE(490), 2, - sym_comment, - sym_include, - ACTIONS(257), 49, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(649), 1, sym_identifier, - anon_sym_STAR, - sym__terminator, + ACTIONS(651), 1, + anon_sym_LBRACE, + ACTIONS(655), 1, sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(659), 1, sym__integer_literal, + ACTIONS(661), 1, anon_sym_DQUOTE, + ACTIONS(663), 1, anon_sym_SQUOTE, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(667), 1, aux_sym_unary_expression_token1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, + ACTIONS(677), 1, 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, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_if_statement_token1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, + ACTIONS(802), 1, + anon_sym_LPAREN, + STATE(525), 1, + sym__expression, + STATE(556), 1, + sym_object_access, + STATE(577), 1, + sym__decimal_literal, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [21796] = 28, + STATE(476), 2, + sym_comment, + sym_include, + STATE(551), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(657), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(574), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(578), 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, + [21185] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1078), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(1080), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(1082), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(1086), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(1088), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(1090), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(1092), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1094), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(1096), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(1098), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1100), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1102), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(1104), 1, + ACTIONS(1039), 1, aux_sym_input_expression_token1, - ACTIONS(1106), 1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(1108), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(1110), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(1112), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - STATE(616), 1, + STATE(683), 1, sym__expression, - STATE(645), 1, + STATE(995), 1, sym_object_access, - STATE(674), 1, + STATE(1404), 1, sym__decimal_literal, - ACTIONS(1114), 2, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(491), 2, + STATE(477), 2, sym_comment, sym_include, - STATE(669), 2, + STATE(1314), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1084), 4, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(668), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(685), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65202,71 +63590,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21907] = 28, + [21296] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(556), 1, + STATE(62), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(492), 2, + STATE(478), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65285,71 +63673,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22018] = 28, + [21407] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(870), 1, + STATE(534), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(493), 2, + STATE(479), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65368,146 +63756,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22129] = 20, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(962), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1124), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - STATE(1698), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(494), 2, - sym_comment, - sym_include, - ACTIONS(958), 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(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(960), 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(231), 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, - [22224] = 28, + [21518] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(486), 1, + STATE(1401), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(495), 2, + STATE(480), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65526,71 +63839,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22335] = 28, + [21629] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, - sym_identifier, - ACTIONS(920), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, - aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(706), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + ACTIONS(1097), 1, + sym_identifier, + STATE(27), 1, sym__decimal_literal, - ACTIONS(954), 2, + STATE(34), 1, + sym_object_access, + STATE(1182), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(496), 2, - sym_comment, - sym_include, - STATE(938), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + STATE(481), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65609,71 +63922,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22446] = 28, + [21740] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(353), 1, + aux_sym_can_find_expression_token1, + ACTIONS(371), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(373), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(375), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(377), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + ACTIONS(381), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(383), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(395), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(863), 1, + STATE(651), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(497), 2, + STATE(482), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65692,71 +64005,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22557] = 28, + [21851] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(1013), 1, + sym_identifier, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1039), 1, + aux_sym_input_expression_token1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - ACTIONS(1126), 1, - sym_identifier, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(861), 1, + STATE(667), 1, sym__expression, - ACTIONS(367), 2, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(498), 2, + STATE(483), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1314), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65775,71 +64088,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22668] = 28, + [21962] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, + ACTIONS(937), 1, sym_identifier, - ACTIONS(920), 1, + ACTIONS(939), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(941), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(945), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(947), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(949), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(951), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(953), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(957), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(959), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(961), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, + ACTIONS(963), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(965), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(967), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(969), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(971), 1, aux_sym_accumulate_expression_token1, - STATE(713), 1, + STATE(786), 1, sym__expression, - STATE(845), 1, + STATE(1180), 1, sym_object_access, - STATE(937), 1, + STATE(1545), 1, sym__decimal_literal, - ACTIONS(954), 2, + ACTIONS(973), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(499), 2, + STATE(484), 2, sym_comment, sym_include, - STATE(938), 2, + STATE(1548), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + ACTIONS(943), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(1544), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(1547), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65858,71 +64171,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22779] = 28, + [22073] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(842), 1, + STATE(617), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(500), 2, + STATE(485), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65941,71 +64254,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22890] = 28, + [22184] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(890), 1, + STATE(1135), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(501), 2, + STATE(486), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66024,71 +64337,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23001] = 28, + [22295] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(658), 1, + STATE(793), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(502), 2, + STATE(487), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66107,71 +64420,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23112] = 28, + [22406] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1039), 1, + aux_sym_input_expression_token1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(687), 1, + STATE(765), 1, sym__expression, - ACTIONS(367), 2, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(503), 2, + STATE(488), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1314), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66190,71 +64503,154 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23223] = 28, + [22517] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1039), 1, + aux_sym_input_expression_token1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(728), 1, + STATE(768), 1, sym__expression, - ACTIONS(367), 2, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(489), 2, + sym_comment, + sym_include, + STATE(1314), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(504), 2, + ACTIONS(1019), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1403), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1407), 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, + [22628] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1013), 1, + sym_identifier, + ACTIONS(1015), 1, + anon_sym_LBRACE, + ACTIONS(1017), 1, + sym_null_expression, + ACTIONS(1021), 1, + sym__integer_literal, + ACTIONS(1023), 1, + anon_sym_DQUOTE, + ACTIONS(1025), 1, + anon_sym_SQUOTE, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1029), 1, + aux_sym_unary_expression_token1, + ACTIONS(1031), 1, + aux_sym_unary_expression_token2, + ACTIONS(1033), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(1035), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(1037), 1, + aux_sym_locked_expression_token1, + ACTIONS(1039), 1, + aux_sym_input_expression_token1, + ACTIONS(1041), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1043), 1, + aux_sym_if_statement_token1, + ACTIONS(1045), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1047), 1, + aux_sym_accumulate_expression_token1, + STATE(769), 1, + sym__expression, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(490), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1314), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66273,71 +64669,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23334] = 28, + [22739] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(891), 1, + STATE(1176), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(505), 2, + STATE(491), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66356,71 +64752,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23445] = 28, + [22850] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, + ACTIONS(649), 1, sym_identifier, - ACTIONS(920), 1, + ACTIONS(651), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(655), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(659), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(661), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(663), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, - anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(667), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, + ACTIONS(677), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(683), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, - STATE(776), 1, + ACTIONS(802), 1, + anon_sym_LPAREN, + STATE(517), 1, sym__expression, - STATE(845), 1, + STATE(556), 1, sym_object_access, - STATE(937), 1, + STATE(577), 1, sym__decimal_literal, - ACTIONS(954), 2, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(506), 2, + STATE(492), 2, sym_comment, sym_include, - STATE(938), 2, + STATE(551), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(574), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(578), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66439,71 +64835,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23556] = 28, + [22961] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1039), 1, + aux_sym_input_expression_token1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(47), 1, + STATE(760), 1, sym__expression, - ACTIONS(367), 2, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(507), 2, + STATE(493), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1314), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66522,71 +64918,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23667] = 28, + [23072] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(880), 1, + STATE(798), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(508), 2, + STATE(494), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66605,71 +65001,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23778] = 28, + [23183] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(52), 1, + STATE(1134), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(509), 2, + STATE(495), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66688,71 +65084,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23889] = 28, + [23294] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(920), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, + ACTIONS(1039), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - STATE(704), 1, + STATE(781), 1, sym__expression, - STATE(845), 1, + STATE(995), 1, sym_object_access, - STATE(937), 1, + STATE(1404), 1, sym__decimal_literal, - ACTIONS(954), 2, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(510), 2, + STATE(496), 2, sym_comment, sym_include, - STATE(938), 2, + STATE(1314), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66771,71 +65167,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24000] = 28, + [23405] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(775), 1, + STATE(1148), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(511), 2, + STATE(497), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66854,71 +65250,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24111] = 28, + [23516] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1039), 1, + aux_sym_input_expression_token1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(882), 1, + STATE(780), 1, sym__expression, - ACTIONS(367), 2, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(512), 2, + STATE(498), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1314), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66937,71 +65333,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24222] = 28, + [23627] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1128), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(1130), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(1132), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(1136), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(1138), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(1140), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(1142), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(1144), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1146), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1148), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1150), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1152), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1154), 1, - aux_sym_input_expression_token1, - ACTIONS(1156), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(1158), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1160), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1162), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(636), 1, - sym__expression, - STATE(720), 1, - sym_object_access, - STATE(736), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1164), 2, + STATE(34), 1, + sym_object_access, + STATE(816), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(513), 2, - sym_comment, - sym_include, - STATE(737), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1134), 4, + STATE(499), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(738), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(729), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67020,71 +65416,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24333] = 28, + [23738] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1128), 1, + ACTIONS(649), 1, sym_identifier, - ACTIONS(1130), 1, + ACTIONS(651), 1, anon_sym_LBRACE, - ACTIONS(1132), 1, + ACTIONS(655), 1, sym_null_expression, - ACTIONS(1136), 1, + ACTIONS(659), 1, sym__integer_literal, - ACTIONS(1138), 1, + ACTIONS(661), 1, anon_sym_DQUOTE, - ACTIONS(1140), 1, + ACTIONS(663), 1, anon_sym_SQUOTE, - ACTIONS(1142), 1, - anon_sym_LPAREN, - ACTIONS(1144), 1, + ACTIONS(667), 1, aux_sym_unary_expression_token1, - ACTIONS(1146), 1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, - ACTIONS(1148), 1, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1150), 1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1152), 1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, - ACTIONS(1154), 1, + ACTIONS(677), 1, aux_sym_input_expression_token1, - ACTIONS(1156), 1, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, - ACTIONS(1158), 1, + ACTIONS(683), 1, aux_sym_if_statement_token1, - ACTIONS(1160), 1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, - ACTIONS(1162), 1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, - STATE(642), 1, + ACTIONS(802), 1, + anon_sym_LPAREN, + STATE(520), 1, sym__expression, - STATE(720), 1, + STATE(556), 1, sym_object_access, - STATE(736), 1, + STATE(577), 1, sym__decimal_literal, - ACTIONS(1164), 2, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(514), 2, + STATE(500), 2, sym_comment, sym_include, - STATE(737), 2, + STATE(551), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1134), 4, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(738), 4, + STATE(574), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(729), 18, + STATE(578), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67103,71 +65499,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24444] = 28, + [23849] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(1039), 1, + aux_sym_input_expression_token1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(626), 1, + STATE(777), 1, sym__expression, - ACTIONS(367), 2, + STATE(995), 1, + sym_object_access, + STATE(1404), 1, + sym__decimal_literal, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(515), 2, + STATE(501), 2, sym_comment, sym_include, - ACTIONS(331), 4, + STATE(1314), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67186,71 +65582,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24555] = 28, + [23960] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1128), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(1130), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(1132), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(1136), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(1138), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(1140), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(1142), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(1144), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1146), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1148), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1150), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1152), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1154), 1, - aux_sym_input_expression_token1, - ACTIONS(1156), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(1158), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1160), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1162), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(649), 1, - sym__expression, - STATE(720), 1, - sym_object_access, - STATE(736), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1164), 2, + STATE(34), 1, + sym_object_access, + STATE(629), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(516), 2, - sym_comment, - sym_include, - STATE(737), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1134), 4, + STATE(502), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(738), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(729), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67269,71 +65665,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24666] = 28, + [24071] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(401), 1, + STATE(689), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(517), 2, + STATE(503), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67352,71 +65748,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24777] = 28, + [24182] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(920), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(1017), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(1023), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(1025), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(1029), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(1031), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(1033), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(1035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(1037), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, + ACTIONS(1039), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(1041), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(1043), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(1045), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(1047), 1, aux_sym_accumulate_expression_token1, - STATE(774), 1, + STATE(775), 1, sym__expression, - STATE(845), 1, + STATE(995), 1, sym_object_access, - STATE(937), 1, + STATE(1404), 1, sym__decimal_literal, - ACTIONS(954), 2, + ACTIONS(1049), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(518), 2, + STATE(504), 2, sym_comment, sym_include, - STATE(938), 2, + STATE(1314), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + ACTIONS(1019), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(1403), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(1407), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67435,71 +65831,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24888] = 28, + [24293] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(920), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, - aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(785), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(954), 2, + STATE(34), 1, + sym_object_access, + STATE(1435), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(519), 2, - sym_comment, - sym_include, - STATE(938), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + STATE(505), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67518,71 +65914,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24999] = 28, + [24404] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1128), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(1130), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(1132), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(1136), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(1138), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(1140), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(1142), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(1144), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(1146), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(1148), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1150), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1152), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(1154), 1, - aux_sym_input_expression_token1, - ACTIONS(1156), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(1158), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(1160), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(1162), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(643), 1, - sym__expression, - STATE(720), 1, - sym_object_access, - STATE(736), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(1164), 2, + STATE(34), 1, + sym_object_access, + STATE(796), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(520), 2, - sym_comment, - sym_include, - STATE(737), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1134), 4, + STATE(506), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(738), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(729), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67601,71 +65997,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25110] = 28, + [24515] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(894), 1, + STATE(1160), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(521), 2, + STATE(507), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67684,71 +66080,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25221] = 28, + [24626] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, + ACTIONS(649), 1, sym_identifier, - ACTIONS(920), 1, + ACTIONS(651), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(655), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(659), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(661), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(663), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, - anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(667), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(669), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(671), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(673), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(675), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, + ACTIONS(677), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(681), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(683), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(687), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(689), 1, aux_sym_accumulate_expression_token1, - STATE(703), 1, + ACTIONS(802), 1, + anon_sym_LPAREN, + STATE(521), 1, sym__expression, - STATE(845), 1, + STATE(556), 1, sym_object_access, - STATE(937), 1, + STATE(577), 1, sym__decimal_literal, - ACTIONS(954), 2, + ACTIONS(691), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(522), 2, + STATE(508), 2, sym_comment, sym_include, - STATE(938), 2, + STATE(551), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + ACTIONS(657), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(574), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(578), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67767,71 +66163,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25332] = 28, + [24737] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(46), 1, + STATE(1152), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(523), 2, + STATE(509), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67850,146 +66246,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25443] = 20, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(962), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1166), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - STATE(1692), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(524), 2, - sym_comment, - sym_include, - ACTIONS(958), 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(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(960), 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(231), 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, - [25538] = 28, + [24848] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(920), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(926), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(928), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, - aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - STATE(786), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, + ACTIONS(379), 1, + aux_sym_input_expression_token1, + STATE(27), 1, sym__decimal_literal, - ACTIONS(954), 2, + STATE(34), 1, + sym_object_access, + STATE(1149), 1, + sym__expression, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(525), 2, - sym_comment, - sym_include, - STATE(938), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(924), 4, + STATE(510), 2, + sym_comment, + sym_include, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(939), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(928), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -68008,71 +66329,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25649] = 28, + [24959] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(893), 1, + STATE(771), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(526), 2, + STATE(511), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -68091,71 +66412,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25760] = 28, + [25070] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(317), 1, sym_identifier, - ACTIONS(327), 1, + ACTIONS(319), 1, anon_sym_LBRACE, - ACTIONS(329), 1, + ACTIONS(321), 1, sym_null_expression, - ACTIONS(333), 1, + ACTIONS(325), 1, sym__integer_literal, - ACTIONS(335), 1, + ACTIONS(327), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(329), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, + ACTIONS(331), 1, anon_sym_LPAREN, - ACTIONS(343), 1, + ACTIONS(335), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, + ACTIONS(337), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, + ACTIONS(339), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, + ACTIONS(341), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, + ACTIONS(343), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + ACTIONS(347), 1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, + ACTIONS(351), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, + ACTIONS(353), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, + ACTIONS(357), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, + ACTIONS(379), 1, aux_sym_input_expression_token1, - STATE(11), 1, + STATE(27), 1, sym__decimal_literal, - STATE(29), 1, + STATE(34), 1, sym_object_access, - STATE(631), 1, + STATE(1424), 1, sym__expression, - ACTIONS(367), 2, + ACTIONS(359), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, + STATE(17), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(527), 2, + STATE(512), 2, sym_comment, sym_include, - ACTIONS(331), 4, + ACTIONS(323), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(28), 4, + STATE(32), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(20), 18, + STATE(18), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -68174,2207 +66495,1778 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25871] = 28, + [25181] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(327), 1, + STATE(475), 1, + sym__logical_operator, + STATE(476), 1, + sym__additive_operator, + STATE(500), 1, + sym__multiplicative_operator, + STATE(508), 1, + sym__comparison_operator, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(513), 2, + sym_comment, + sym_include, + ACTIONS(227), 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(1099), 24, anon_sym_LBRACE, - ACTIONS(329), 1, + sym_identifier, + sym__terminator, sym_null_expression, - ACTIONS(333), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(335), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, anon_sym_LPAREN, - ACTIONS(343), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + aux_sym_input_expression_token1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(382), 1, - sym__expression, - ACTIONS(367), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(528), 2, - sym_comment, - sym_include, - ACTIONS(331), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(28), 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, - [25982] = 28, + [25259] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, - sym_identifier, - ACTIONS(920), 1, + STATE(475), 1, + sym__logical_operator, + STATE(476), 1, + sym__additive_operator, + STATE(500), 1, + sym__multiplicative_operator, + STATE(508), 1, + sym__comparison_operator, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(514), 2, + sym_comment, + sym_include, + ACTIONS(227), 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(1103), 24, anon_sym_LBRACE, - ACTIONS(922), 1, + sym_identifier, + sym__terminator, sym_null_expression, - ACTIONS(926), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(928), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, anon_sym_LPAREN, - ACTIONS(934), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, aux_sym_accumulate_expression_token1, - STATE(697), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, - sym__decimal_literal, - ACTIONS(954), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(529), 2, - sym_comment, - sym_include, - STATE(938), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(924), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(939), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(928), 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, - [26093] = 28, + [25337] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, - sym_identifier, - ACTIONS(920), 1, + STATE(475), 1, + sym__logical_operator, + STATE(476), 1, + sym__additive_operator, + STATE(500), 1, + sym__multiplicative_operator, + STATE(508), 1, + sym__comparison_operator, + ACTIONS(197), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1101), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(515), 2, + sym_comment, + sym_include, + ACTIONS(227), 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(195), 24, anon_sym_LBRACE, - ACTIONS(922), 1, + sym_identifier, + sym__terminator, sym_null_expression, - ACTIONS(926), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(928), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, anon_sym_LPAREN, - ACTIONS(934), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, aux_sym_accumulate_expression_token1, - STATE(684), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, - sym__decimal_literal, - ACTIONS(954), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(530), 2, - sym_comment, - sym_include, - STATE(938), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(924), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(939), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(928), 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, - [26204] = 28, + [25415] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1008), 1, - sym_identifier, - ACTIONS(1010), 1, + STATE(475), 1, + sym__logical_operator, + STATE(476), 1, + sym__additive_operator, + STATE(500), 1, + sym__multiplicative_operator, + STATE(508), 1, + sym__comparison_operator, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(516), 2, + sym_comment, + sym_include, + ACTIONS(227), 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(1105), 24, anon_sym_LBRACE, - ACTIONS(1012), 1, + sym_identifier, + sym__terminator, sym_null_expression, - ACTIONS(1016), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(1018), 1, anon_sym_DQUOTE, - ACTIONS(1020), 1, anon_sym_SQUOTE, - ACTIONS(1022), 1, anon_sym_LPAREN, - ACTIONS(1024), 1, aux_sym_unary_expression_token1, - ACTIONS(1026), 1, aux_sym_unary_expression_token2, - ACTIONS(1028), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1030), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1032), 1, aux_sym_locked_expression_token1, - ACTIONS(1034), 1, aux_sym_input_expression_token1, - ACTIONS(1036), 1, aux_sym_scope_tuning_token1, - ACTIONS(1038), 1, aux_sym_if_statement_token1, - ACTIONS(1040), 1, aux_sym_can_find_expression_token1, - ACTIONS(1042), 1, aux_sym_accumulate_expression_token1, - STATE(829), 1, - sym__expression, - STATE(952), 1, - sym_object_access, - STATE(999), 1, - sym__decimal_literal, - ACTIONS(1044), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(531), 2, - sym_comment, - sym_include, - STATE(996), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1014), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(995), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(1006), 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, - [26315] = 28, + [25493] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(327), 1, + STATE(475), 1, + sym__logical_operator, + STATE(476), 1, + sym__additive_operator, + STATE(500), 1, + sym__multiplicative_operator, + STATE(508), 1, + sym__comparison_operator, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(517), 2, + sym_comment, + sym_include, + ACTIONS(227), 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(1107), 24, anon_sym_LBRACE, - ACTIONS(329), 1, + sym_identifier, + sym__terminator, sym_null_expression, - ACTIONS(333), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(335), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, anon_sym_LPAREN, - ACTIONS(343), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + aux_sym_input_expression_token1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(619), 1, - sym__expression, - ACTIONS(367), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(532), 2, - sym_comment, - sym_include, - ACTIONS(331), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(28), 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, - [26426] = 28, + [25571] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(327), 1, + STATE(475), 1, + sym__logical_operator, + STATE(476), 1, + sym__additive_operator, + STATE(500), 1, + sym__multiplicative_operator, + STATE(508), 1, + sym__comparison_operator, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(518), 2, + sym_comment, + sym_include, + ACTIONS(227), 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(1109), 24, anon_sym_LBRACE, - ACTIONS(329), 1, + sym_identifier, + sym__terminator, sym_null_expression, - ACTIONS(333), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(335), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, anon_sym_LPAREN, - ACTIONS(343), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + aux_sym_input_expression_token1, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(354), 1, - sym__expression, - ACTIONS(367), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(533), 2, - sym_comment, - sym_include, - ACTIONS(331), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(28), 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, - [26537] = 28, + [25649] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1128), 1, - sym_identifier, - ACTIONS(1130), 1, + STATE(475), 1, + sym__logical_operator, + STATE(476), 1, + sym__additive_operator, + STATE(500), 1, + sym__multiplicative_operator, + STATE(508), 1, + sym__comparison_operator, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(519), 2, + sym_comment, + sym_include, + ACTIONS(227), 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(1111), 24, anon_sym_LBRACE, - ACTIONS(1132), 1, + sym_identifier, + sym__terminator, sym_null_expression, - ACTIONS(1136), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(1138), 1, anon_sym_DQUOTE, - ACTIONS(1140), 1, anon_sym_SQUOTE, - ACTIONS(1142), 1, anon_sym_LPAREN, - ACTIONS(1144), 1, aux_sym_unary_expression_token1, - ACTIONS(1146), 1, aux_sym_unary_expression_token2, - ACTIONS(1148), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1152), 1, aux_sym_locked_expression_token1, - ACTIONS(1154), 1, aux_sym_input_expression_token1, - ACTIONS(1156), 1, aux_sym_scope_tuning_token1, - ACTIONS(1158), 1, aux_sym_if_statement_token1, - ACTIONS(1160), 1, aux_sym_can_find_expression_token1, - ACTIONS(1162), 1, aux_sym_accumulate_expression_token1, - STATE(650), 1, - sym__expression, - STATE(720), 1, - sym_object_access, - STATE(736), 1, - sym__decimal_literal, - ACTIONS(1164), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(534), 2, - sym_comment, - sym_include, - STATE(737), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1134), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(738), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(729), 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, - [26648] = 28, + [25727] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(327), 1, + STATE(475), 1, + sym__logical_operator, + STATE(476), 1, + sym__additive_operator, + STATE(500), 1, + sym__multiplicative_operator, + STATE(508), 1, + sym__comparison_operator, + ACTIONS(301), 2, + sym__or_operator, + sym__and_operator, + STATE(520), 2, + sym_comment, + sym_include, + ACTIONS(299), 43, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(329), 1, + sym_identifier, + anon_sym_STAR, + sym__terminator, sym_null_expression, - ACTIONS(333), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(335), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, anon_sym_LPAREN, - ACTIONS(343), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + 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, - ACTIONS(359), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(935), 1, - sym__expression, - ACTIONS(367), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(535), 2, - sym_comment, - sym_include, - ACTIONS(331), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(28), 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, - [26759] = 28, + [25799] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(327), 1, + STATE(475), 1, + sym__logical_operator, + STATE(476), 1, + sym__additive_operator, + STATE(500), 1, + sym__multiplicative_operator, + STATE(508), 1, + sym__comparison_operator, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(303), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(521), 2, + sym_comment, + sym_include, + ACTIONS(305), 39, anon_sym_LBRACE, - ACTIONS(329), 1, + sym_identifier, + sym__terminator, sym_null_expression, - ACTIONS(333), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(335), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, anon_sym_LPAREN, - ACTIONS(343), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + aux_sym_input_expression_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - ACTIONS(359), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(53), 1, - sym__expression, - ACTIONS(367), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(536), 2, - sym_comment, - sym_include, - ACTIONS(331), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(28), 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, - [26870] = 28, + [25875] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, - sym_identifier, - ACTIONS(920), 1, + STATE(475), 1, + sym__logical_operator, + STATE(476), 1, + sym__additive_operator, + STATE(500), 1, + sym__multiplicative_operator, + STATE(508), 1, + sym__comparison_operator, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(522), 2, + sym_comment, + sym_include, + ACTIONS(227), 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(1113), 24, anon_sym_LBRACE, - ACTIONS(922), 1, + sym_identifier, + sym__terminator, sym_null_expression, - ACTIONS(926), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(928), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, anon_sym_LPAREN, - ACTIONS(934), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, aux_sym_accumulate_expression_token1, - STATE(780), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, - sym__decimal_literal, - ACTIONS(954), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(537), 2, - sym_comment, - sym_include, - STATE(938), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(924), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(939), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(928), 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, - [26981] = 28, + [25953] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1128), 1, - sym_identifier, - ACTIONS(1130), 1, + ACTIONS(1115), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + sym__namedot, + ACTIONS(1119), 1, + sym__namecolon, + STATE(528), 1, + aux_sym_object_access_repeat1, + STATE(531), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, + STATE(523), 2, + sym_comment, + sym_include, + ACTIONS(75), 42, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(1132), 1, + sym_identifier, + anon_sym_STAR, + sym__terminator, sym_null_expression, - ACTIONS(1136), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(1138), 1, anon_sym_DQUOTE, - ACTIONS(1140), 1, anon_sym_SQUOTE, - ACTIONS(1142), 1, - anon_sym_LPAREN, - ACTIONS(1144), 1, aux_sym_unary_expression_token1, - ACTIONS(1146), 1, aux_sym_unary_expression_token2, - ACTIONS(1148), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1152), 1, aux_sym_locked_expression_token1, - ACTIONS(1154), 1, aux_sym_input_expression_token1, - ACTIONS(1156), 1, + 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, - ACTIONS(1158), 1, aux_sym_if_statement_token1, - ACTIONS(1160), 1, aux_sym_can_find_expression_token1, - ACTIONS(1162), 1, aux_sym_accumulate_expression_token1, - STATE(664), 1, - sym__expression, - STATE(720), 1, - sym_object_access, - STATE(736), 1, - sym__decimal_literal, - ACTIONS(1164), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(538), 2, - sym_comment, - sym_include, - STATE(737), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1134), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(738), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(729), 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, - [27092] = 28, + [26027] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(327), 1, + ACTIONS(1115), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + sym__namedot, + ACTIONS(1119), 1, + sym__namecolon, + STATE(528), 1, + aux_sym_object_access_repeat1, + STATE(531), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(524), 2, + sym_comment, + sym_include, + ACTIONS(63), 42, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(329), 1, + sym_identifier, + anon_sym_STAR, + sym__terminator, sym_null_expression, - ACTIONS(333), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(335), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, - anon_sym_LPAREN, - ACTIONS(343), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, - aux_sym_scope_tuning_token1, - ACTIONS(359), 1, - aux_sym_if_statement_token1, - ACTIONS(361), 1, - aux_sym_can_find_expression_token1, - ACTIONS(365), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(883), 1, - sym__expression, - ACTIONS(367), 2, - aux_sym_available_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, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(539), 2, - sym_comment, - sym_include, - ACTIONS(331), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(28), 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, - [27203] = 28, + [26101] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(327), 1, + STATE(475), 1, + sym__logical_operator, + STATE(476), 1, + sym__additive_operator, + STATE(500), 1, + sym__multiplicative_operator, + STATE(508), 1, + sym__comparison_operator, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(295), 2, + sym__or_operator, + sym__and_operator, + STATE(525), 2, + sym_comment, + sym_include, + ACTIONS(297), 41, anon_sym_LBRACE, - ACTIONS(329), 1, + sym_identifier, + sym__terminator, sym_null_expression, - ACTIONS(333), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(335), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, anon_sym_LPAREN, - ACTIONS(343), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + 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, - ACTIONS(359), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(50), 1, - sym__expression, - ACTIONS(367), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(540), 2, - sym_comment, - sym_include, - ACTIONS(331), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(28), 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, - [27314] = 28, + [26175] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, - sym_identifier, - ACTIONS(920), 1, + ACTIONS(1121), 1, + sym__namedot, + ACTIONS(93), 2, + sym__or_operator, + sym__and_operator, + STATE(526), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(91), 43, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(922), 1, + sym_identifier, + anon_sym_STAR, + sym__terminator, sym_null_expression, - ACTIONS(926), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(928), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, anon_sym_LPAREN, - ACTIONS(934), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + 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, - ACTIONS(948), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, aux_sym_accumulate_expression_token1, - STATE(784), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, - sym__decimal_literal, - ACTIONS(954), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(541), 2, - sym_comment, - sym_include, - STATE(938), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(924), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(939), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(928), 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, - [27425] = 28, + [26239] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1128), 1, - sym_identifier, - ACTIONS(1130), 1, + ACTIONS(1117), 1, + sym__namedot, + STATE(531), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(527), 2, + sym_comment, + sym_include, + ACTIONS(87), 43, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(1132), 1, + sym_identifier, + anon_sym_STAR, + sym__terminator, sym_null_expression, - ACTIONS(1136), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(1138), 1, anon_sym_DQUOTE, - ACTIONS(1140), 1, anon_sym_SQUOTE, - ACTIONS(1142), 1, anon_sym_LPAREN, - ACTIONS(1144), 1, aux_sym_unary_expression_token1, - ACTIONS(1146), 1, aux_sym_unary_expression_token2, - ACTIONS(1148), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1152), 1, aux_sym_locked_expression_token1, - ACTIONS(1154), 1, aux_sym_input_expression_token1, - ACTIONS(1156), 1, + 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, - ACTIONS(1158), 1, aux_sym_if_statement_token1, - ACTIONS(1160), 1, aux_sym_can_find_expression_token1, - ACTIONS(1162), 1, aux_sym_accumulate_expression_token1, - STATE(646), 1, - sym__expression, - STATE(720), 1, - sym_object_access, - STATE(736), 1, - sym__decimal_literal, - ACTIONS(1164), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(542), 2, - sym_comment, - sym_include, - STATE(737), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1134), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(738), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(729), 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, - [27536] = 28, + [26305] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1128), 1, - sym_identifier, - ACTIONS(1130), 1, + ACTIONS(1119), 1, + sym__namecolon, + STATE(530), 1, + aux_sym_object_access_repeat1, + ACTIONS(107), 2, + sym__or_operator, + sym__and_operator, + STATE(528), 2, + sym_comment, + sym_include, + ACTIONS(105), 43, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(1132), 1, + sym_identifier, + anon_sym_STAR, + sym__terminator, sym_null_expression, - ACTIONS(1136), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(1138), 1, anon_sym_DQUOTE, - ACTIONS(1140), 1, anon_sym_SQUOTE, - ACTIONS(1142), 1, anon_sym_LPAREN, - ACTIONS(1144), 1, aux_sym_unary_expression_token1, - ACTIONS(1146), 1, aux_sym_unary_expression_token2, - ACTIONS(1148), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1152), 1, aux_sym_locked_expression_token1, - ACTIONS(1154), 1, aux_sym_input_expression_token1, - ACTIONS(1156), 1, + 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, - ACTIONS(1158), 1, aux_sym_if_statement_token1, - ACTIONS(1160), 1, aux_sym_can_find_expression_token1, - ACTIONS(1162), 1, aux_sym_accumulate_expression_token1, - STATE(641), 1, - sym__expression, - STATE(720), 1, - sym_object_access, - STATE(736), 1, - sym__decimal_literal, - ACTIONS(1164), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(543), 2, - sym_comment, - sym_include, - STATE(737), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1134), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(738), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(729), 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, - [27647] = 28, + [26371] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, - sym_identifier, - ACTIONS(920), 1, + ACTIONS(1117), 1, + sym__namedot, + STATE(531), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(529), 2, + sym_comment, + sym_include, + ACTIONS(83), 43, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(922), 1, + sym_identifier, + anon_sym_STAR, + sym__terminator, sym_null_expression, - ACTIONS(926), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(928), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, anon_sym_LPAREN, - ACTIONS(934), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + 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, - ACTIONS(948), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, aux_sym_accumulate_expression_token1, - STATE(783), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, - sym__decimal_literal, - ACTIONS(954), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(544), 2, - sym_comment, - sym_include, - STATE(938), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(924), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(939), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(928), 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, - [27758] = 28, + [26437] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, - sym_identifier, - ACTIONS(920), 1, + ACTIONS(1124), 1, + sym__namecolon, + ACTIONS(100), 2, + sym__or_operator, + sym__and_operator, + STATE(530), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(98), 43, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(922), 1, + sym_identifier, + anon_sym_STAR, + sym__terminator, sym_null_expression, - ACTIONS(926), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(928), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, anon_sym_LPAREN, - ACTIONS(934), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + 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, - ACTIONS(948), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, aux_sym_accumulate_expression_token1, - STATE(782), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, - sym__decimal_literal, - ACTIONS(954), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(545), 2, - sym_comment, - sym_include, - STATE(938), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(924), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(939), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(928), 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, - [27869] = 28, + [26501] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, - sym_identifier, - ACTIONS(920), 1, + ACTIONS(1117), 1, + sym__namedot, + STATE(526), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(81), 2, + sym__or_operator, + sym__and_operator, + STATE(531), 2, + sym_comment, + sym_include, + ACTIONS(79), 43, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(922), 1, + sym_identifier, + anon_sym_STAR, + sym__terminator, sym_null_expression, - ACTIONS(926), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(928), 1, anon_sym_DQUOTE, - ACTIONS(930), 1, anon_sym_SQUOTE, - ACTIONS(932), 1, anon_sym_LPAREN, - ACTIONS(934), 1, aux_sym_unary_expression_token1, - ACTIONS(936), 1, aux_sym_unary_expression_token2, - ACTIONS(938), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, aux_sym_locked_expression_token1, - ACTIONS(944), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + 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, - ACTIONS(948), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, aux_sym_accumulate_expression_token1, - STATE(781), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, - sym__decimal_literal, - ACTIONS(954), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(546), 2, - sym_comment, - sym_include, - STATE(938), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(924), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(939), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(928), 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, - [27980] = 28, + [26567] = 20, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(1127), 1, + sym__terminator, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1696), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(532), 2, + sym_comment, + sym_include, + ACTIONS(1129), 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(1131), 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(229), 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, + [26658] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(327), 1, + ACTIONS(1135), 1, + anon_sym_NO_DASHERROR, + ACTIONS(173), 2, + sym__or_operator, + sym__and_operator, + STATE(533), 2, + sym_comment, + sym_include, + ACTIONS(171), 43, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(329), 1, + sym_identifier, + anon_sym_STAR, + sym__terminator, sym_null_expression, - ACTIONS(333), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(335), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, anon_sym_LPAREN, - ACTIONS(343), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + 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, - ACTIONS(359), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(405), 1, - sym__expression, - ACTIONS(367), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(547), 2, + [26721] = 20, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1137), 1, + sym__terminator, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1671), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(534), 2, sym_comment, sym_include, - ACTIONS(331), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(28), 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, - [28091] = 28, + ACTIONS(1129), 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(1131), 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(229), 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, + [26812] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(327), 1, + ACTIONS(1139), 1, + sym__namedot, + ACTIONS(111), 2, + sym__or_operator, + sym__and_operator, + STATE(535), 2, + sym_comment, + sym_include, + ACTIONS(109), 43, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(329), 1, + sym_identifier, + anon_sym_STAR, + sym__terminator, sym_null_expression, - ACTIONS(333), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(335), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, anon_sym_LPAREN, - ACTIONS(343), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + 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, - ACTIONS(359), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(45), 1, - sym__expression, - ACTIONS(367), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(548), 2, + [26875] = 20, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1141), 1, + sym__terminator, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1698), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(536), 2, sym_comment, sym_include, - ACTIONS(331), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(28), 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, - [28202] = 28, + ACTIONS(1129), 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(1131), 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(229), 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, + [26966] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(327), 1, + STATE(537), 2, + sym_comment, + sym_include, + ACTIONS(117), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(115), 43, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(329), 1, + sym_identifier, + anon_sym_STAR, + sym__terminator, sym_null_expression, - ACTIONS(333), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(335), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, anon_sym_SQUOTE, - ACTIONS(339), 1, anon_sym_LPAREN, - ACTIONS(343), 1, aux_sym_unary_expression_token1, - ACTIONS(345), 1, aux_sym_unary_expression_token2, - ACTIONS(347), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(349), 1, aux_sym_current_changed_expression_token1, - ACTIONS(351), 1, aux_sym_locked_expression_token1, - ACTIONS(355), 1, + 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, - ACTIONS(359), 1, aux_sym_if_statement_token1, - ACTIONS(361), 1, aux_sym_can_find_expression_token1, - ACTIONS(365), 1, aux_sym_accumulate_expression_token1, - ACTIONS(385), 1, - aux_sym_input_expression_token1, - STATE(11), 1, - sym__decimal_literal, - STATE(29), 1, - sym_object_access, - STATE(886), 1, - sym__expression, - ACTIONS(367), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(549), 2, + [27027] = 20, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1143), 1, + sym__terminator, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1674), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(538), 2, sym_comment, sym_include, - ACTIONS(331), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(28), 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, - [28313] = 28, + ACTIONS(1129), 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(1131), 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(229), 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, + [27118] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1128), 1, - sym_identifier, - ACTIONS(1130), 1, + ACTIONS(1145), 1, + anon_sym_NO_DASHERROR, + ACTIONS(455), 2, + sym__or_operator, + sym__and_operator, + STATE(539), 2, + sym_comment, + sym_include, + ACTIONS(453), 43, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(1132), 1, + sym_identifier, + anon_sym_STAR, + sym__terminator, sym_null_expression, - ACTIONS(1136), 1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, sym__integer_literal, - ACTIONS(1138), 1, anon_sym_DQUOTE, - ACTIONS(1140), 1, anon_sym_SQUOTE, - ACTIONS(1142), 1, anon_sym_LPAREN, - ACTIONS(1144), 1, aux_sym_unary_expression_token1, - ACTIONS(1146), 1, aux_sym_unary_expression_token2, - ACTIONS(1148), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1152), 1, aux_sym_locked_expression_token1, - ACTIONS(1154), 1, aux_sym_input_expression_token1, - ACTIONS(1156), 1, + 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, - ACTIONS(1158), 1, aux_sym_if_statement_token1, - ACTIONS(1160), 1, aux_sym_can_find_expression_token1, - ACTIONS(1162), 1, aux_sym_accumulate_expression_token1, - STATE(648), 1, - sym__expression, - STATE(720), 1, - sym_object_access, - STATE(736), 1, - sym__decimal_literal, - ACTIONS(1164), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(550), 2, - sym_comment, - sym_include, - STATE(737), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1134), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(738), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(729), 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, - [28424] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(918), 1, - sym_identifier, - ACTIONS(920), 1, - anon_sym_LBRACE, - ACTIONS(922), 1, - sym_null_expression, - ACTIONS(926), 1, - sym__integer_literal, - ACTIONS(928), 1, - anon_sym_DQUOTE, - ACTIONS(930), 1, - anon_sym_SQUOTE, - ACTIONS(932), 1, - anon_sym_LPAREN, - ACTIONS(934), 1, - aux_sym_unary_expression_token1, - ACTIONS(936), 1, - aux_sym_unary_expression_token2, - ACTIONS(938), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(940), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(942), 1, - aux_sym_locked_expression_token1, - ACTIONS(944), 1, - aux_sym_input_expression_token1, - ACTIONS(946), 1, - aux_sym_scope_tuning_token1, - ACTIONS(948), 1, - aux_sym_if_statement_token1, - ACTIONS(950), 1, - aux_sym_can_find_expression_token1, - ACTIONS(952), 1, - aux_sym_accumulate_expression_token1, - STATE(778), 1, - sym__expression, - STATE(845), 1, - sym_object_access, - STATE(937), 1, - sym__decimal_literal, - ACTIONS(954), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(551), 2, - sym_comment, - sym_include, - STATE(938), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(924), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(939), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(928), 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, - [28535] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1128), 1, - sym_identifier, - ACTIONS(1130), 1, - anon_sym_LBRACE, - ACTIONS(1132), 1, - sym_null_expression, - ACTIONS(1136), 1, - sym__integer_literal, - ACTIONS(1138), 1, - anon_sym_DQUOTE, - ACTIONS(1140), 1, - anon_sym_SQUOTE, - ACTIONS(1142), 1, - anon_sym_LPAREN, - ACTIONS(1144), 1, - aux_sym_unary_expression_token1, - ACTIONS(1146), 1, - aux_sym_unary_expression_token2, - ACTIONS(1148), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(1150), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(1152), 1, - aux_sym_locked_expression_token1, - ACTIONS(1154), 1, - aux_sym_input_expression_token1, - ACTIONS(1156), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1158), 1, - aux_sym_if_statement_token1, - ACTIONS(1160), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1162), 1, - aux_sym_accumulate_expression_token1, - STATE(651), 1, - sym__expression, - STATE(720), 1, - sym_object_access, - STATE(736), 1, - sym__decimal_literal, - ACTIONS(1164), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(552), 2, - sym_comment, - sym_include, - STATE(737), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1134), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(738), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(729), 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, - [28646] = 28, - ACTIONS(3), 1, + [27181] = 20, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(1128), 1, - sym_identifier, - ACTIONS(1130), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1132), 1, - sym_null_expression, - ACTIONS(1136), 1, - sym__integer_literal, - ACTIONS(1138), 1, - anon_sym_DQUOTE, - ACTIONS(1140), 1, - anon_sym_SQUOTE, - ACTIONS(1142), 1, - anon_sym_LPAREN, - ACTIONS(1144), 1, - aux_sym_unary_expression_token1, - ACTIONS(1146), 1, - aux_sym_unary_expression_token2, - ACTIONS(1148), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(1150), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(1152), 1, - aux_sym_locked_expression_token1, - ACTIONS(1154), 1, - aux_sym_input_expression_token1, - ACTIONS(1156), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1158), 1, - aux_sym_if_statement_token1, - ACTIONS(1160), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1162), 1, - aux_sym_accumulate_expression_token1, - STATE(640), 1, - sym__expression, - STATE(720), 1, - sym_object_access, - STATE(736), 1, - sym__decimal_literal, - ACTIONS(1164), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(553), 2, - sym_comment, - sym_include, - STATE(737), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1134), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(738), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(729), 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, - [28757] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(707), 1, - anon_sym_LPAREN, - STATE(554), 2, - sym_comment, - sym_include, - ACTIONS(127), 48, + ACTIONS(219), 1, anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, + ACTIONS(221), 1, anon_sym_STAR, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1147), 1, sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1685), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(227), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(540), 2, + sym_comment, + sym_include, + ACTIONS(1129), 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(1131), 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(229), 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, @@ -70385,54 +68277,67 @@ 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, - [28821] = 4, - ACTIONS(3), 1, + [27272] = 20, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - STATE(555), 2, - sym_comment, - sym_include, - ACTIONS(183), 49, - anon_sym_SLASH, + ACTIONS(65), 1, anon_sym_LBRACE, - sym_identifier, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, anon_sym_STAR, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1149), 1, sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1689), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(227), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(541), 2, + sym_comment, + sym_include, + ACTIONS(1129), 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(1131), 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(229), 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, @@ -70443,13 +68348,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_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, - [28883] = 16, + [27363] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -70460,107 +68359,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1170), 1, - aux_sym_input_stream_tuning_token11, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1151), 1, + sym__terminator, + STATE(453), 1, sym__logical_operator, - ACTIONS(227), 2, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1699), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(556), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(542), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - ACTIONS(1168), 18, - sym__terminator, + ACTIONS(1129), 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(1131), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token5, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - aux_sym_input_stream_tuning_token9, - aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token2, aux_sym_output_stream_tuning_token3, aux_sym_output_stream_tuning_token4, aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - aux_sym_output_stream_tuning_token8, - [28969] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(557), 2, - sym_comment, - sym_include, - ACTIONS(82), 49, - 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__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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(229), 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, @@ -70571,54 +68419,67 @@ 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, - [29031] = 4, - ACTIONS(3), 1, + [27454] = 20, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - STATE(558), 2, - sym_comment, - sym_include, - ACTIONS(78), 49, - anon_sym_SLASH, + ACTIONS(65), 1, anon_sym_LBRACE, - sym_identifier, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, anon_sym_STAR, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1153), 1, sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1697), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(227), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(543), 2, + sym_comment, + sym_include, + ACTIONS(1129), 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(1131), 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(229), 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, @@ -70629,21 +68490,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_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, - [29093] = 4, + [27545] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(559), 2, + STATE(544), 2, sym_comment, sym_include, - ACTIONS(98), 49, + ACTIONS(93), 3, + sym__namedot, + sym__or_operator, + sym__and_operator, + ACTIONS(91), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70658,12 +68517,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -70693,106 +68546,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29155] = 4, - ACTIONS(3), 1, + [27606] = 20, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - STATE(560), 2, - sym_comment, - sym_include, - ACTIONS(94), 49, - anon_sym_SLASH, + ACTIONS(65), 1, anon_sym_LBRACE, - sym_identifier, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, anon_sym_STAR, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1155), 1, sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1680), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(227), 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, - [29217] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(561), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(545), 2, sym_comment, sym_include, - ACTIONS(175), 49, - 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__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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(1129), 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(1131), 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(229), 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, @@ -70803,54 +68617,67 @@ 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, - [29279] = 4, - ACTIONS(3), 1, + [27697] = 20, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - STATE(562), 2, - sym_comment, - sym_include, - ACTIONS(211), 49, - anon_sym_SLASH, + ACTIONS(65), 1, anon_sym_LBRACE, - sym_identifier, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, anon_sym_STAR, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1157), 1, sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1688), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(227), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(546), 2, + sym_comment, + sym_include, + ACTIONS(1129), 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(1131), 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(229), 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, @@ -70861,21 +68688,18 @@ 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, - [29341] = 4, + [27788] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(563), 2, + ACTIONS(209), 2, + sym__or_operator, + sym__and_operator, + STATE(547), 2, sym_comment, sym_include, - ACTIONS(139), 49, + ACTIONS(207), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70890,12 +68714,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -70925,15 +68743,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29403] = 4, + [27848] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(564), 2, + ACTIONS(173), 2, + sym__or_operator, + sym__and_operator, + STATE(548), 2, sym_comment, sym_include, - ACTIONS(135), 49, + ACTIONS(171), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70948,12 +68769,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -70983,15 +68798,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29465] = 4, + [27908] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(565), 2, + ACTIONS(1115), 1, + anon_sym_LPAREN, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(549), 2, sym_comment, sym_include, - ACTIONS(104), 49, + ACTIONS(63), 42, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71005,13 +68825,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71041,15 +68854,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29527] = 4, + [27970] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(566), 2, + ACTIONS(197), 2, + sym__or_operator, + sym__and_operator, + STATE(550), 2, sym_comment, sym_include, - ACTIONS(191), 49, + ACTIONS(195), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71064,12 +68880,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71099,15 +68909,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29589] = 4, + [28030] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(567), 2, + ACTIONS(133), 2, + sym__or_operator, + sym__and_operator, + STATE(551), 2, sym_comment, sym_include, - ACTIONS(203), 49, + ACTIONS(131), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71122,12 +68935,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71157,15 +68964,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29651] = 4, + [28090] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(568), 2, + ACTIONS(177), 2, + sym__or_operator, + sym__and_operator, + STATE(552), 2, sym_comment, sym_include, - ACTIONS(171), 49, + ACTIONS(175), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71180,12 +68990,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71215,15 +69019,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29713] = 4, + [28150] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(569), 2, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(553), 2, sym_comment, sym_include, - ACTIONS(147), 49, + ACTIONS(63), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71238,12 +69045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71273,15 +69074,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29775] = 4, + [28210] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(570), 2, + ACTIONS(205), 2, + sym__or_operator, + sym__and_operator, + STATE(554), 2, sym_comment, sym_include, - ACTIONS(187), 49, + ACTIONS(203), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71296,12 +69100,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71331,48 +69129,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29837] = 4, - ACTIONS(3), 1, + [28270] = 16, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - STATE(571), 2, - sym_comment, - sym_include, - ACTIONS(199), 49, - anon_sym_SLASH, + ACTIONS(65), 1, anon_sym_LBRACE, - sym_identifier, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 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__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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(1161), 1, + aux_sym_input_stream_tuning_token11, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(227), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(555), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, @@ -71383,21 +69176,39 @@ 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, - [29899] = 4, + ACTIONS(1159), 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, + [28352] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(572), 2, + ACTIONS(1115), 1, + anon_sym_LPAREN, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, + STATE(556), 2, sym_comment, sym_include, - ACTIONS(167), 49, + ACTIONS(75), 42, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71411,13 +69222,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71447,15 +69251,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29961] = 4, + [28414] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(573), 2, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(557), 2, sym_comment, sym_include, - ACTIONS(179), 49, + ACTIONS(87), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71470,12 +69277,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71505,17 +69306,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [30023] = 5, + [28474] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(707), 1, - anon_sym_LPAREN, - STATE(574), 2, + ACTIONS(217), 2, + sym__or_operator, + sym__and_operator, + STATE(558), 2, sym_comment, sym_include, - ACTIONS(108), 48, + ACTIONS(215), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71529,12 +69331,7 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, anon_sym_DQUOTE, anon_sym_SQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71564,15 +69361,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [30087] = 4, + [28534] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(575), 2, + ACTIONS(193), 2, + sym__or_operator, + sym__and_operator, + STATE(559), 2, sym_comment, sym_include, - ACTIONS(143), 49, + ACTIONS(191), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71587,12 +69387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71622,15 +69416,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [30149] = 4, + [28594] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(576), 2, + ACTIONS(189), 2, + sym__or_operator, + sym__and_operator, + STATE(560), 2, sym_comment, sym_include, - ACTIONS(108), 49, + ACTIONS(187), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71645,12 +69442,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71680,15 +69471,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [30211] = 4, + [28654] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(577), 2, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(561), 2, sym_comment, sym_include, - ACTIONS(86), 49, + ACTIONS(83), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71703,12 +69497,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71738,15 +69526,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [30273] = 4, + [28714] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(578), 2, + ACTIONS(185), 2, + sym__or_operator, + sym__and_operator, + STATE(562), 2, sym_comment, sym_include, - ACTIONS(90), 49, + ACTIONS(183), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71761,12 +69552,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71796,15 +69581,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [30335] = 4, + [28774] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(579), 2, + ACTIONS(125), 2, + sym__or_operator, + sym__and_operator, + STATE(563), 2, sym_comment, sym_include, - ACTIONS(207), 49, + ACTIONS(123), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71819,12 +69607,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71854,15 +69636,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [30397] = 4, + [28834] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(580), 2, + ACTIONS(129), 2, + sym__or_operator, + sym__and_operator, + STATE(564), 2, sym_comment, sym_include, - ACTIONS(195), 49, + ACTIONS(127), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71877,12 +69662,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71912,15 +69691,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [30459] = 4, + [28894] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(581), 2, + ACTIONS(165), 2, + sym__or_operator, + sym__and_operator, + STATE(565), 2, sym_comment, sym_include, - ACTIONS(151), 49, + ACTIONS(163), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71935,12 +69717,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71970,15 +69746,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [30521] = 4, + [28954] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(582), 2, + ACTIONS(161), 2, + sym__or_operator, + sym__and_operator, + STATE(566), 2, sym_comment, sym_include, - ACTIONS(127), 49, + ACTIONS(159), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71993,12 +69772,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -72028,15 +69801,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [30583] = 4, + [29014] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(583), 2, + ACTIONS(121), 2, + sym__or_operator, + sym__and_operator, + STATE(567), 2, sym_comment, sym_include, - ACTIONS(155), 49, + ACTIONS(119), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -72051,12 +69827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -72086,15 +69856,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [30645] = 4, + [29074] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(584), 2, + ACTIONS(153), 2, + sym__or_operator, + sym__and_operator, + STATE(568), 2, sym_comment, sym_include, - ACTIONS(159), 49, + ACTIONS(151), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -72109,12 +69882,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -72144,15 +69911,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [30707] = 4, + [29134] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(585), 2, + ACTIONS(169), 2, + sym__or_operator, + sym__and_operator, + STATE(569), 2, sym_comment, sym_include, - ACTIONS(163), 49, + ACTIONS(167), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -72167,12 +69937,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -72202,15 +69966,513 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [30769] = 4, + [29194] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(586), 2, + ACTIONS(201), 2, + sym__or_operator, + sym__and_operator, + STATE(570), 2, + sym_comment, + sym_include, + ACTIONS(199), 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, + [29254] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(149), 2, + sym__or_operator, + sym__and_operator, + STATE(571), 2, + sym_comment, + sym_include, + ACTIONS(147), 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, + [29314] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(213), 2, + sym__or_operator, + sym__and_operator, + STATE(572), 2, + sym_comment, + sym_include, + ACTIONS(211), 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, + [29374] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(145), 2, + sym__or_operator, + sym__and_operator, + STATE(573), 2, + sym_comment, + sym_include, + ACTIONS(143), 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, + [29434] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(181), 2, + sym__or_operator, + sym__and_operator, + STATE(574), 2, + sym_comment, + sym_include, + ACTIONS(179), 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, + [29494] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(141), 2, + sym__or_operator, + sym__and_operator, + STATE(575), 2, + sym_comment, + sym_include, + ACTIONS(139), 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, + [29554] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(137), 2, + sym__or_operator, + sym__and_operator, + STATE(576), 2, + sym_comment, + sym_include, + ACTIONS(135), 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, + [29614] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(111), 2, + sym__or_operator, + sym__and_operator, + STATE(577), 2, + sym_comment, + sym_include, + ACTIONS(109), 43, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + sym__terminator, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + sym__integer_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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, + [29674] = 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(578), 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, + [29734] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(157), 2, + sym__or_operator, + sym__and_operator, + STATE(579), 2, sym_comment, sym_include, - ACTIONS(215), 49, + ACTIONS(155), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -72225,12 +70487,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -72260,7 +70516,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [30831] = 15, + [29794] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -72271,31 +70527,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, + STATE(453), 1, sym__logical_operator, - ACTIONS(227), 2, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(587), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(580), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72309,7 +70561,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(1172), 18, + ACTIONS(1163), 18, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -72328,7 +70580,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, - [30914] = 15, + [29873] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -72339,31 +70591,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, + STATE(453), 1, sym__logical_operator, - ACTIONS(227), 2, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(588), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(581), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72377,7 +70625,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(1168), 18, + ACTIONS(1165), 18, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -72396,7 +70644,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, - [30997] = 15, + [29952] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -72407,31 +70655,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, + STATE(453), 1, sym__logical_operator, - ACTIONS(227), 2, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(589), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(582), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72445,7 +70689,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(1174), 18, + ACTIONS(1159), 18, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -72464,7 +70708,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, - [31080] = 23, + [30031] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -72475,55 +70719,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1176), 1, + ACTIONS(1167), 1, anon_sym_RPAREN, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - STATE(1856), 1, + STATE(471), 1, + sym__comparison_operator, + STATE(1835), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(590), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(583), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72537,7 +70777,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31176] = 23, + [30123] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -72548,55 +70788,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(1188), 1, + ACTIONS(1179), 1, anon_sym_RPAREN, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - STATE(1860), 1, + STATE(471), 1, + sym__comparison_operator, + STATE(1862), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(584), 2, + sym_comment, + sym_include, + STATE(2125), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + ACTIONS(229), 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, + [30215] = 23, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(1169), 1, + aux_sym_using_statement_token1, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(1181), 1, + anon_sym_RPAREN, + STATE(338), 1, + sym__logical_operator, + STATE(469), 1, + sym__additive_operator, + STATE(470), 1, + sym__multiplicative_operator, + STATE(471), 1, + sym__comparison_operator, + STATE(1844), 1, + aux_sym_can_find_expression_repeat2, + STATE(1916), 1, + sym__using_first, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(591), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(585), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72610,41 +70915,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31272] = 11, + [30307] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1190), 1, + ACTIONS(1183), 1, anon_sym_LPAREN, - ACTIONS(1192), 1, + ACTIONS(1185), 1, sym__namedot, - ACTIONS(1194), 1, + ACTIONS(1187), 1, sym__namecolon, - STATE(618), 1, + STATE(611), 1, aux_sym_object_access_repeat1, - STATE(621), 1, + STATE(615), 1, aux_sym_qualified_name_repeat1, - STATE(592), 2, + STATE(586), 2, sym_comment, sym_include, - ACTIONS(108), 5, + ACTIONS(63), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(110), 34, + ACTIONS(67), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -72671,7 +70972,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [31344] = 23, + [30375] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -72682,128 +70983,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(1196), 1, + ACTIONS(1189), 1, anon_sym_RPAREN, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - STATE(1854), 1, - aux_sym_can_find_expression_repeat2, - STATE(1938), 1, - sym__using_first, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(593), 2, - sym_comment, - sym_include, - STATE(2196), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [31440] = 23, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1178), 1, - aux_sym_using_statement_token1, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(1198), 1, - anon_sym_RPAREN, - STATE(357), 1, - sym__logical_operator, - STATE(362), 1, + STATE(471), 1, sym__comparison_operator, - STATE(400), 1, - sym__additive_operator, - STATE(417), 1, - sym__multiplicative_operator, STATE(1869), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(594), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(587), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72817,7 +71041,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31536] = 23, + [30467] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -72828,55 +71052,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(1200), 1, + ACTIONS(1191), 1, anon_sym_RPAREN, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - STATE(1886), 1, + STATE(471), 1, + sym__comparison_operator, + STATE(1849), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(595), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(588), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72890,7 +71110,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31632] = 23, + [30559] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -72901,55 +71121,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(1202), 1, + ACTIONS(1193), 1, anon_sym_RPAREN, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - STATE(1863), 1, + STATE(471), 1, + sym__comparison_operator, + STATE(1854), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(596), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(589), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72963,7 +71179,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31728] = 23, + [30651] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -72974,55 +71190,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(1204), 1, + ACTIONS(1195), 1, anon_sym_RPAREN, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - STATE(1888), 1, + STATE(471), 1, + sym__comparison_operator, + STATE(1872), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(597), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(590), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73036,7 +71248,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31824] = 23, + [30743] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -73047,55 +71259,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(1206), 1, + ACTIONS(1197), 1, anon_sym_RPAREN, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - STATE(1882), 1, + STATE(471), 1, + sym__comparison_operator, + STATE(1839), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(598), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(591), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73109,7 +71317,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31920] = 23, + [30835] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -73120,55 +71328,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(1208), 1, + ACTIONS(1199), 1, anon_sym_RPAREN, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - STATE(1864), 1, + STATE(471), 1, + sym__comparison_operator, + STATE(1873), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(599), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(592), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73182,68 +71386,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [32016] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1190), 1, - anon_sym_LPAREN, - ACTIONS(1192), 1, - sym__namedot, - ACTIONS(1194), 1, - sym__namecolon, - STATE(618), 1, - aux_sym_object_access_repeat1, - STATE(621), 1, - aux_sym_qualified_name_repeat1, - STATE(600), 2, - sym_comment, - sym_include, - ACTIONS(127), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(129), 34, - anon_sym_STAR, - aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [32088] = 23, + [30927] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -73254,55 +71397,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(1210), 1, + ACTIONS(1201), 1, anon_sym_RPAREN, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - STATE(1872), 1, + STATE(471), 1, + sym__comparison_operator, + STATE(1870), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(601), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(593), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73316,7 +71455,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [32184] = 23, + [31019] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -73327,55 +71466,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(1212), 1, + ACTIONS(1203), 1, anon_sym_RPAREN, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - STATE(1885), 1, + STATE(471), 1, + sym__comparison_operator, + STATE(1864), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(602), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(594), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73389,7 +71524,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [32280] = 23, + [31111] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -73400,55 +71535,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(1214), 1, + ACTIONS(1205), 1, anon_sym_RPAREN, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - STATE(1887), 1, + STATE(471), 1, + sym__comparison_operator, + STATE(1853), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(603), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(595), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73462,7 +71593,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [32376] = 23, + [31203] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -73473,55 +71604,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(1216), 1, + ACTIONS(1207), 1, anon_sym_RPAREN, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - STATE(1874), 1, + STATE(471), 1, + sym__comparison_operator, + STATE(1859), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(604), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(596), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73535,7 +71662,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [32472] = 23, + [31295] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1183), 1, + anon_sym_LPAREN, + ACTIONS(1185), 1, + sym__namedot, + ACTIONS(1187), 1, + sym__namecolon, + STATE(611), 1, + aux_sym_object_access_repeat1, + STATE(615), 1, + aux_sym_qualified_name_repeat1, + STATE(597), 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, + [31363] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -73546,55 +71730,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(1218), 1, + ACTIONS(1209), 1, anon_sym_RPAREN, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - STATE(1848), 1, + STATE(471), 1, + sym__comparison_operator, + STATE(1852), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(605), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(598), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73608,7 +71788,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [32568] = 16, + [31455] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -73619,34 +71799,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(719), 1, + ACTIONS(1109), 1, aux_sym_variable_definition_token2, - STATE(415), 1, + STATE(360), 1, sym__comparison_operator, - STATE(416), 1, + STATE(361), 1, sym__multiplicative_operator, - STATE(418), 1, + STATE(362), 1, sym__additive_operator, - STATE(419), 1, + STATE(363), 1, sym__logical_operator, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(606), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(599), 2, sym_comment, sym_include, - ACTIONS(229), 3, + ACTIONS(227), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 12, + ACTIONS(229), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73659,7 +71835,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(241), 13, + ACTIONS(223), 13, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -73673,7 +71849,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32649] = 16, + [31532] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -73684,34 +71860,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(713), 1, + ACTIONS(1099), 1, aux_sym_variable_definition_token2, - STATE(415), 1, + STATE(360), 1, sym__comparison_operator, - STATE(416), 1, + STATE(361), 1, sym__multiplicative_operator, - STATE(418), 1, + STATE(362), 1, sym__additive_operator, - STATE(419), 1, + STATE(363), 1, sym__logical_operator, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(607), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(600), 2, sym_comment, sym_include, - ACTIONS(229), 3, + ACTIONS(227), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 12, + ACTIONS(229), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73724,7 +71896,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(235), 13, + ACTIONS(309), 13, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -73738,7 +71910,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32730] = 16, + [31609] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -73749,34 +71921,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(715), 1, + ACTIONS(1105), 1, aux_sym_variable_definition_token2, - STATE(415), 1, + STATE(360), 1, sym__comparison_operator, - STATE(416), 1, + STATE(361), 1, sym__multiplicative_operator, - STATE(418), 1, + STATE(362), 1, sym__additive_operator, - STATE(419), 1, + STATE(363), 1, sym__logical_operator, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(608), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(601), 2, sym_comment, sym_include, - ACTIONS(229), 3, + ACTIONS(227), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 12, + ACTIONS(229), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73789,7 +71957,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(243), 13, + ACTIONS(293), 13, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -73803,7 +71971,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32811] = 13, + [31686] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -73814,33 +71982,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(415), 1, + STATE(360), 1, sym__comparison_operator, - STATE(416), 1, + STATE(361), 1, sym__multiplicative_operator, - STATE(418), 1, + STATE(362), 1, sym__additive_operator, - STATE(419), 1, + STATE(363), 1, sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(609), 2, + STATE(602), 2, sym_comment, sym_include, - ACTIONS(239), 4, + ACTIONS(297), 4, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(237), 31, + ACTIONS(295), 29, + sym__or_operator, + sym__and_operator, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73865,41 +72028,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32886] = 10, + [31755] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(415), 1, + ACTIONS(195), 1, + aux_sym_variable_definition_token2, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + STATE(360), 1, sym__comparison_operator, - STATE(416), 1, + STATE(361), 1, sym__multiplicative_operator, - STATE(418), 1, + STATE(362), 1, sym__additive_operator, - STATE(419), 1, + STATE(363), 1, sym__logical_operator, - STATE(610), 2, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(603), 2, sym_comment, sym_include, - ACTIONS(245), 5, - anon_sym_SLASH, + ACTIONS(227), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(247), 34, - anon_sym_STAR, - aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(229), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73912,6 +72072,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(197), 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, @@ -73924,7 +72088,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32955] = 12, + [31830] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -73935,32 +72099,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(415), 1, + ACTIONS(1107), 1, + aux_sym_variable_definition_token2, + STATE(360), 1, sym__comparison_operator, - STATE(416), 1, + STATE(361), 1, sym__multiplicative_operator, - STATE(418), 1, + STATE(362), 1, sym__additive_operator, - STATE(419), 1, + STATE(363), 1, sym__logical_operator, - STATE(611), 2, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(604), 2, sym_comment, sym_include, - ACTIONS(251), 4, + ACTIONS(227), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(249), 33, - aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(229), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73973,6 +72135,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(235), 13, + aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, @@ -73985,7 +72149,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33028] = 16, + [31907] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -73996,34 +72160,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(701), 1, + ACTIONS(1111), 1, aux_sym_variable_definition_token2, - STATE(415), 1, + STATE(360), 1, sym__comparison_operator, - STATE(416), 1, + STATE(361), 1, sym__multiplicative_operator, - STATE(418), 1, + STATE(362), 1, sym__additive_operator, - STATE(419), 1, + STATE(363), 1, sym__logical_operator, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(612), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(605), 2, sym_comment, sym_include, - ACTIONS(229), 3, + ACTIONS(227), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 12, + ACTIONS(229), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74036,7 +72196,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(253), 13, + ACTIONS(233), 13, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -74050,38 +72210,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33109] = 15, + [31984] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(215), 1, - aux_sym_variable_definition_token2, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - STATE(415), 1, + STATE(360), 1, sym__comparison_operator, - STATE(416), 1, + STATE(361), 1, sym__multiplicative_operator, - STATE(418), 1, + STATE(362), 1, sym__additive_operator, - STATE(419), 1, + STATE(363), 1, sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(613), 2, + STATE(606), 2, sym_comment, sym_include, - ACTIONS(229), 3, + ACTIONS(299), 5, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(231), 12, + aux_sym_variable_definition_token2, + ACTIONS(301), 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, @@ -74094,14 +72253,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(217), 19, - aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, @@ -74114,7 +72265,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33188] = 16, + [32049] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -74125,34 +72276,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(723), 1, + ACTIONS(1113), 1, aux_sym_variable_definition_token2, - STATE(415), 1, + STATE(360), 1, sym__comparison_operator, - STATE(416), 1, + STATE(361), 1, sym__multiplicative_operator, - STATE(418), 1, + STATE(362), 1, sym__additive_operator, - STATE(419), 1, + STATE(363), 1, sym__logical_operator, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(614), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(607), 2, sym_comment, sym_include, - ACTIONS(229), 3, + ACTIONS(227), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 12, + ACTIONS(229), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74165,7 +72312,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(223), 13, + ACTIONS(237), 13, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -74179,7 +72326,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33269] = 16, + [32126] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -74190,34 +72337,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(721), 1, + ACTIONS(1213), 1, aux_sym_variable_definition_token2, - STATE(415), 1, + STATE(360), 1, sym__comparison_operator, - STATE(416), 1, + STATE(361), 1, sym__multiplicative_operator, - STATE(418), 1, + STATE(362), 1, sym__additive_operator, - STATE(419), 1, + STATE(363), 1, sym__logical_operator, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(615), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(608), 2, sym_comment, sym_include, - ACTIONS(229), 3, + ACTIONS(227), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 12, + ACTIONS(229), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74230,7 +72373,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(233), 13, + ACTIONS(1211), 13, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -74244,7 +72387,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33350] = 16, + [32203] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -74255,34 +72398,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1222), 1, - aux_sym_variable_definition_token2, - STATE(415), 1, + STATE(360), 1, sym__comparison_operator, - STATE(416), 1, + STATE(361), 1, sym__multiplicative_operator, - STATE(418), 1, + STATE(362), 1, sym__additive_operator, - STATE(419), 1, + STATE(363), 1, sym__logical_operator, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(616), 2, + STATE(609), 2, sym_comment, sym_include, - ACTIONS(229), 3, + ACTIONS(305), 4, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 12, + aux_sym_variable_definition_token2, + ACTIONS(303), 27, + sym__or_operator, + sym__and_operator, + aux_sym__block_terminator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74295,8 +72433,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(1220), 13, - aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, @@ -74309,35 +72445,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33431] = 7, + [32274] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1224), 1, + ACTIONS(1215), 1, sym__namecolon, - STATE(617), 3, + STATE(610), 3, sym_comment, sym_include, aux_sym_object_access_repeat1, - ACTIONS(120), 5, + ACTIONS(98), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(122), 35, + ACTIONS(100), 31, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -74364,36 +72496,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33493] = 8, + [32332] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1194), 1, + ACTIONS(1187), 1, sym__namecolon, - STATE(617), 1, + STATE(610), 1, aux_sym_object_access_repeat1, - STATE(618), 2, + STATE(611), 2, sym_comment, sym_include, - ACTIONS(116), 5, + ACTIONS(105), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(118), 35, + ACTIONS(107), 31, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -74420,7 +72548,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33557] = 20, + [32392] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -74431,49 +72559,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1227), 1, + ACTIONS(1218), 1, sym__terminator, - ACTIONS(1233), 1, + ACTIONS(1224), 1, aux_sym_input_stream_tuning_token9, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, + STATE(453), 1, sym__logical_operator, - STATE(1995), 1, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1949), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2105), 1, sym_input_stream_tuning, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1220), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(612), 2, + sym_comment, + sym_include, + ACTIONS(1222), 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(229), 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, + [32475] = 20, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(1224), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1226), 1, + sym__terminator, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1966), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2105), 1, + sym_input_stream_tuning, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1229), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1220), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(619), 2, + STATE(613), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1231), 6, + ACTIONS(1222), 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(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74487,40 +72674,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [33644] = 11, + [32558] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1235), 1, - anon_sym_LPAREN, - ACTIONS(1237), 1, - sym__namecolon, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(707), 1, - aux_sym_object_access_repeat1, - STATE(620), 2, - sym_comment, - sym_include, - ACTIONS(108), 3, + ACTIONS(219), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(110), 33, + ACTIONS(221), 1, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(1224), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1228), 1, + sym__terminator, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1985), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2105), 1, + sym_input_stream_tuning, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1220), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(614), 2, + sym_comment, + sym_include, + ACTIONS(1222), 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(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74534,46 +72737,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [33713] = 8, + [32641] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1192), 1, + ACTIONS(1185), 1, sym__namedot, - STATE(624), 1, + STATE(616), 1, aux_sym_qualified_name_repeat1, - STATE(621), 2, + STATE(615), 2, sym_comment, sym_include, - ACTIONS(63), 5, + ACTIONS(79), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(67), 34, + ACTIONS(81), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -74600,35 +72788,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33776] = 8, + [32700] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1192), 1, + ACTIONS(1230), 1, sym__namedot, - STATE(621), 1, - aux_sym_qualified_name_repeat1, - STATE(622), 2, + STATE(616), 3, sym_comment, sym_include, - ACTIONS(159), 5, + aux_sym_qualified_name_repeat1, + ACTIONS(91), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(161), 34, + ACTIONS(93), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -74655,7 +72838,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33839] = 20, + [32757] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -74666,49 +72849,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1233), 1, + ACTIONS(1224), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1239), 1, + ACTIONS(1233), 1, sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, + STATE(453), 1, sym__logical_operator, - STATE(1998), 1, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1977), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2105), 1, sym_input_stream_tuning, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1229), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1220), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(623), 2, + STATE(617), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1231), 6, + ACTIONS(1222), 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(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74722,34 +72901,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [33926] = 7, + [32840] = 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(1185), 1, sym__namedot, - STATE(624), 3, + STATE(615), 1, + aux_sym_qualified_name_repeat1, + STATE(618), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(71), 5, + ACTIONS(87), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(73), 34, + ACTIONS(89), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -74776,7 +72952,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33987] = 20, + [32899] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -74787,49 +72963,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1233), 1, + ACTIONS(1224), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1244), 1, + ACTIONS(1235), 1, sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, + STATE(453), 1, sym__logical_operator, - STATE(1949), 1, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1968), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2105), 1, sym_input_stream_tuning, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1229), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1220), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(625), 2, + STATE(619), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1231), 6, + ACTIONS(1222), 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(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74843,7 +73015,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34074] = 20, + [32982] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -74854,49 +73026,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1233), 1, + ACTIONS(1224), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1246), 1, + ACTIONS(1237), 1, sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, + STATE(453), 1, sym__logical_operator, - STATE(1999), 1, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1944), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2105), 1, sym_input_stream_tuning, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1229), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1220), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(626), 2, + STATE(620), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1231), 6, + ACTIONS(1222), 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(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74910,60 +73078,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34161] = 20, + [33065] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(219), 1, + ACTIONS(1239), 1, + anon_sym_LPAREN, + ACTIONS(1241), 1, + sym__namedot, + ACTIONS(1243), 1, + sym__namecolon, + STATE(707), 1, + aux_sym_object_access_repeat1, + STATE(711), 1, + aux_sym_qualified_name_repeat1, + STATE(621), 2, + sym_comment, + sym_include, + ACTIONS(75), 3, anon_sym_SLASH, - ACTIONS(221), 1, + anon_sym_LT, + anon_sym_GT, + ACTIONS(77), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - ACTIONS(1233), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1248), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - STATE(1973), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(227), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1229), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(627), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1231), 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(231), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74977,7 +73121,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34248] = 20, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [33130] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -74988,49 +73143,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1233), 1, + ACTIONS(1224), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1250), 1, + ACTIONS(1245), 1, sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, + STATE(453), 1, sym__logical_operator, - STATE(1958), 1, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1972), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2105), 1, sym_input_stream_tuning, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1229), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1220), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(628), 2, + STATE(622), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1231), 6, + ACTIONS(1222), 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(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75044,7 +73195,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34335] = 20, + [33213] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -75055,49 +73206,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1233), 1, + ACTIONS(1224), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1252), 1, + ACTIONS(1247), 1, sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, + STATE(453), 1, sym__logical_operator, - STATE(1942), 1, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1970), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2105), 1, sym_input_stream_tuning, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1229), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1220), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(629), 2, + STATE(623), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1231), 6, + ACTIONS(1222), 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(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75111,7 +73258,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34422] = 20, + [33296] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -75122,49 +73269,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1233), 1, + ACTIONS(1224), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1254), 1, + ACTIONS(1249), 1, sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, + STATE(453), 1, sym__logical_operator, - STATE(1962), 1, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1980), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2105), 1, sym_input_stream_tuning, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1229), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1220), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(630), 2, + STATE(624), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1231), 6, + ACTIONS(1222), 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(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75178,7 +73321,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34509] = 20, + [33379] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(625), 2, + sym_comment, + sym_include, + ACTIONS(115), 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, + 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, + 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, + [33434] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -75189,49 +73381,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1233), 1, + ACTIONS(1224), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1256), 1, + ACTIONS(1251), 1, sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, + STATE(453), 1, sym__logical_operator, - STATE(1947), 1, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(1942), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2105), 1, sym_input_stream_tuning, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1229), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1220), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(631), 2, + STATE(626), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1231), 6, + ACTIONS(1222), 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(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75245,38 +73433,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34596] = 11, + [33517] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1235), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(1237), 1, + ACTIONS(1241), 1, + sym__namedot, + ACTIONS(1243), 1, sym__namecolon, - STATE(2), 1, - aux_sym_qualified_name_repeat1, STATE(707), 1, aux_sym_object_access_repeat1, - STATE(632), 2, + STATE(711), 1, + aux_sym_qualified_name_repeat1, + STATE(627), 2, sym_comment, sym_include, - ACTIONS(127), 3, + ACTIONS(63), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(129), 33, + ACTIONS(67), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -75303,35 +73487,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [34665] = 8, + [33582] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1192), 1, + ACTIONS(1185), 1, sym__namedot, - STATE(621), 1, + STATE(615), 1, aux_sym_qualified_name_repeat1, - STATE(633), 2, + STATE(628), 2, sym_comment, sym_include, - ACTIONS(207), 5, + ACTIONS(83), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(209), 34, + ACTIONS(85), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -75358,7 +73538,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [34728] = 20, + [33641] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -75369,49 +73549,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1233), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1258), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, + ACTIONS(1255), 1, + aux_sym_input_stream_tuning_token11, + STATE(453), 1, sym__logical_operator, - STATE(1988), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(227), 2, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1229), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(634), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(629), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1231), 6, + ACTIONS(1253), 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, - ACTIONS(231), 13, + aux_sym_input_stream_tuning_token9, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75425,33 +73596,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34815] = 6, + [33715] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(635), 2, + STATE(630), 2, sym_comment, sym_include, - ACTIONS(131), 5, + ACTIONS(91), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(133), 36, - sym__namecolon, + ACTIONS(93), 31, + sym__namedot, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -75478,7 +73644,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [34874] = 14, + [33769] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -75489,24 +73655,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(542), 1, + STATE(346), 1, sym__comparison_operator, - STATE(543), 1, + STATE(348), 1, sym__multiplicative_operator, - STATE(552), 1, - sym__logical_operator, - STATE(553), 1, + STATE(349), 1, sym__additive_operator, - ACTIONS(227), 2, + STATE(350), 1, + sym__logical_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(636), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(631), 2, sym_comment, sym_include, - ACTIONS(231), 13, + ACTIONS(235), 11, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75520,25 +73701,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), 17, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [34948] = 15, + [33841] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -75549,43 +73712,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(357), 1, - sym__logical_operator, - STATE(362), 1, + STATE(346), 1, sym__comparison_operator, - STATE(400), 1, - sym__additive_operator, - STATE(417), 1, + STATE(348), 1, sym__multiplicative_operator, - ACTIONS(227), 2, + STATE(349), 1, + sym__additive_operator, + STATE(350), 1, + sym__logical_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(637), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(632), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(235), 11, - sym__terminator, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, + ACTIONS(233), 11, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, - aux_sym_of_token1, - ACTIONS(231), 13, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75599,7 +73758,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35024] = 15, + [33913] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -75610,43 +73769,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(357), 1, - sym__logical_operator, - STATE(362), 1, + STATE(346), 1, sym__comparison_operator, - STATE(400), 1, - sym__additive_operator, - STATE(417), 1, + STATE(348), 1, sym__multiplicative_operator, - ACTIONS(227), 2, + STATE(349), 1, + sym__additive_operator, + STATE(350), 1, + sym__logical_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(638), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(633), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1260), 11, - sym__terminator, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, + ACTIONS(237), 11, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, - aux_sym_of_token1, - ACTIONS(231), 13, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75660,91 +73815,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35100] = 7, + [33985] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1190), 1, - anon_sym_LPAREN, - STATE(639), 2, + STATE(338), 1, + sym__logical_operator, + STATE(469), 1, + sym__additive_operator, + STATE(470), 1, + sym__multiplicative_operator, + STATE(471), 1, + sym__comparison_operator, + STATE(634), 2, sym_comment, sym_include, - ACTIONS(127), 5, + ACTIONS(299), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(129), 34, - anon_sym_STAR, - aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [35160] = 12, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, + ACTIONS(301), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - STATE(542), 1, - sym__comparison_operator, - STATE(543), 1, - sym__multiplicative_operator, - STATE(552), 1, - sym__logical_operator, - STATE(553), 1, - sym__additive_operator, - ACTIONS(251), 2, - anon_sym_LT, - anon_sym_GT, - STATE(640), 2, - sym_comment, - sym_include, - ACTIONS(249), 32, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + sym__terminator, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -75760,47 +73858,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [35230] = 10, + aux_sym_of_token1, + [34047] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(542), 1, - sym__comparison_operator, - STATE(543), 1, - sym__multiplicative_operator, - STATE(552), 1, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + STATE(338), 1, sym__logical_operator, - STATE(553), 1, + STATE(469), 1, sym__additive_operator, - STATE(641), 2, - sym_comment, - sym_include, - ACTIONS(245), 3, - anon_sym_SLASH, + STATE(470), 1, + sym__multiplicative_operator, + STATE(471), 1, + sym__comparison_operator, + ACTIONS(297), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(247), 33, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + STATE(635), 2, + sym_comment, + sym_include, + ACTIONS(295), 28, + sym__or_operator, + sym__and_operator, + sym__terminator, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -75816,18 +73912,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [35296] = 15, + aux_sym_of_token1, + [34113] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -75838,31 +73932,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(542), 1, + STATE(346), 1, sym__comparison_operator, - STATE(543), 1, + STATE(348), 1, sym__multiplicative_operator, - STATE(552), 1, - sym__logical_operator, - STATE(553), 1, + STATE(349), 1, sym__additive_operator, - ACTIONS(227), 2, + STATE(350), 1, + sym__logical_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(642), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(636), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(243), 11, + ACTIONS(1257), 11, anon_sym_COMMA, anon_sym_COLON, aux_sym_on_error_phrase_token1, @@ -75874,7 +73964,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75888,7 +73978,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35372] = 15, + [34185] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -75899,85 +73989,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(542), 1, - sym__comparison_operator, - STATE(543), 1, - sym__multiplicative_operator, - STATE(552), 1, + STATE(338), 1, sym__logical_operator, - STATE(553), 1, + STATE(469), 1, sym__additive_operator, - ACTIONS(227), 2, + STATE(470), 1, + sym__multiplicative_operator, + STATE(471), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(643), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(637), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(241), 11, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, + ACTIONS(223), 11, + sym__terminator, + anon_sym_RPAREN, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - ACTIONS(231), 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, - [35448] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1262), 1, - anon_sym_NO_DASHERROR, - STATE(644), 2, - sym_comment, - sym_include, - ACTIONS(147), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(149), 34, - anon_sym_STAR, - aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - anon_sym_PLUS, - anon_sym_DASH, + aux_sym_of_token1, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75987,75 +74031,11 @@ 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_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, - [35508] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1190), 1, - anon_sym_LPAREN, - STATE(645), 2, - sym_comment, - sym_include, - ACTIONS(108), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(110), 34, - anon_sym_STAR, - aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [35568] = 13, + [34257] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -76066,30 +74046,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(542), 1, - sym__comparison_operator, - STATE(543), 1, - sym__multiplicative_operator, - STATE(552), 1, + STATE(338), 1, sym__logical_operator, - STATE(553), 1, + STATE(469), 1, sym__additive_operator, - ACTIONS(227), 2, + STATE(470), 1, + sym__multiplicative_operator, + STATE(471), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(239), 2, + ACTIONS(305), 2, anon_sym_LT, anon_sym_GT, - STATE(646), 2, + STATE(638), 2, sym_comment, sym_include, - ACTIONS(237), 30, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(303), 26, + sym__or_operator, + sym__and_operator, + sym__terminator, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76103,18 +74081,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [35640] = 15, + aux_sym_of_token1, + [34325] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -76125,43 +74101,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(357), 1, - sym__logical_operator, - STATE(362), 1, + STATE(346), 1, sym__comparison_operator, - STATE(400), 1, - sym__additive_operator, - STATE(417), 1, + STATE(348), 1, sym__multiplicative_operator, - ACTIONS(227), 2, + STATE(349), 1, + sym__additive_operator, + STATE(350), 1, + sym__logical_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(647), 2, + STATE(639), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(241), 11, - sym__terminator, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, + ACTIONS(197), 13, + sym__or_operator, + sym__and_operator, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, - aux_sym_of_token1, - ACTIONS(231), 13, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76175,7 +74146,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35716] = 15, + [34395] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -76186,31 +74157,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(542), 1, + STATE(346), 1, sym__comparison_operator, - STATE(543), 1, + STATE(348), 1, sym__multiplicative_operator, - STATE(552), 1, - sym__logical_operator, - STATE(553), 1, + STATE(349), 1, sym__additive_operator, - ACTIONS(227), 2, + STATE(350), 1, + sym__logical_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(648), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(640), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(233), 11, + ACTIONS(293), 11, anon_sym_COMMA, anon_sym_COLON, aux_sym_on_error_phrase_token1, @@ -76222,7 +74189,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76236,7 +74203,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35792] = 15, + [34467] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -76247,31 +74214,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(542), 1, + STATE(346), 1, sym__comparison_operator, - STATE(543), 1, + STATE(348), 1, sym__multiplicative_operator, - STATE(552), 1, - sym__logical_operator, - STATE(553), 1, + STATE(349), 1, sym__additive_operator, - ACTIONS(227), 2, + STATE(350), 1, + sym__logical_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(649), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(641), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1260), 11, + ACTIONS(223), 11, anon_sym_COMMA, anon_sym_COLON, aux_sym_on_error_phrase_token1, @@ -76283,7 +74246,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76297,7 +74260,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35868] = 15, + [34539] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -76308,43 +74271,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(542), 1, + STATE(346), 1, sym__comparison_operator, - STATE(543), 1, + STATE(348), 1, sym__multiplicative_operator, - STATE(552), 1, - sym__logical_operator, - STATE(553), 1, + STATE(349), 1, sym__additive_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, + STATE(350), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_LT, anon_sym_GT, - STATE(650), 2, + STATE(642), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(235), 11, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - ACTIONS(231), 13, + ACTIONS(295), 28, + sym__or_operator, + sym__and_operator, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76358,42 +74303,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35944] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - STATE(542), 1, - sym__comparison_operator, - STATE(543), 1, - sym__multiplicative_operator, - STATE(552), 1, - sym__logical_operator, - STATE(553), 1, - sym__additive_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(651), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(223), 11, anon_sym_COMMA, anon_sym_COLON, aux_sym_on_error_phrase_token1, @@ -76405,7 +74314,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(231), 13, + [34605] = 7, + 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(643), 2, + sym_comment, + sym_include, + ACTIONS(109), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(111), 30, + sym__or_operator, + sym__and_operator, + 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, @@ -76415,11 +74348,22 @@ 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, - [36020] = 15, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [34661] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -76430,31 +74374,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - ACTIONS(227), 2, + STATE(471), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(652), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(644), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(223), 11, + ACTIONS(233), 11, sym__terminator, anon_sym_RPAREN, aux_sym_using_statement_token1, @@ -76466,7 +74406,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, aux_sym_of_token1, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76480,7 +74420,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [36096] = 12, + [34733] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -76491,31 +74431,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - ACTIONS(251), 2, + STATE(471), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(653), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(645), 2, sym_comment, sym_include, - ACTIONS(249), 32, + ACTIONS(237), 11, sym__terminator, anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - anon_sym_PLUS, - anon_sym_DASH, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76529,42 +74477,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - [36166] = 7, + [34805] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1264), 1, - sym__namedot, - STATE(654), 2, + ACTIONS(1261), 1, + anon_sym_NO_DASHERROR, + STATE(646), 2, sym_comment, sym_include, - ACTIONS(98), 5, + ACTIONS(171), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(100), 34, + ACTIONS(173), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -76591,38 +74526,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36226] = 10, + [34861] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(357), 1, - sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, - sym__additive_operator, - STATE(417), 1, - sym__multiplicative_operator, - STATE(655), 2, + ACTIONS(1263), 1, + anon_sym_NO_DASHERROR, + STATE(647), 2, sym_comment, sym_include, - ACTIONS(245), 3, + ACTIONS(453), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(247), 33, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(455), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - sym__terminator, - anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -76634,48 +74560,49 @@ 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_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - [36292] = 14, + 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, + [34917] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - STATE(357), 1, - sym__logical_operator, - STATE(362), 1, + STATE(346), 1, sym__comparison_operator, - STATE(400), 1, - sym__additive_operator, - STATE(417), 1, + STATE(348), 1, sym__multiplicative_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(656), 2, + STATE(349), 1, + sym__additive_operator, + STATE(350), 1, + sym__logical_operator, + STATE(648), 2, sym_comment, sym_include, - ACTIONS(231), 13, + ACTIONS(299), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(301), 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, @@ -76689,25 +74616,18 @@ 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), 17, - sym__terminator, - anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, - aux_sym_of_token1, - [36366] = 13, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [34979] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -76718,32 +74638,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - ACTIONS(227), 2, + STATE(471), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(239), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(657), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(649), 2, sym_comment, sym_include, - ACTIONS(237), 30, + ACTIONS(1257), 11, sym__terminator, anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76757,16 +74684,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - [36438] = 16, + [35051] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -76777,44 +74695,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1268), 1, - aux_sym_input_stream_tuning_token11, - STATE(472), 1, + STATE(346), 1, sym__comparison_operator, - STATE(509), 1, + STATE(348), 1, sym__multiplicative_operator, - STATE(536), 1, + STATE(349), 1, sym__additive_operator, - STATE(548), 1, + STATE(350), 1, sym__logical_operator, - ACTIONS(227), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(305), 2, anon_sym_LT, anon_sym_GT, - STATE(658), 2, + STATE(650), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1266), 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(231), 13, + ACTIONS(303), 26, + sym__or_operator, + sym__and_operator, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76828,7 +74728,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [36516] = 15, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [35119] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -76839,31 +74750,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - ACTIONS(227), 2, + STATE(471), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(659), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(651), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(233), 11, + ACTIONS(309), 11, sym__terminator, anon_sym_RPAREN, aux_sym_using_statement_token1, @@ -76875,7 +74782,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, aux_sym_of_token1, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76889,33 +74796,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [36592] = 7, + [35191] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1270), 1, - anon_sym_NO_DASHERROR, - STATE(660), 2, + ACTIONS(1183), 1, + anon_sym_LPAREN, + STATE(652), 2, sym_comment, sym_include, - ACTIONS(257), 5, + ACTIONS(75), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(259), 34, + ACTIONS(77), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -76942,7 +74845,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36652] = 15, + [35247] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -76953,31 +74856,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - ACTIONS(227), 2, + STATE(471), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(661), 2, + STATE(653), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(253), 11, + ACTIONS(197), 13, + sym__or_operator, + sym__and_operator, sym__terminator, anon_sym_RPAREN, aux_sym_using_statement_token1, @@ -76989,7 +74887,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, aux_sym_of_token1, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -77003,34 +74901,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [36728] = 6, + [35317] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(662), 2, - sym_comment, - sym_include, - ACTIONS(71), 5, + ACTIONS(219), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(73), 35, - sym__namedot, + ACTIONS(221), 1, anon_sym_STAR, - aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + STATE(338), 1, + sym__logical_operator, + STATE(469), 1, + sym__additive_operator, + STATE(470), 1, + sym__multiplicative_operator, + STATE(471), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(654), 2, + sym_comment, + sym_include, + ACTIONS(235), 11, + sym__terminator, + anon_sym_RPAREN, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -77040,22 +74954,11 @@ 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, - [36786] = 15, + [35389] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -77066,31 +74969,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(357), 1, + STATE(338), 1, sym__logical_operator, - STATE(362), 1, - sym__comparison_operator, - STATE(400), 1, + STATE(469), 1, sym__additive_operator, - STATE(417), 1, + STATE(470), 1, sym__multiplicative_operator, - ACTIONS(227), 2, + STATE(471), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(663), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(655), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(243), 11, + ACTIONS(293), 11, sym__terminator, anon_sym_RPAREN, aux_sym_using_statement_token1, @@ -77102,7 +75001,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, aux_sym_of_token1, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -77116,7 +75015,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [36862] = 15, + [35461] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1183), 1, + anon_sym_LPAREN, + STATE(656), 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, + [35517] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -77127,31 +75075,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(542), 1, + STATE(346), 1, sym__comparison_operator, - STATE(543), 1, + STATE(348), 1, sym__multiplicative_operator, - STATE(552), 1, - sym__logical_operator, - STATE(553), 1, + STATE(349), 1, sym__additive_operator, - ACTIONS(227), 2, + STATE(350), 1, + sym__logical_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(664), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(657), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(253), 11, + ACTIONS(309), 11, anon_sym_COMMA, anon_sym_COLON, aux_sym_on_error_phrase_token1, @@ -77163,10 +75107,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(231), 13, + ACTIONS(229), 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, + [35589] = 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(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1271), 1, + aux_sym_widget_field_token1, + STATE(474), 1, + sym__comparison_operator, + STATE(488), 1, + sym__multiplicative_operator, + STATE(489), 1, + sym__additive_operator, + STATE(490), 1, + sym__logical_operator, + STATE(1281), 1, + sym_do_block, + STATE(2124), 1, + aux_sym_on_statement_repeat1, + STATE(2448), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4133), 1, + sym_label, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(658), 2, + sym_comment, + sym_include, + ACTIONS(227), 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, @@ -77177,31 +75184,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [36938] = 6, + [35674] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(665), 2, + STATE(659), 2, sym_comment, sym_include, - ACTIONS(86), 5, + ACTIONS(139), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(88), 34, + ACTIONS(141), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -77228,31 +75231,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36995] = 6, + [35727] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(666), 2, + STATE(660), 2, sym_comment, sym_include, - ACTIONS(163), 5, + ACTIONS(75), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(165), 34, + ACTIONS(77), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -77279,14 +75278,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37052] = 6, + [35780] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(667), 2, + STATE(661), 2, sym_comment, sym_include, ACTIONS(159), 5, @@ -77295,15 +75294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(161), 34, + ACTIONS(161), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -77330,31 +75325,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37109] = 6, + [35833] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(668), 2, + STATE(662), 2, sym_comment, sym_include, - ACTIONS(167), 5, + ACTIONS(63), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(169), 34, + ACTIONS(67), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -77381,31 +75372,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37166] = 6, + [35886] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(669), 2, + STATE(663), 2, + sym_comment, + sym_include, + ACTIONS(195), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(197), 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, + [35939] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(664), 2, sym_comment, sym_include, - ACTIONS(82), 5, + ACTIONS(135), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(84), 34, + ACTIONS(137), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -77432,58 +75466,164 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37223] = 22, + [35992] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(729), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - ACTIONS(1276), 1, + ACTIONS(1269), 1, anon_sym_COMMA, - ACTIONS(1278), 1, + ACTIONS(1273), 1, aux_sym_widget_field_token1, - STATE(541), 1, + STATE(474), 1, sym__comparison_operator, - STATE(544), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(545), 1, + STATE(489), 1, sym__additive_operator, - STATE(546), 1, + STATE(490), 1, sym__logical_operator, - STATE(1234), 1, + STATE(2180), 1, + aux_sym_on_statement_repeat1, + STATE(2458), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(3245), 1, sym_do_block, - STATE(2151), 1, + STATE(4280), 1, + sym_label, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(665), 2, + sym_comment, + sym_include, + ACTIONS(227), 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, + [36077] = 6, + 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(171), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(173), 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, + [36130] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1275), 1, + aux_sym_widget_field_token1, + STATE(474), 1, + sym__comparison_operator, + STATE(488), 1, + sym__multiplicative_operator, + STATE(489), 1, + sym__additive_operator, + STATE(490), 1, + sym__logical_operator, + STATE(2145), 1, aux_sym_on_statement_repeat1, - STATE(2467), 1, + STATE(2408), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3122), 1, + sym_do_block, + STATE(3215), 1, sym_widget_phrase, - STATE(4079), 1, + STATE(4280), 1, sym_label, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(670), 2, + STATE(667), 2, sym_comment, sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -77499,7 +75639,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [37312] = 22, + [36215] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(668), 2, + sym_comment, + sym_include, + ACTIONS(1277), 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(229), 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, + [36286] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -77508,49 +75704,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - ACTIONS(1276), 1, + ACTIONS(1269), 1, anon_sym_COMMA, - ACTIONS(1280), 1, + ACTIONS(1279), 1, aux_sym_widget_field_token1, - STATE(541), 1, + STATE(474), 1, sym__comparison_operator, - STATE(544), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(545), 1, + STATE(489), 1, sym__additive_operator, - STATE(546), 1, + STATE(490), 1, sym__logical_operator, - STATE(1361), 1, + STATE(1386), 1, sym_do_block, - STATE(2125), 1, + STATE(2149), 1, aux_sym_on_statement_repeat1, - STATE(2482), 1, + STATE(2389), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4507), 1, + STATE(4133), 1, sym_label, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(671), 2, + STATE(669), 2, sym_comment, sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -77566,31 +75758,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [37401] = 6, + [36371] = 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(670), 2, sym_comment, sym_include, - ACTIONS(187), 5, + ACTIONS(183), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(189), 34, + ACTIONS(185), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -77617,82 +75805,146 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37458] = 6, + [36424] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(673), 2, - sym_comment, - sym_include, - ACTIONS(199), 5, + ACTIONS(219), 1, anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(671), 2, + sym_comment, + sym_include, + ACTIONS(1281), 10, + sym__terminator, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_input_stream_tuning_token9, + ACTIONS(229), 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_variable_definition_token2, - ACTIONS(201), 34, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [36495] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(872), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1283), 1, + aux_sym_widget_field_token1, + STATE(474), 1, + sym__comparison_operator, + STATE(488), 1, + sym__multiplicative_operator, + STATE(489), 1, + sym__additive_operator, + STATE(490), 1, + sym__logical_operator, + STATE(1025), 1, + sym_do_block, + STATE(2157), 1, + aux_sym_on_statement_repeat1, + STATE(2418), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4077), 1, + sym_label, + ACTIONS(219), 2, + anon_sym_SLASH, anon_sym_STAR, - aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(672), 2, + sym_comment, + sym_include, + ACTIONS(227), 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, - [37515] = 6, + [36580] = 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(673), 2, sym_comment, sym_include, - ACTIONS(98), 5, + ACTIONS(127), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(100), 34, + ACTIONS(129), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -77719,7 +75971,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37572] = 6, + [36633] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1285), 1, + sym__namecolon, + ACTIONS(98), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + STATE(674), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(100), 30, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + anon_sym_LPAREN, + 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_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [36688] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -77729,21 +76029,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(675), 2, sym_comment, sym_include, - ACTIONS(155), 5, + ACTIONS(215), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(157), 34, + ACTIONS(217), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -77770,7 +76066,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37629] = 6, + [36741] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -77780,21 +76076,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(676), 2, sym_comment, sym_include, - ACTIONS(195), 5, + ACTIONS(191), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(197), 34, + ACTIONS(193), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -77821,7 +76113,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37686] = 6, + [36794] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -77831,21 +76123,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(677), 2, sym_comment, sym_include, - ACTIONS(203), 5, + ACTIONS(179), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(205), 34, + ACTIONS(181), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -77872,7 +76160,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37743] = 6, + [36847] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -77882,21 +76170,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(678), 2, sym_comment, sym_include, - ACTIONS(211), 5, + ACTIONS(155), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(213), 34, + ACTIONS(157), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -77923,7 +76207,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37800] = 6, + [36900] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -77933,21 +76217,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(679), 2, sym_comment, sym_include, - ACTIONS(207), 5, + ACTIONS(87), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(209), 34, + ACTIONS(89), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -77974,7 +76254,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37857] = 6, + [36953] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -77984,21 +76264,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(680), 2, sym_comment, sym_include, - ACTIONS(139), 5, + ACTIONS(175), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(141), 34, + ACTIONS(177), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -78025,7 +76301,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37914] = 6, + [37006] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -78035,21 +76311,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(681), 2, sym_comment, sym_include, - ACTIONS(135), 5, + ACTIONS(167), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(137), 34, + ACTIONS(169), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -78076,7 +76348,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37971] = 6, + [37059] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -78086,21 +76358,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(682), 2, sym_comment, sym_include, - ACTIONS(143), 5, + ACTIONS(187), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(145), 34, + ACTIONS(189), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -78127,109 +76395,117 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38028] = 6, - ACTIONS(59), 1, + [37112] = 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(683), 2, - sym_comment, - sym_include, - ACTIONS(171), 5, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1288), 1, + aux_sym_widget_field_token1, + STATE(474), 1, + sym__comparison_operator, + STATE(488), 1, + sym__multiplicative_operator, + STATE(489), 1, + sym__additive_operator, + STATE(490), 1, + sym__logical_operator, + STATE(1153), 1, + sym_do_block, + STATE(2171), 1, + aux_sym_on_statement_repeat1, + STATE(2476), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4133), 1, + sym_label, + ACTIONS(219), 2, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(173), 34, anon_sym_STAR, - aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(683), 2, + sym_comment, + sym_include, + ACTIONS(227), 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, - [38085] = 22, + [37197] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(888), 1, + ACTIONS(273), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - ACTIONS(1276), 1, + ACTIONS(1269), 1, anon_sym_COMMA, - ACTIONS(1282), 1, + ACTIONS(1290), 1, aux_sym_widget_field_token1, - STATE(541), 1, + STATE(474), 1, sym__comparison_operator, - STATE(544), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(545), 1, + STATE(489), 1, sym__additive_operator, - STATE(546), 1, + STATE(490), 1, sym__logical_operator, - STATE(1047), 1, + STATE(1502), 1, sym_do_block, - STATE(2197), 1, + STATE(2176), 1, aux_sym_on_statement_repeat1, - STATE(2470), 1, + STATE(2431), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4155), 1, + STATE(4405), 1, sym_label, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, STATE(684), 2, sym_comment, sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -78245,7 +76521,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [38174] = 6, + [37282] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -78255,21 +76531,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(685), 2, sym_comment, sym_include, - ACTIONS(108), 5, + ACTIONS(83), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(110), 34, + ACTIONS(85), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -78296,7 +76568,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38231] = 6, + [37335] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -78306,21 +76578,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(686), 2, sym_comment, sym_include, - ACTIONS(183), 5, + ACTIONS(211), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(185), 34, + ACTIONS(213), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -78347,91 +76615,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38288] = 15, + [37388] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, STATE(687), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1266), 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(231), 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, - [38363] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(688), 2, - sym_comment, - sym_include, - ACTIONS(78), 5, + ACTIONS(207), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(80), 34, + ACTIONS(209), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -78458,58 +76662,126 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38420] = 6, - ACTIONS(59), 1, + [37441] = 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(689), 2, - sym_comment, - sym_include, - ACTIONS(215), 5, + ACTIONS(273), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1292), 1, + aux_sym_widget_field_token1, + STATE(474), 1, + sym__comparison_operator, + STATE(488), 1, + sym__multiplicative_operator, + STATE(489), 1, + sym__additive_operator, + STATE(490), 1, + sym__logical_operator, + STATE(1210), 1, + sym_do_block, + STATE(2131), 1, + aux_sym_on_statement_repeat1, + STATE(2385), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4405), 1, + sym_label, + ACTIONS(219), 2, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(217), 34, anon_sym_STAR, - aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(688), 2, + sym_comment, + sym_include, + ACTIONS(227), 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, - [38477] = 6, + [37526] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(689), 2, + sym_comment, + sym_include, + ACTIONS(1253), 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(229), 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, + [37597] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -78519,21 +76791,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(690), 2, sym_comment, sym_include, - ACTIONS(179), 5, + ACTIONS(119), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(181), 34, + ACTIONS(121), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -78560,74 +76828,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38534] = 22, - ACTIONS(3), 1, + [37650] = 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(749), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(1284), 1, - aux_sym_widget_field_token1, - STATE(541), 1, - sym__comparison_operator, - STATE(544), 1, - sym__multiplicative_operator, - STATE(545), 1, - sym__additive_operator, - STATE(546), 1, - sym__logical_operator, - STATE(1255), 1, - sym_do_block, - STATE(2133), 1, - aux_sym_on_statement_repeat1, - STATE(2415), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4079), 1, - sym_label, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, STATE(691), 2, sym_comment, sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(203), 5, + anon_sym_SLASH, anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(205), 30, + sym__or_operator, + sym__and_operator, + 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, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [38623] = 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, + [37703] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -78637,21 +76885,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(692), 2, sym_comment, sym_include, - ACTIONS(127), 5, + ACTIONS(163), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(129), 34, + ACTIONS(165), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -78678,58 +76922,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38680] = 22, + [37756] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(872), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - ACTIONS(1276), 1, + ACTIONS(1269), 1, anon_sym_COMMA, - ACTIONS(1286), 1, + ACTIONS(1294), 1, aux_sym_widget_field_token1, - STATE(541), 1, + STATE(474), 1, sym__comparison_operator, - STATE(544), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(545), 1, + STATE(489), 1, sym__additive_operator, - STATE(546), 1, + STATE(490), 1, sym__logical_operator, - STATE(1279), 1, + STATE(1050), 1, sym_do_block, - STATE(2178), 1, + STATE(2163), 1, aux_sym_on_statement_repeat1, - STATE(2383), 1, + STATE(2438), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4079), 1, + STATE(4077), 1, sym_label, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, STATE(693), 2, sym_comment, sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -78745,133 +76985,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [38769] = 6, - ACTIONS(59), 1, + [37841] = 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(694), 2, - sym_comment, - sym_include, - ACTIONS(147), 5, + ACTIONS(273), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1296), 1, + aux_sym_widget_field_token1, + STATE(474), 1, + sym__comparison_operator, + STATE(488), 1, + sym__multiplicative_operator, + STATE(489), 1, + sym__additive_operator, + STATE(490), 1, + sym__logical_operator, + STATE(1138), 1, + sym_do_block, + STATE(2130), 1, + aux_sym_on_statement_repeat1, + STATE(2467), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4405), 1, + sym_label, + ACTIONS(219), 2, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(149), 34, anon_sym_STAR, - aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [38826] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(695), 2, + STATE(694), 2, sym_comment, sym_include, - ACTIONS(90), 5, - anon_sym_SLASH, + ACTIONS(227), 15, anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(92), 34, - anon_sym_STAR, - aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, 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, - [38883] = 6, + [37926] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(696), 2, + STATE(695), 2, sym_comment, sym_include, - ACTIONS(104), 5, + ACTIONS(199), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(106), 34, + ACTIONS(201), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -78898,58 +77095,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38940] = 22, + [37979] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(888), 1, + ACTIONS(872), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - ACTIONS(1276), 1, + ACTIONS(1269), 1, anon_sym_COMMA, - ACTIONS(1288), 1, + ACTIONS(1298), 1, aux_sym_widget_field_token1, - STATE(541), 1, + STATE(474), 1, sym__comparison_operator, - STATE(544), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(545), 1, + STATE(489), 1, sym__additive_operator, - STATE(546), 1, + STATE(490), 1, sym__logical_operator, - STATE(1070), 1, + STATE(1020), 1, sym_do_block, - STATE(2180), 1, + STATE(2174), 1, aux_sym_on_statement_repeat1, - STATE(2443), 1, + STATE(2462), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4155), 1, + STATE(4077), 1, sym_label, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(697), 2, + STATE(696), 2, sym_comment, sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -78965,14 +77158,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [39029] = 6, + [38064] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(698), 2, + STATE(697), 2, sym_comment, sym_include, ACTIONS(151), 5, @@ -78981,15 +77174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(153), 34, + ACTIONS(153), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -79016,91 +77205,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [39086] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(699), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1290), 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(231), 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, - [39161] = 6, + [38117] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(700), 2, + STATE(698), 2, sym_comment, sym_include, - ACTIONS(175), 5, + ACTIONS(147), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(177), 34, + ACTIONS(149), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -79127,31 +77252,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [39218] = 6, + [38170] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(701), 2, + STATE(699), 2, sym_comment, sym_include, - ACTIONS(94), 5, + ACTIONS(123), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(96), 34, + ACTIONS(125), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -79178,58 +77299,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [39275] = 22, + [38223] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(297), 1, + ACTIONS(834), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - ACTIONS(1276), 1, + ACTIONS(1269), 1, anon_sym_COMMA, - ACTIONS(1292), 1, + ACTIONS(1300), 1, aux_sym_widget_field_token1, - STATE(541), 1, + STATE(474), 1, sym__comparison_operator, - STATE(544), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(545), 1, + STATE(489), 1, sym__additive_operator, - STATE(546), 1, + STATE(490), 1, sym__logical_operator, - STATE(1582), 1, + STATE(922), 1, sym_do_block, - STATE(2181), 1, + STATE(2116), 1, aux_sym_on_statement_repeat1, - STATE(2454), 1, + STATE(2443), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4370), 1, + STATE(4197), 1, sym_label, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(702), 2, + STATE(700), 2, sym_comment, sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -79245,58 +77362,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [39364] = 22, + [38308] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(888), 1, + ACTIONS(834), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - ACTIONS(1276), 1, + ACTIONS(1269), 1, anon_sym_COMMA, - ACTIONS(1294), 1, + ACTIONS(1302), 1, aux_sym_widget_field_token1, - STATE(541), 1, + STATE(474), 1, sym__comparison_operator, - STATE(544), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(545), 1, + STATE(489), 1, sym__additive_operator, - STATE(546), 1, + STATE(490), 1, sym__logical_operator, - STATE(1091), 1, + STATE(906), 1, sym_do_block, - STATE(2127), 1, + STATE(2134), 1, aux_sym_on_statement_repeat1, - STATE(2411), 1, + STATE(2468), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4155), 1, + STATE(4197), 1, sym_label, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(703), 2, + STATE(701), 2, sym_comment, sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -79312,125 +77425,195 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [39453] = 22, - ACTIONS(3), 1, + [38393] = 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(789), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(1296), 1, - aux_sym_widget_field_token1, - STATE(541), 1, - sym__comparison_operator, - STATE(544), 1, - sym__multiplicative_operator, - STATE(545), 1, - sym__additive_operator, - STATE(546), 1, - sym__logical_operator, - STATE(2136), 1, - aux_sym_on_statement_repeat1, - STATE(2464), 1, - aux_sym_on_statement_repeat2, - STATE(3349), 1, - sym_do_block, - STATE(3481), 1, - sym_widget_phrase, - STATE(4282), 1, - sym_label, - ACTIONS(219), 2, + STATE(702), 2, + sym_comment, + sym_include, + ACTIONS(143), 5, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(145), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - ACTIONS(705), 2, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, - STATE(704), 2, + 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, + [38446] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(703), 2, sym_comment, sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(131), 5, + anon_sym_SLASH, anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(133), 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, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, 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, + [38499] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(704), 2, + sym_comment, + sym_include, + ACTIONS(109), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(111), 30, + sym__or_operator, + sym__and_operator, + 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, - [39542] = 22, + 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, + [38552] = 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(834), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - ACTIONS(1276), 1, + ACTIONS(1269), 1, anon_sym_COMMA, - ACTIONS(1298), 1, + ACTIONS(1304), 1, aux_sym_widget_field_token1, - STATE(541), 1, + STATE(474), 1, sym__comparison_operator, - STATE(544), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(545), 1, + STATE(489), 1, sym__additive_operator, - STATE(546), 1, + STATE(490), 1, sym__logical_operator, - STATE(2191), 1, + STATE(890), 1, + sym_do_block, + STATE(2136), 1, aux_sym_on_statement_repeat1, - STATE(2509), 1, + STATE(2494), 1, aux_sym_on_statement_repeat2, - STATE(3371), 1, - sym_do_block, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4282), 1, + STATE(4197), 1, sym_label, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, STATE(705), 2, sym_comment, sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -79446,58 +77629,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [39631] = 22, + [38637] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(297), 1, + ACTIONS(729), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - ACTIONS(1276), 1, + ACTIONS(1269), 1, anon_sym_COMMA, - ACTIONS(1300), 1, + ACTIONS(1306), 1, aux_sym_widget_field_token1, - STATE(541), 1, + STATE(474), 1, sym__comparison_operator, - STATE(544), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(545), 1, + STATE(489), 1, sym__additive_operator, - STATE(546), 1, + STATE(490), 1, sym__logical_operator, - STATE(1591), 1, - sym_do_block, - STATE(2199), 1, + STATE(2182), 1, aux_sym_on_statement_repeat1, - STATE(2510), 1, + STATE(2489), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4370), 1, + STATE(3365), 1, + sym_do_block, + STATE(4280), 1, sym_label, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, STATE(706), 2, sym_comment, sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -79513,33 +77692,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [39720] = 8, + [38722] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, + ACTIONS(1243), 1, sym__namecolon, - STATE(712), 1, + STATE(674), 1, aux_sym_object_access_repeat1, STATE(707), 2, sym_comment, sym_include, - ACTIONS(116), 3, + ACTIONS(105), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(118), 34, + ACTIONS(107), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -79566,238 +77741,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [39781] = 6, - ACTIONS(59), 1, + [38779] = 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(397), 1, + sym__namedot, + STATE(714), 1, + aux_sym_qualified_name_repeat1, STATE(708), 2, sym_comment, sym_include, - ACTIONS(191), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(193), 34, - anon_sym_STAR, - aux_sym__block_terminator_token1, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [39838] = 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(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(1302), 1, - aux_sym_widget_field_token1, - STATE(541), 1, - sym__comparison_operator, - STATE(544), 1, - sym__multiplicative_operator, - STATE(545), 1, - sym__additive_operator, - STATE(546), 1, - sym__logical_operator, - STATE(2115), 1, - aux_sym_on_statement_repeat1, - STATE(2372), 1, - aux_sym_on_statement_repeat2, - STATE(3390), 1, - sym_do_block, - STATE(3481), 1, - sym_widget_phrase, - STATE(4282), 1, - sym_label, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(709), 2, - sym_comment, - sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 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, - [39927] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(79), 33, anon_sym_LBRACE, - ACTIONS(43), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(1304), 1, - aux_sym_widget_field_token1, - STATE(541), 1, - sym__comparison_operator, - STATE(544), 1, - sym__multiplicative_operator, - STATE(545), 1, - sym__additive_operator, - STATE(546), 1, - sym__logical_operator, - STATE(1494), 1, - sym_do_block, - STATE(2121), 1, - aux_sym_on_statement_repeat1, - STATE(2447), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4507), 1, - sym_label, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(710), 2, - sym_comment, - sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 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, - [40016] = 15, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + sym__integer_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_can_find_expression_token1, + aux_sym_of_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [38831] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(219), 1, + ACTIONS(1241), 1, + sym__namedot, + STATE(711), 1, + aux_sym_qualified_name_repeat1, + STATE(709), 2, + sym_comment, + sym_include, + ACTIONS(83), 3, anon_sym_SLASH, - ACTIONS(221), 1, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(711), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1306), 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(231), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -79811,7 +77824,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [40091] = 7, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [38887] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -79819,24 +77843,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(65), 1, anon_sym_LBRACE, ACTIONS(1308), 1, - sym__namecolon, - ACTIONS(120), 3, + sym__namedot, + ACTIONS(91), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - STATE(712), 3, + STATE(710), 3, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(122), 34, + aux_sym_qualified_name_repeat1, + ACTIONS(93), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -79863,130 +77882,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40150] = 22, - ACTIONS(3), 1, + [38941] = 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(297), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(1311), 1, - aux_sym_widget_field_token1, - STATE(541), 1, - sym__comparison_operator, - STATE(544), 1, - sym__multiplicative_operator, - STATE(545), 1, - sym__additive_operator, - STATE(546), 1, - sym__logical_operator, - STATE(1507), 1, - sym_do_block, - STATE(2134), 1, - aux_sym_on_statement_repeat1, - STATE(2491), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4370), 1, - sym_label, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(713), 2, + ACTIONS(1241), 1, + sym__namedot, + STATE(710), 1, + aux_sym_qualified_name_repeat1, + STATE(711), 2, sym_comment, sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(79), 3, + anon_sym_SLASH, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [40239] = 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(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(1313), 1, - aux_sym_widget_field_token1, - STATE(541), 1, - sym__comparison_operator, - STATE(544), 1, - sym__multiplicative_operator, - STATE(545), 1, - sym__additive_operator, - STATE(546), 1, - sym__logical_operator, - STATE(1285), 1, - sym_do_block, - STATE(2201), 1, - aux_sym_on_statement_repeat1, - STATE(2376), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4507), 1, - sym_label, - ACTIONS(219), 2, - anon_sym_SLASH, + ACTIONS(81), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - ACTIONS(705), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(714), 2, - sym_comment, - sym_include, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 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, @@ -79997,32 +77919,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [40328] = 8, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [38997] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(715), 2, + STATE(712), 2, sym_comment, sym_include, - ACTIONS(207), 3, + ACTIONS(115), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(209), 33, + ACTIONS(117), 31, + sym__namecolon, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80049,30 +77976,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40388] = 6, + [39049] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(716), 2, + ACTIONS(1241), 1, + sym__namedot, + STATE(711), 1, + aux_sym_qualified_name_repeat1, + STATE(713), 2, sym_comment, sym_include, - ACTIONS(131), 3, + ACTIONS(87), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(133), 35, - sym__namecolon, + ACTIONS(89), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80099,7 +78024,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40444] = 15, + [39105] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1311), 1, + sym__namedot, + STATE(714), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(91), 33, + anon_sym_LBRACE, + sym_identifier, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + sym__integer_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_can_find_expression_token1, + aux_sym_of_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [39155] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -80110,31 +78080,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, + STATE(453), 1, sym__logical_operator, - ACTIONS(227), 2, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(717), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(715), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1315), 9, + ACTIONS(1314), 9, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, @@ -80144,7 +78110,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_property_tuning_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -80158,32 +78124,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [40518] = 8, + [39225] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(718), 2, + ACTIONS(1239), 1, + anon_sym_LPAREN, + STATE(716), 2, sym_comment, sym_include, - ACTIONS(159), 3, + ACTIONS(75), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(161), 33, + ACTIONS(77), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80210,30 +78170,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40578] = 7, + [39278] = 29, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1235), 1, + ACTIONS(1318), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1326), 1, + aux_sym_variable_definition_token3, + ACTIONS(1328), 1, + aux_sym_variable_definition_token4, + ACTIONS(1330), 1, + aux_sym_buffer_definition_token1, + ACTIONS(1332), 1, + aux_sym_buffer_definition_token3, + ACTIONS(1334), 1, + aux_sym_query_definition_token1, + ACTIONS(1336), 1, + aux_sym_function_parameter_token1, + ACTIONS(1340), 1, + aux_sym_property_tuning_token1, + ACTIONS(1342), 1, + aux_sym_property_definition_token1, + ACTIONS(1344), 1, + aux_sym_event_definition_token1, + ACTIONS(1346), 1, + aux_sym_data_source_definition_token1, + STATE(773), 1, + sym_access_tuning, + STATE(1799), 1, + sym_scope_tuning, + STATE(1818), 1, + aux_sym_variable_definition_repeat1, + STATE(1857), 1, + sym_property_tuning, + STATE(1920), 1, + sym_serialization_tuning, + STATE(1938), 1, + aux_sym_buffer_definition_repeat1, + STATE(2343), 1, + aux_sym_property_definition_repeat1, + STATE(2406), 1, + aux_sym_property_definition_repeat2, + STATE(2698), 1, + sym_property_type, + ACTIONS(1316), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + ACTIONS(1324), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(1338), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(717), 2, + sym_comment, + sym_include, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [39375] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1239), 1, anon_sym_LPAREN, - STATE(719), 2, + STATE(718), 2, sym_comment, sym_include, - ACTIONS(127), 3, + ACTIONS(63), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(129), 33, + ACTIONS(67), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80260,30 +78284,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40635] = 7, + [39428] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1235), 1, - anon_sym_LPAREN, - STATE(720), 2, + ACTIONS(1348), 1, + anon_sym_NO_DASHERROR, + STATE(719), 2, sym_comment, sym_include, - ACTIONS(108), 3, + ACTIONS(171), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(110), 33, + ACTIONS(173), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + sym__terminator, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80299,41 +78321,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [40692] = 7, + aux_sym_of_token1, + [39481] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1317), 1, - sym__namedot, - STATE(721), 2, + ACTIONS(1350), 1, + anon_sym_NO_DASHERROR, + STATE(720), 2, sym_comment, sym_include, - ACTIONS(98), 3, + ACTIONS(453), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(100), 33, + ACTIONS(455), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + sym__terminator, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80349,43 +78367,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_COMMA, - 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_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [40749] = 7, + aux_sym_of_token1, + [39534] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1319), 1, - anon_sym_NO_DASHERROR, - STATE(722), 2, + STATE(721), 2, sym_comment, sym_include, - ACTIONS(257), 3, + ACTIONS(91), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(259), 33, + ACTIONS(93), 30, + sym__namedot, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - sym__terminator, - anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80401,6 +78410,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [39585] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(93), 1, + sym__namedot, + STATE(722), 2, + sym_comment, + sym_include, + ACTIONS(91), 33, + anon_sym_LBRACE, + sym_identifier, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + sym__integer_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, aux_sym_using_statement_token1, aux_sym_where_clause_token1, aux_sym_query_tuning_token1, @@ -80409,33 +78460,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, + aux_sym_can_find_expression_token1, aux_sym_of_token1, - [40806] = 7, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [39634] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1321), 1, + ACTIONS(1352), 1, anon_sym_NO_DASHERROR, STATE(723), 2, sym_comment, sym_include, - ACTIONS(147), 3, + ACTIONS(453), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(149), 33, + ACTIONS(455), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - sym__terminator, - anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80451,39 +78500,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_using_statement_token1, - aux_sym_where_clause_token1, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, - aux_sym_of_token1, - [40863] = 7, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [39687] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1354), 1, anon_sym_NO_DASHERROR, STATE(724), 2, sym_comment, sym_include, - ACTIONS(147), 3, + ACTIONS(171), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(149), 33, + ACTIONS(173), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80510,30 +78557,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40920] = 7, + [39740] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1325), 1, - anon_sym_NO_DASHERROR, + ACTIONS(1356), 1, + sym__namedot, STATE(725), 2, sym_comment, sym_include, - ACTIONS(257), 3, + ACTIONS(109), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(259), 33, + ACTIONS(111), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80560,7 +78603,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40977] = 6, + [39793] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -80570,18 +78613,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(726), 2, sym_comment, sym_include, - ACTIONS(86), 3, + ACTIONS(211), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(88), 33, + ACTIONS(213), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80608,7 +78647,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41031] = 6, + [39843] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -80618,18 +78657,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(727), 2, sym_comment, sym_include, - ACTIONS(163), 3, + ACTIONS(151), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(165), 33, + ACTIONS(153), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80656,50 +78691,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41085] = 15, + [39893] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(219), 1, + STATE(728), 2, + sym_comment, + sym_include, + ACTIONS(75), 3, anon_sym_SLASH, - ACTIONS(221), 1, + anon_sym_LT, + anon_sym_GT, + ACTIONS(77), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(728), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(1327), 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(231), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -80713,30 +78724,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [41157] = 6, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [39943] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(729), 2, - sym_comment, - sym_include, - ACTIONS(108), 3, + ACTIONS(219), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(110), 33, + ACTIONS(221), 1, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(729), 2, + sym_comment, + sym_include, + ACTIONS(1358), 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(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -80750,18 +78788,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [41211] = 6, + [40011] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -80771,18 +78798,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(730), 2, sym_comment, sym_include, - ACTIONS(159), 3, + ACTIONS(63), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(161), 33, + ACTIONS(67), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80809,7 +78832,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41265] = 6, + [40061] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -80819,18 +78842,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(731), 2, sym_comment, sym_include, - ACTIONS(151), 3, + ACTIONS(135), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(153), 33, + ACTIONS(137), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80857,7 +78876,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41319] = 6, + [40111] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -80867,18 +78886,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(732), 2, sym_comment, sym_include, - ACTIONS(147), 3, + ACTIONS(195), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(149), 33, + ACTIONS(197), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80905,7 +78920,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41373] = 6, + [40161] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -80915,18 +78930,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(733), 2, sym_comment, sym_include, - ACTIONS(135), 3, + ACTIONS(83), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(137), 33, + ACTIONS(85), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80953,7 +78964,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41427] = 6, + [40211] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -80963,18 +78974,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(734), 2, sym_comment, sym_include, - ACTIONS(139), 3, + ACTIONS(203), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(141), 33, + ACTIONS(205), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81001,7 +79008,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41481] = 6, + [40261] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -81011,18 +79018,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(735), 2, sym_comment, sym_include, - ACTIONS(143), 3, + ACTIONS(199), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(145), 33, + ACTIONS(201), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81049,7 +79052,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41535] = 6, + [40311] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -81059,18 +79062,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(736), 2, sym_comment, sym_include, - ACTIONS(98), 3, + ACTIONS(123), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(100), 33, + ACTIONS(125), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81097,7 +79096,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41589] = 6, + [40361] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -81107,18 +79106,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(737), 2, sym_comment, sym_include, - ACTIONS(82), 3, + ACTIONS(87), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(84), 33, + ACTIONS(89), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81145,7 +79140,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41643] = 6, + [40411] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -81155,18 +79150,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(738), 2, sym_comment, sym_include, - ACTIONS(167), 3, + ACTIONS(187), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(169), 33, + ACTIONS(189), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81193,7 +79184,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41697] = 6, + [40461] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -81203,18 +79194,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(739), 2, sym_comment, sym_include, - ACTIONS(211), 3, + ACTIONS(175), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(213), 33, + ACTIONS(177), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81241,7 +79228,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41751] = 6, + [40511] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -81251,18 +79238,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(740), 2, sym_comment, sym_include, - ACTIONS(90), 3, + ACTIONS(167), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(92), 33, + ACTIONS(169), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81289,7 +79272,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41805] = 6, + [40561] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -81299,18 +79282,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(741), 2, sym_comment, sym_include, - ACTIONS(127), 3, + ACTIONS(119), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(129), 33, + ACTIONS(121), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81337,7 +79316,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41859] = 6, + [40611] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -81347,18 +79326,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(742), 2, sym_comment, sym_include, - ACTIONS(215), 3, + ACTIONS(163), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(217), 33, + ACTIONS(165), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81385,7 +79360,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41913] = 6, + [40661] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -81399,14 +79374,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(209), 33, + ACTIONS(209), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81433,7 +79404,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41967] = 6, + [40711] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -81443,18 +79414,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(744), 2, sym_comment, sym_include, - ACTIONS(195), 3, + ACTIONS(147), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(197), 33, + ACTIONS(149), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81481,230 +79448,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [42021] = 11, + [40761] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(112), 1, - anon_sym_LPAREN, - ACTIONS(114), 1, - sym__namecolon, - ACTIONS(1329), 1, - sym__namedot, - STATE(14), 1, - aux_sym_object_access_repeat1, - STATE(813), 1, - aux_sym_qualified_name_repeat1, STATE(745), 2, sym_comment, sym_include, - ACTIONS(127), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(129), 28, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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_COLON, - aux_sym_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - [42085] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(112), 1, - anon_sym_LPAREN, - ACTIONS(114), 1, - sym__namecolon, - ACTIONS(1329), 1, - sym__namedot, - STATE(14), 1, - aux_sym_object_access_repeat1, - STATE(813), 1, - aux_sym_qualified_name_repeat1, - STATE(746), 2, - sym_comment, - sym_include, - ACTIONS(108), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(110), 28, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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_COLON, - aux_sym_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - [42149] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(747), 2, - sym_comment, - sym_include, - ACTIONS(104), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(106), 33, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [42203] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(748), 2, - sym_comment, - sym_include, - ACTIONS(78), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(80), 33, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [42257] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(749), 2, - sym_comment, - sym_include, - ACTIONS(183), 3, + ACTIONS(143), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(185), 33, + ACTIONS(145), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81731,28 +79492,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [42311] = 6, + [40811] = 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(746), 2, sym_comment, sym_include, - ACTIONS(203), 3, + ACTIONS(131), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(205), 33, + ACTIONS(133), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81779,28 +79536,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [42365] = 6, + [40861] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(751), 2, + STATE(747), 2, sym_comment, sym_include, - ACTIONS(94), 3, + ACTIONS(155), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(96), 33, + ACTIONS(157), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81827,28 +79580,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [42419] = 6, + [40911] = 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(748), 2, sym_comment, sym_include, ACTIONS(191), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(193), 33, + ACTIONS(193), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81875,28 +79624,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [42473] = 6, + [40961] = 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(749), 2, sym_comment, sym_include, ACTIONS(179), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(181), 33, + ACTIONS(181), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81923,28 +79668,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [42527] = 6, + [41011] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(754), 2, + STATE(750), 2, sym_comment, sym_include, - ACTIONS(175), 3, + ACTIONS(139), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(177), 33, + ACTIONS(141), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -81971,28 +79712,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [42581] = 6, + [41061] = 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(751), 2, sym_comment, sym_include, - ACTIONS(199), 3, + ACTIONS(215), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(201), 33, + ACTIONS(217), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -82019,28 +79756,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [42635] = 6, + [41111] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(756), 2, + STATE(752), 2, sym_comment, sym_include, - ACTIONS(187), 3, + ACTIONS(109), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(189), 33, + ACTIONS(111), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -82067,28 +79800,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [42689] = 6, + [41161] = 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(753), 2, sym_comment, sym_include, - ACTIONS(171), 3, + ACTIONS(127), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(173), 33, + ACTIONS(129), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -82115,28 +79844,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [42743] = 6, + [41211] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(758), 2, + STATE(754), 2, sym_comment, sym_include, - ACTIONS(155), 3, + ACTIONS(159), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(157), 33, + ACTIONS(161), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -82163,49 +79888,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [42797] = 15, + [41261] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(219), 1, + STATE(755), 2, + sym_comment, + sym_include, + ACTIONS(171), 3, anon_sym_SLASH, - ACTIONS(221), 1, + anon_sym_LT, + anon_sym_GT, + ACTIONS(173), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - STATE(437), 1, - sym__comparison_operator, - STATE(438), 1, - sym__multiplicative_operator, - STATE(439), 1, - sym__additive_operator, - STATE(440), 1, - sym__logical_operator, - ACTIONS(227), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(759), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(243), 6, - 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, - anon_sym_BY, - ACTIONS(231), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -82219,49 +79921,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [42868] = 15, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [41311] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(219), 1, + STATE(756), 2, + sym_comment, + sym_include, + ACTIONS(183), 3, anon_sym_SLASH, - ACTIONS(221), 1, + anon_sym_LT, + anon_sym_GT, + ACTIONS(185), 29, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - STATE(437), 1, - sym__comparison_operator, - STATE(438), 1, - sym__multiplicative_operator, - STATE(439), 1, - sym__additive_operator, - STATE(440), 1, - sym__logical_operator, - ACTIONS(227), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(760), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(233), 6, - 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, - anon_sym_BY, - ACTIONS(231), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -82275,36 +79965,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [42939] = 10, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [41361] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1331), 1, + ACTIONS(1360), 1, anon_sym_LPAREN, - ACTIONS(1333), 1, + ACTIONS(1362), 1, sym__namedot, - ACTIONS(1335), 1, + ACTIONS(1364), 1, sym__namecolon, - STATE(792), 1, + STATE(790), 1, aux_sym_object_access_repeat1, - STATE(818), 1, + STATE(813), 1, aux_sym_qualified_name_repeat1, - STATE(761), 2, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, + STATE(757), 2, sym_comment, sym_include, - ACTIONS(108), 30, + ACTIONS(75), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, @@ -82326,7 +80024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [43000] = 14, + [41420] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -82337,37 +80035,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(437), 1, - sym__comparison_operator, - STATE(438), 1, - sym__multiplicative_operator, - STATE(439), 1, - sym__additive_operator, - STATE(440), 1, + ACTIONS(1368), 1, + anon_sym_BY, + STATE(453), 1, sym__logical_operator, - ACTIONS(227), 2, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(762), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(758), 2, sym_comment, sym_include, - ACTIONS(217), 12, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(1366), 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, - anon_sym_BY, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -82381,52 +80077,93 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43069] = 15, - ACTIONS(59), 1, + [41489] = 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(219), 1, + ACTIONS(1360), 1, + anon_sym_LPAREN, + ACTIONS(1362), 1, + sym__namedot, + ACTIONS(1364), 1, + sym__namecolon, + STATE(790), 1, + aux_sym_object_access_repeat1, + STATE(813), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(759), 2, + sym_comment, + sym_include, + ACTIONS(63), 24, anon_sym_SLASH, - ACTIONS(221), 1, + sym_identifier, anon_sym_STAR, - STATE(437), 1, + 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, + [41548] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(474), 1, sym__comparison_operator, - STATE(438), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(439), 1, + STATE(489), 1, sym__additive_operator, - STATE(440), 1, + STATE(490), 1, sym__logical_operator, - ACTIONS(227), 2, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(763), 2, + STATE(760), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(241), 6, - 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, - anon_sym_BY, - ACTIONS(231), 13, + ACTIONS(1105), 5, + sym_identifier, + aux_sym_input_expression_token2, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(227), 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, @@ -82437,52 +80174,135 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43140] = 15, - ACTIONS(59), 1, + [41610] = 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(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - STATE(437), 1, + ACTIONS(1370), 1, + ts_builtin_sym_end, + ACTIONS(1374), 1, + aux_sym_else_if_statement_token1, + STATE(762), 1, + aux_sym_if_statement_repeat1, + STATE(761), 2, + sym_comment, + sym_include, + STATE(1051), 2, + sym_else_if_statement, + sym_else_statement, + ACTIONS(1372), 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, + [41664] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1374), 1, + aux_sym_else_if_statement_token1, + ACTIONS(1376), 1, + ts_builtin_sym_end, + STATE(776), 1, + aux_sym_if_statement_repeat1, + STATE(762), 2, + sym_comment, + sym_include, + STATE(1051), 2, + sym_else_if_statement, + sym_else_statement, + ACTIONS(1378), 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, + [41718] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(474), 1, sym__comparison_operator, - STATE(438), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(439), 1, + STATE(489), 1, sym__additive_operator, - STATE(440), 1, + STATE(490), 1, sym__logical_operator, - ACTIONS(227), 2, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(764), 2, + STATE(763), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(235), 6, - 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, - anon_sym_BY, - ACTIONS(231), 13, + ACTIONS(1099), 5, + sym_identifier, + aux_sym_input_expression_token2, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(227), 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, @@ -82493,52 +80313,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43211] = 15, - ACTIONS(59), 1, + [41780] = 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(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - STATE(437), 1, + STATE(474), 1, sym__comparison_operator, - STATE(438), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(439), 1, + STATE(489), 1, sym__additive_operator, - STATE(440), 1, + STATE(490), 1, sym__logical_operator, - ACTIONS(227), 2, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(303), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(765), 2, + STATE(764), 2, sym_comment, sym_include, - ACTIONS(223), 6, - 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, - anon_sym_BY, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(305), 20, + sym_identifier, + aux_sym_input_expression_token2, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -82549,36 +80358,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43282] = 10, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [41840] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - sym__namedot, - ACTIONS(1335), 1, - sym__namecolon, - STATE(792), 1, - aux_sym_object_access_repeat1, - STATE(818), 1, - aux_sym_qualified_name_repeat1, - STATE(766), 2, + STATE(474), 1, + sym__comparison_operator, + STATE(488), 1, + sym__multiplicative_operator, + STATE(489), 1, + sym__additive_operator, + STATE(490), 1, + sym__logical_operator, + ACTIONS(301), 2, + sym__or_operator, + sym__and_operator, + STATE(765), 2, sym_comment, sym_include, - ACTIONS(127), 30, + ACTIONS(299), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, @@ -82600,53 +80407,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [43343] = 16, - ACTIONS(59), 1, + [41896] = 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(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_BY, - STATE(437), 1, + ACTIONS(1380), 1, + aux_sym_else_if_statement_token1, + STATE(772), 1, + aux_sym_if_statement_repeat1, + STATE(766), 2, + sym_comment, + sym_include, + STATE(1027), 2, + sym_else_if_statement, + sym_else_statement, + ACTIONS(1372), 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, + [41948] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(474), 1, sym__comparison_operator, - STATE(438), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(439), 1, + STATE(489), 1, sym__additive_operator, - STATE(440), 1, + STATE(490), 1, sym__logical_operator, - ACTIONS(227), 2, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, STATE(767), 2, sym_comment, sym_include, - ACTIONS(1337), 5, - anon_sym_COLON, - aux_sym_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(1382), 5, + sym_identifier, + aux_sym_input_expression_token2, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(227), 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, @@ -82657,52 +80500,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43416] = 15, - ACTIONS(59), 1, + [42010] = 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(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - STATE(437), 1, + STATE(474), 1, sym__comparison_operator, - STATE(438), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(439), 1, + STATE(489), 1, sym__additive_operator, - STATE(440), 1, + STATE(490), 1, sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(295), 2, + sym__or_operator, + sym__and_operator, STATE(768), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(253), 6, - 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, - anon_sym_BY, - ACTIONS(231), 13, + ACTIONS(297), 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, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -82713,44 +80544,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43487] = 13, - ACTIONS(59), 1, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [42068] = 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(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - STATE(437), 1, + STATE(474), 1, sym__comparison_operator, - STATE(438), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(439), 1, + STATE(489), 1, sym__additive_operator, - STATE(440), 1, + STATE(490), 1, sym__logical_operator, - ACTIONS(227), 2, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(239), 2, - anon_sym_LT, - anon_sym_GT, STATE(769), 2, sym_comment, sym_include, - ACTIONS(237), 25, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(1109), 5, + sym_identifier, + aux_sym_input_expression_token2, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(227), 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, @@ -82761,47 +80596,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_COLON, - aux_sym_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - [43554] = 10, - ACTIONS(59), 1, + [42130] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(437), 1, - sym__comparison_operator, - STATE(438), 1, - sym__multiplicative_operator, - STATE(439), 1, - sym__additive_operator, - STATE(440), 1, - sym__logical_operator, + ACTIONS(1384), 1, + anon_sym_LPAREN, + ACTIONS(1386), 1, + sym__namedot, + ACTIONS(1388), 1, + sym__namecolon, + STATE(822), 1, + aux_sym_object_access_repeat1, + STATE(1044), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, STATE(770), 2, sym_comment, sym_include, - ACTIONS(245), 3, + ACTIONS(63), 24, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(247), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + 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, @@ -82812,13 +80641,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_COLON, - aux_sym_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - [43615] = 12, + aux_sym_include_argument_token1, + [42186] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -82829,29 +80653,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(437), 1, - sym__comparison_operator, - STATE(438), 1, - sym__multiplicative_operator, - STATE(439), 1, - sym__additive_operator, - STATE(440), 1, + STATE(453), 1, sym__logical_operator, - ACTIONS(251), 2, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, STATE(771), 2, sym_comment, sym_include, - ACTIONS(249), 27, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1211), 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(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -82865,252 +80693,187 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_COLON, - aux_sym_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - [43680] = 6, + [42252] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(403), 1, - sym__namedot, - STATE(777), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1380), 1, + aux_sym_else_if_statement_token1, + STATE(778), 1, + aux_sym_if_statement_repeat1, STATE(772), 2, sym_comment, sym_include, - ACTIONS(63), 33, - anon_sym_LBRACE, + STATE(1027), 2, + sym_else_if_statement, + sym_else_statement, + ACTIONS(1378), 26, 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__block_terminator_token1, aux_sym_input_expression_token1, - aux_sym_scope_tuning_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_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_can_find_expression_token1, - aux_sym_of_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [43732] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1341), 1, - anon_sym_LPAREN, - ACTIONS(1343), 1, - sym__namedot, - ACTIONS(1345), 1, - sym__namecolon, - STATE(817), 1, - aux_sym_object_access_repeat1, - STATE(846), 1, - aux_sym_qualified_name_repeat1, - STATE(773), 2, - sym_comment, - sym_include, - ACTIONS(127), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [43790] = 13, - ACTIONS(3), 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, + [42304] = 24, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(541), 1, - sym__comparison_operator, - STATE(544), 1, - sym__multiplicative_operator, - STATE(545), 1, - sym__additive_operator, - STATE(546), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(774), 2, + ACTIONS(1318), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1340), 1, + aux_sym_property_tuning_token1, + ACTIONS(1402), 1, + aux_sym_variable_definition_token4, + ACTIONS(1406), 1, + aux_sym_function_parameter_token1, + ACTIONS(1408), 1, + aux_sym_property_definition_token1, + ACTIONS(1410), 1, + aux_sym_event_definition_token1, + ACTIONS(1412), 1, + aux_sym_data_source_definition_token1, + STATE(1857), 1, + sym_property_tuning, + STATE(2352), 1, + aux_sym_property_definition_repeat1, + STATE(2363), 1, + aux_sym_property_definition_repeat2, + STATE(2698), 1, + sym_property_type, + STATE(4117), 1, + sym_serialization_tuning, + STATE(4126), 1, + sym_scope_tuning, + ACTIONS(1316), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + ACTIONS(1338), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + ACTIONS(1397), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(1400), 2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token3, + ACTIONS(1404), 2, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + STATE(773), 2, sym_comment, sym_include, - ACTIONS(1347), 5, - sym_identifier, - aux_sym_input_expression_token2, - anon_sym_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 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, - [43856] = 15, + ACTIONS(1394), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1390), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [42388] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(775), 2, + ACTIONS(109), 1, + aux_sym_variable_definition_token2, + ACTIONS(1414), 1, + sym__namedot, + STATE(774), 2, sym_comment, sym_include, - ACTIONS(1220), 5, + ACTIONS(111), 28, + sym__terminator, + aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + anon_sym_COLON, + aux_sym_while_phrase_token1, aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, aux_sym_event_definition_token1, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [43926] = 12, + 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, + [42438] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(541), 1, + STATE(474), 1, sym__comparison_operator, - STATE(544), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(545), 1, + STATE(489), 1, sym__additive_operator, - STATE(546), 1, + STATE(490), 1, sym__logical_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(776), 2, + STATE(775), 2, sym_comment, sym_include, - ACTIONS(215), 11, + ACTIONS(1113), 5, sym_identifier, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_input_expression_token2, anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83126,89 +80889,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43990] = 5, + [42500] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1349), 1, - sym__namedot, - STATE(777), 3, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1416), 1, + ts_builtin_sym_end, + ACTIONS(1420), 1, + aux_sym_else_if_statement_token1, + STATE(1051), 2, + sym_else_if_statement, + sym_else_statement, + STATE(776), 3, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(71), 33, - anon_sym_LBRACE, + aux_sym_if_statement_repeat1, + ACTIONS(1418), 25, 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_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_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_can_find_expression_token1, - aux_sym_of_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [44040] = 13, + 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, + [42552] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(541), 1, + STATE(474), 1, sym__comparison_operator, - STATE(544), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(545), 1, + STATE(489), 1, sym__additive_operator, - STATE(546), 1, + STATE(490), 1, sym__logical_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(778), 2, + STATE(777), 2, sym_comment, sym_include, - ACTIONS(721), 5, + ACTIONS(1111), 5, sym_identifier, aux_sym_input_expression_token2, anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83224,37 +80982,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44106] = 9, + [42614] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1423), 1, + aux_sym_else_if_statement_token1, + STATE(1027), 2, + sym_else_if_statement, + sym_else_statement, + STATE(778), 3, + sym_comment, + sym_include, + aux_sym_if_statement_repeat1, + ACTIONS(1418), 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, + [42664] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1341), 1, + ACTIONS(1384), 1, anon_sym_LPAREN, - ACTIONS(1343), 1, + ACTIONS(1386), 1, sym__namedot, - ACTIONS(1345), 1, + ACTIONS(1388), 1, sym__namecolon, - STATE(817), 1, + STATE(822), 1, aux_sym_object_access_repeat1, - STATE(846), 1, + STATE(1044), 1, aux_sym_qualified_name_repeat1, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, STATE(779), 2, sym_comment, sym_include, - ACTIONS(108), 30, + ACTIONS(75), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_STAR, anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -83273,44 +81071,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [44164] = 13, + [42720] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(541), 1, + STATE(474), 1, sym__comparison_operator, - STATE(544), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(545), 1, + STATE(489), 1, sym__additive_operator, - STATE(546), 1, + STATE(490), 1, sym__logical_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, STATE(780), 2, sym_comment, sym_include, - ACTIONS(713), 5, + ACTIONS(1107), 5, sym_identifier, aux_sym_input_expression_token2, anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83326,44 +81120,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44230] = 13, + [42782] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(541), 1, + STATE(474), 1, sym__comparison_operator, - STATE(544), 1, + STATE(488), 1, sym__multiplicative_operator, - STATE(545), 1, + STATE(489), 1, sym__additive_operator, - STATE(546), 1, + STATE(490), 1, sym__logical_operator, + ACTIONS(197), 2, + sym__or_operator, + sym__and_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, STATE(781), 2, sym_comment, sym_include, - ACTIONS(723), 5, + ACTIONS(195), 5, sym_identifier, aux_sym_input_expression_token2, anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83379,36 +81169,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44296] = 10, + [42844] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(541), 1, - sym__comparison_operator, - STATE(544), 1, - sym__multiplicative_operator, - STATE(545), 1, - sym__additive_operator, - STATE(546), 1, + STATE(387), 1, sym__logical_operator, + STATE(393), 1, + sym__additive_operator, + STATE(398), 1, + sym__multiplicative_operator, + STATE(401), 1, + sym__comparison_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, + ACTIONS(295), 2, + sym__or_operator, + sym__and_operator, STATE(782), 2, sym_comment, sym_include, - ACTIONS(251), 28, + ACTIONS(297), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - aux_sym_input_expression_token2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -83426,37 +81213,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [44356] = 9, + aux_sym_include_argument_token1, + [42899] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(541), 1, - sym__comparison_operator, - STATE(544), 1, - sym__multiplicative_operator, - STATE(545), 1, - sym__additive_operator, - STATE(546), 1, - sym__logical_operator, - STATE(783), 2, + ACTIONS(1426), 1, + sym__namecolon, + ACTIONS(100), 2, + sym__or_operator, + sym__and_operator, + STATE(783), 3, sym_comment, sym_include, - ACTIONS(245), 30, + aux_sym_object_access_repeat1, + ACTIONS(98), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + anon_sym_LPAREN, aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, @@ -83478,39 +81256,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [44414] = 11, + [42948] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(541), 1, - sym__comparison_operator, - STATE(544), 1, - sym__multiplicative_operator, - STATE(545), 1, - sym__additive_operator, - STATE(546), 1, + STATE(387), 1, sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, + STATE(393), 1, + sym__additive_operator, + STATE(398), 1, + sym__multiplicative_operator, + STATE(401), 1, + sym__comparison_operator, + ACTIONS(301), 2, + sym__or_operator, + sym__and_operator, STATE(784), 2, sym_comment, sym_include, - ACTIONS(239), 26, + ACTIONS(299), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - aux_sym_input_expression_token2, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83526,47 +81299,37 @@ 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, - [44476] = 13, + aux_sym_include_argument_token1, + [43001] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(541), 1, - sym__comparison_operator, - STATE(544), 1, - sym__multiplicative_operator, - STATE(545), 1, - sym__additive_operator, - STATE(546), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1429), 1, + anon_sym_LPAREN, + ACTIONS(1431), 1, + sym__namedot, + ACTIONS(1433), 1, + sym__namecolon, + STATE(1024), 1, + aux_sym_object_access_repeat1, + STATE(1205), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, STATE(785), 2, sym_comment, sym_include, - ACTIONS(715), 5, + ACTIONS(75), 22, + anon_sym_SLASH, sym_identifier, - aux_sym_input_expression_token2, - anon_sym_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83582,44 +81345,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44542] = 13, + anon_sym_NO_DASHERROR, + [43058] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(541), 1, - sym__comparison_operator, - STATE(544), 1, - sym__multiplicative_operator, - STATE(545), 1, - sym__additive_operator, - STATE(546), 1, + STATE(387), 1, sym__logical_operator, + STATE(393), 1, + sym__additive_operator, + STATE(398), 1, + sym__multiplicative_operator, + STATE(401), 1, + sym__comparison_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, STATE(786), 2, sym_comment, sym_include, - ACTIONS(719), 5, + ACTIONS(1435), 5, + 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(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83635,44 +81393,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44608] = 13, + [43117] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(541), 1, - sym__comparison_operator, - STATE(544), 1, - sym__multiplicative_operator, - STATE(545), 1, - sym__additive_operator, - STATE(546), 1, + STATE(387), 1, sym__logical_operator, + STATE(393), 1, + sym__additive_operator, + STATE(398), 1, + sym__multiplicative_operator, + STATE(401), 1, + sym__comparison_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(303), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, STATE(787), 2, sym_comment, sym_include, - ACTIONS(701), 5, + ACTIONS(305), 20, + 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(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + anon_sym_DQUOTE, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83688,42 +81438,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44674] = 12, - ACTIONS(3), 1, + aux_sym_include_argument_token1, + [43174] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - STATE(386), 1, - sym__logical_operator, - STATE(387), 1, - sym__additive_operator, - STATE(389), 1, - sym__multiplicative_operator, - STATE(393), 1, - sym__comparison_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(788), 2, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(109), 1, + aux_sym_variable_definition_token2, + STATE(788), 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, + [43221] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(387), 1, + sym__logical_operator, + STATE(393), 1, + sym__additive_operator, + STATE(398), 1, + sym__multiplicative_operator, + STATE(401), 1, + sym__comparison_operator, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(789), 2, sym_comment, sym_include, - ACTIONS(723), 5, + ACTIONS(1109), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, aux_sym_include_argument_token1, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83739,37 +81527,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44737] = 10, + [43280] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1352), 1, - anon_sym_LPAREN, - ACTIONS(1354), 1, - sym__namedot, - ACTIONS(1356), 1, + ACTIONS(1364), 1, sym__namecolon, - STATE(850), 1, + STATE(783), 1, aux_sym_object_access_repeat1, - STATE(927), 1, - aux_sym_qualified_name_repeat1, - STATE(789), 2, + ACTIONS(107), 2, + sym__or_operator, + sym__and_operator, + STATE(790), 2, sym_comment, sym_include, - ACTIONS(127), 28, + ACTIONS(105), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + anon_sym_LPAREN, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -83787,136 +81567,41 @@ 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, - [44796] = 5, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [43331] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - sym__namedot, - STATE(790), 2, - sym_comment, - sym_include, - ACTIONS(71), 33, - anon_sym_LBRACE, - sym_identifier, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_can_find_expression_token1, - aux_sym_of_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [44845] = 18, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, + STATE(387), 1, + sym__logical_operator, + STATE(393), 1, + sym__additive_operator, + STATE(398), 1, + sym__multiplicative_operator, + STATE(401), 1, + sym__comparison_operator, + ACTIONS(219), 2, anon_sym_SLASH, - ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(1358), 1, - anon_sym_COMMA, - ACTIONS(1360), 1, - aux_sym_of_token1, - ACTIONS(1362), 1, - aux_sym_on_statement_token1, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - STATE(2920), 1, - aux_sym_on_statement_repeat1, - ACTIONS(227), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, STATE(791), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [44920] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(1105), 5, anon_sym_LBRACE, - ACTIONS(1335), 1, - sym__namecolon, - STATE(807), 1, - aux_sym_object_access_repeat1, - STATE(792), 2, - sym_comment, - sym_include, - ACTIONS(116), 31, - anon_sym_SLASH, + anon_sym_RBRACE, sym_identifier, - anon_sym_STAR, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83932,10 +81617,7 @@ 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, - [44973] = 15, + [43390] = 18, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -83946,36 +81628,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(221), 1, anon_sym_STAR, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(1439), 1, + aux_sym_of_token1, + ACTIONS(1441), 1, + aux_sym_on_statement_token1, + STATE(453), 1, sym__logical_operator, - ACTIONS(227), 2, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(2980), 1, + aux_sym_on_statement_repeat1, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(793), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(792), 2, sym_comment, sym_include, - ACTIONS(1364), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -83989,33 +81670,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45042] = 7, + [43461] = 18, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1366), 1, - sym__namedot, - ACTIONS(71), 3, + ACTIONS(219), 1, anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(1443), 1, + aux_sym_of_token1, + ACTIONS(1445), 1, + aux_sym_on_statement_token1, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(2977), 1, + aux_sym_on_statement_repeat1, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, anon_sym_LT, anon_sym_GT, - STATE(794), 3, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(793), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(73), 28, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -84029,48 +81723,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_COLON, - aux_sym_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - [45095] = 12, + [43532] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(386), 1, - sym__logical_operator, STATE(387), 1, + sym__logical_operator, + STATE(393), 1, sym__additive_operator, - STATE(389), 1, + STATE(398), 1, sym__multiplicative_operator, - STATE(393), 1, + STATE(401), 1, sym__comparison_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(795), 2, + STATE(794), 2, sym_comment, sym_include, - ACTIONS(713), 5, + ACTIONS(1099), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, aux_sym_include_argument_token1, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84086,47 +81770,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45158] = 12, - ACTIONS(3), 1, + [43591] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - STATE(386), 1, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_variable_definition_token2, + STATE(795), 2, + sym_comment, + sym_include, + ACTIONS(205), 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, + [43638] = 18, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(1447), 1, + aux_sym_of_token1, + ACTIONS(1449), 1, + aux_sym_on_statement_token1, + STATE(453), 1, sym__logical_operator, - STATE(387), 1, + STATE(454), 1, sym__additive_operator, - STATE(389), 1, + STATE(455), 1, sym__multiplicative_operator, - STATE(393), 1, + STATE(456), 1, sym__comparison_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, + STATE(2983), 1, + aux_sym_on_statement_repeat1, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, STATE(796), 2, sym_comment, sym_include, - ACTIONS(719), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, - anon_sym_LT, + ACTIONS(229), 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, @@ -84137,47 +81864,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45221] = 12, - ACTIONS(3), 1, + [43709] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - STATE(386), 1, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + STATE(453), 1, sym__logical_operator, - STATE(387), 1, + STATE(454), 1, sym__additive_operator, - STATE(389), 1, + STATE(455), 1, sym__multiplicative_operator, - STATE(393), 1, + STATE(456), 1, sym__comparison_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, STATE(797), 2, sym_comment, sym_include, - ACTIONS(715), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, - anon_sym_LT, + ACTIONS(1451), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(229), 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, @@ -84188,34 +81914,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45284] = 8, + [43774] = 18, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1329), 1, - sym__namedot, - STATE(813), 1, - aux_sym_qualified_name_repeat1, - STATE(798), 2, - sym_comment, - sym_include, - ACTIONS(159), 3, + ACTIONS(219), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(161), 28, + ACTIONS(221), 1, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(1453), 1, + aux_sym_of_token1, + ACTIONS(1455), 1, + aux_sym_on_statement_token1, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + STATE(2986), 1, + aux_sym_on_statement_repeat1, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(798), 2, + sym_comment, + sym_include, + ACTIONS(229), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -84229,121 +81967,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_COLON, - aux_sym_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - [45339] = 29, + [43845] = 18, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1379), 1, - aux_sym_variable_definition_token3, - ACTIONS(1381), 1, - aux_sym_variable_definition_token4, - ACTIONS(1383), 1, - aux_sym_buffer_definition_token1, - ACTIONS(1385), 1, - aux_sym_buffer_definition_token3, - ACTIONS(1387), 1, - aux_sym_query_definition_token1, - ACTIONS(1389), 1, - aux_sym_function_parameter_token1, - ACTIONS(1393), 1, - aux_sym_property_tuning_token1, - ACTIONS(1395), 1, - aux_sym_property_definition_token1, - ACTIONS(1397), 1, - aux_sym_event_definition_token1, - ACTIONS(1399), 1, - aux_sym_data_source_definition_token1, - STATE(904), 1, - sym_access_tuning, - STATE(1808), 1, - sym_scope_tuning, - STATE(1825), 1, - aux_sym_variable_definition_repeat1, - STATE(1857), 1, - sym_property_tuning, - STATE(1931), 1, - sym_serialization_tuning, - STATE(1983), 1, - aux_sym_buffer_definition_repeat1, - STATE(2368), 1, - aux_sym_property_definition_repeat1, - STATE(2500), 1, - aux_sym_property_definition_repeat2, - STATE(2714), 1, - sym_property_type, - ACTIONS(1369), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - ACTIONS(1377), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(1391), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(799), 2, - sym_comment, - sym_include, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [45436] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(386), 1, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(1457), 1, + aux_sym_of_token1, + ACTIONS(1459), 1, + aux_sym_on_statement_token1, + STATE(453), 1, sym__logical_operator, - STATE(387), 1, + STATE(454), 1, sym__additive_operator, - STATE(389), 1, + STATE(455), 1, sym__multiplicative_operator, - STATE(393), 1, + STATE(456), 1, sym__comparison_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, + STATE(2975), 1, + aux_sym_on_statement_repeat1, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(800), 2, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(799), 2, sym_comment, sym_include, - ACTIONS(701), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, - anon_sym_LT, + ACTIONS(229), 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, @@ -84354,53 +82020,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45499] = 18, - ACTIONS(59), 1, + [43916] = 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(219), 1, + ACTIONS(1429), 1, + anon_sym_LPAREN, + ACTIONS(1431), 1, + sym__namedot, + ACTIONS(1433), 1, + sym__namecolon, + STATE(1024), 1, + aux_sym_object_access_repeat1, + STATE(1205), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(800), 2, + sym_comment, + sym_include, + ACTIONS(63), 22, anon_sym_SLASH, - ACTIONS(221), 1, + sym_identifier, anon_sym_STAR, - ACTIONS(1358), 1, - anon_sym_COMMA, - ACTIONS(1401), 1, - aux_sym_of_token1, - ACTIONS(1403), 1, - aux_sym_on_statement_token1, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - STATE(2957), 1, - aux_sym_on_statement_repeat1, - ACTIONS(227), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, anon_sym_LT, - anon_sym_GT, - STATE(801), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, @@ -84411,41 +82065,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45574] = 11, + anon_sym_NO_DASHERROR, + [43973] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(386), 1, - sym__logical_operator, STATE(387), 1, + sym__logical_operator, + STATE(393), 1, sym__additive_operator, - STATE(389), 1, + STATE(398), 1, sym__multiplicative_operator, - STATE(393), 1, + STATE(401), 1, sym__comparison_operator, + ACTIONS(197), 2, + sym__or_operator, + sym__and_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(802), 2, + STATE(801), 2, sym_comment, sym_include, - ACTIONS(215), 11, + ACTIONS(195), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_include_argument_token1, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84461,42 +82113,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45635] = 12, + [44032] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(386), 1, - sym__logical_operator, STATE(387), 1, + sym__logical_operator, + STATE(393), 1, sym__additive_operator, - STATE(389), 1, + STATE(398), 1, sym__multiplicative_operator, - STATE(393), 1, + STATE(401), 1, sym__comparison_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(803), 2, + STATE(802), 2, sym_comment, sym_include, - ACTIONS(1405), 5, + ACTIONS(1107), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, aux_sym_include_argument_token1, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84512,42 +82160,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45698] = 12, + [44091] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(386), 1, - sym__logical_operator, STATE(387), 1, + sym__logical_operator, + STATE(393), 1, sym__additive_operator, - STATE(389), 1, + STATE(398), 1, sym__multiplicative_operator, - STATE(393), 1, + STATE(401), 1, sym__comparison_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(804), 2, + STATE(803), 2, sym_comment, sym_include, - ACTIONS(721), 5, + ACTIONS(1111), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, aux_sym_include_argument_token1, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84563,86 +82207,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45761] = 10, + [44150] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1352), 1, - anon_sym_LPAREN, - ACTIONS(1354), 1, - sym__namedot, - ACTIONS(1356), 1, - sym__namecolon, - STATE(850), 1, - aux_sym_object_access_repeat1, - STATE(927), 1, - aux_sym_qualified_name_repeat1, - STATE(805), 2, - sym_comment, - sym_include, - ACTIONS(108), 28, + STATE(387), 1, + sym__logical_operator, + STATE(393), 1, + sym__additive_operator, + STATE(398), 1, + sym__multiplicative_operator, + STATE(401), 1, + sym__comparison_operator, + ACTIONS(219), 2, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, 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, - [45820] = 8, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1329), 1, - sym__namedot, - STATE(813), 1, - aux_sym_qualified_name_repeat1, - STATE(806), 2, + STATE(804), 2, sym_comment, sym_include, - ACTIONS(207), 3, - anon_sym_SLASH, + ACTIONS(1113), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(227), 15, anon_sym_LT, - anon_sym_GT, - ACTIONS(209), 28, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -84653,36 +82254,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_COLON, - aux_sym_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - [45875] = 6, + [44209] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1407), 1, - sym__namecolon, - STATE(807), 3, + ACTIONS(1461), 1, + sym__namedot, + ACTIONS(93), 2, + sym__or_operator, + sym__and_operator, + STATE(805), 3, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(120), 31, + aux_sym_qualified_name_repeat1, + ACTIONS(91), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, @@ -84704,85 +82295,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [45926] = 9, + [44257] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(386), 1, - sym__logical_operator, - STATE(387), 1, - sym__additive_operator, - STATE(389), 1, - sym__multiplicative_operator, - STATE(393), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(419), 1, sym__comparison_operator, + STATE(422), 1, + sym__multiplicative_operator, + STATE(423), 1, + sym__additive_operator, + STATE(424), 1, + sym__logical_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - STATE(808), 2, - sym_comment, - sym_include, - ACTIONS(251), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, 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, - [45983] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(386), 1, - sym__logical_operator, - STATE(387), 1, - sym__additive_operator, - STATE(389), 1, - sym__multiplicative_operator, - STATE(393), 1, - sym__comparison_operator, - STATE(809), 2, + STATE(806), 2, sym_comment, sym_include, - ACTIONS(245), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1109), 3, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - anon_sym_PLUS, - anon_sym_DASH, + sym__terminator, + anon_sym_NO_DASHERROR, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84798,54 +82342,43 @@ 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, - [46038] = 18, - ACTIONS(59), 1, + [44317] = 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(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1358), 1, - anon_sym_COMMA, - ACTIONS(1410), 1, - aux_sym_of_token1, - ACTIONS(1412), 1, - aux_sym_on_statement_token1, - STATE(472), 1, + STATE(419), 1, sym__comparison_operator, - STATE(509), 1, + STATE(422), 1, sym__multiplicative_operator, - STATE(536), 1, + STATE(423), 1, sym__additive_operator, - STATE(548), 1, + STATE(424), 1, sym__logical_operator, - STATE(2974), 1, - aux_sym_on_statement_repeat1, - ACTIONS(227), 2, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(810), 2, + STATE(807), 2, sym_comment, sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(1105), 3, + sym_identifier, + sym__terminator, + anon_sym_NO_DASHERROR, + ACTIONS(227), 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, @@ -84856,39 +82389,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [46113] = 10, + [44377] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(386), 1, - sym__logical_operator, - STATE(387), 1, - sym__additive_operator, - STATE(389), 1, - sym__multiplicative_operator, - STATE(393), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(419), 1, sym__comparison_operator, + STATE(422), 1, + sym__multiplicative_operator, + STATE(423), 1, + sym__additive_operator, + STATE(424), 1, + sym__logical_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(303), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(811), 2, + STATE(808), 2, sym_comment, sym_include, - ACTIONS(239), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(305), 18, sym_identifier, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + sym__terminator, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84904,54 +82434,36 @@ 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, - [46172] = 18, - ACTIONS(59), 1, + anon_sym_NO_DASHERROR, + [44435] = 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(219), 1, + ACTIONS(1464), 1, + sym__namecolon, + ACTIONS(100), 2, + sym__or_operator, + sym__and_operator, + STATE(809), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(98), 25, anon_sym_SLASH, - ACTIONS(221), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - ACTIONS(1358), 1, - anon_sym_COMMA, - ACTIONS(1414), 1, - aux_sym_of_token1, - ACTIONS(1416), 1, - aux_sym_on_statement_token1, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - STATE(2983), 1, - aux_sym_on_statement_repeat1, - ACTIONS(227), 2, + anon_sym_DQUOTE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, anon_sym_LT, - anon_sym_GT, - STATE(812), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, @@ -84962,37 +82474,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [46247] = 8, - ACTIONS(59), 1, + aux_sym_include_argument_token1, + [44481] = 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(1329), 1, + ACTIONS(1362), 1, sym__namedot, - STATE(794), 1, + STATE(813), 1, aux_sym_qualified_name_repeat1, - STATE(813), 2, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(810), 2, sym_comment, sym_include, - ACTIONS(63), 3, + ACTIONS(87), 24, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(67), 28, + sym_identifier, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + 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, @@ -85003,59 +82514,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_COLON, - aux_sym_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - [46302] = 18, - ACTIONS(59), 1, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [44531] = 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(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1358), 1, - anon_sym_COMMA, - ACTIONS(1418), 1, - aux_sym_of_token1, - ACTIONS(1420), 1, - aux_sym_on_statement_token1, - STATE(472), 1, + STATE(419), 1, sym__comparison_operator, - STATE(509), 1, + STATE(422), 1, sym__multiplicative_operator, - STATE(536), 1, + STATE(423), 1, sym__additive_operator, - STATE(548), 1, + STATE(424), 1, sym__logical_operator, - STATE(2965), 1, - aux_sym_on_statement_repeat1, - ACTIONS(227), 2, + ACTIONS(301), 2, + sym__or_operator, + sym__and_operator, + STATE(811), 2, + sym_comment, + sym_include, + ACTIONS(299), 22, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, anon_sym_LT, - anon_sym_GT, - STATE(814), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, @@ -85066,42 +82560,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [46377] = 13, + anon_sym_NO_DASHERROR, + [44585] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(412), 1, + STATE(419), 1, sym__comparison_operator, - STATE(425), 1, + STATE(422), 1, sym__multiplicative_operator, - STATE(428), 1, + STATE(423), 1, sym__additive_operator, - STATE(429), 1, + STATE(424), 1, sym__logical_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(815), 2, + ACTIONS(295), 2, + sym__or_operator, + sym__and_operator, + STATE(812), 2, sym_comment, sym_include, - ACTIONS(715), 3, + ACTIONS(297), 20, sym_identifier, sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -85117,34 +82605,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [46441] = 6, - ACTIONS(59), 1, + anon_sym_NO_DASHERROR, + [44641] = 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, - STATE(816), 2, + ACTIONS(1362), 1, + sym__namedot, + STATE(805), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(81), 2, + sym__or_operator, + sym__and_operator, + STATE(813), 2, sym_comment, sym_include, - ACTIONS(71), 3, + ACTIONS(79), 24, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(73), 29, - sym__namedot, + sym_identifier, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + 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, @@ -85155,38 +82645,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_COLON, - aux_sym_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - [46491] = 6, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [44691] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1345), 1, - sym__namecolon, - STATE(822), 1, - aux_sym_object_access_repeat1, - STATE(817), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(814), 2, sym_comment, sym_include, - ACTIONS(116), 31, + 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, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -85204,31 +82685,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_include_argument_token1, - [46541] = 7, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [44737] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1333), 1, + ACTIONS(1362), 1, sym__namedot, - STATE(832), 1, + STATE(813), 1, aux_sym_qualified_name_repeat1, - STATE(818), 2, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(815), 2, sym_comment, sym_include, - ACTIONS(63), 30, + ACTIONS(83), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, @@ -85250,46 +82730,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [46593] = 12, - ACTIONS(3), 1, + [44787] = 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(412), 1, - sym__comparison_operator, - STATE(425), 1, - sym__multiplicative_operator, - STATE(428), 1, - sym__additive_operator, - STATE(429), 1, - sym__logical_operator, - ACTIONS(219), 2, + ACTIONS(219), 1, anon_sym_SLASH, + ACTIONS(221), 1, anon_sym_STAR, - ACTIONS(705), 2, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(819), 2, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(816), 2, sym_comment, sym_include, - ACTIONS(215), 9, - sym_identifier, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - anon_sym_NO_DASHERROR, - ACTIONS(229), 15, - anon_sym_LT, + ACTIONS(1467), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(229), 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, @@ -85300,42 +82779,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [46655] = 13, + [44851] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(412), 1, + STATE(419), 1, sym__comparison_operator, - STATE(425), 1, + STATE(422), 1, sym__multiplicative_operator, - STATE(428), 1, + STATE(423), 1, sym__additive_operator, - STATE(429), 1, + STATE(424), 1, sym__logical_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(820), 2, + STATE(817), 2, sym_comment, sym_include, - ACTIONS(719), 3, + ACTIONS(1113), 3, sym_identifier, sym__terminator, anon_sym_NO_DASHERROR, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -85351,42 +82826,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [46719] = 13, + [44911] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(412), 1, + STATE(419), 1, sym__comparison_operator, - STATE(425), 1, + STATE(422), 1, sym__multiplicative_operator, - STATE(428), 1, + STATE(423), 1, sym__additive_operator, - STATE(429), 1, + STATE(424), 1, sym__logical_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(821), 2, + STATE(818), 2, sym_comment, sym_include, - ACTIONS(713), 3, + ACTIONS(1099), 3, sym_identifier, sym__terminator, anon_sym_NO_DASHERROR, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -85402,76 +82873,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [46783] = 5, + [44971] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1422), 1, - sym__namecolon, - STATE(822), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(120), 31, - anon_sym_SLASH, + ACTIONS(7), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + STATE(419), 1, + sym__comparison_operator, + STATE(422), 1, + sym__multiplicative_operator, + STATE(423), 1, + sym__additive_operator, + STATE(424), 1, + sym__logical_operator, + ACTIONS(219), 2, + anon_sym_SLASH, anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, 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, - [46831] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1333), 1, - sym__namedot, - STATE(818), 1, - aux_sym_qualified_name_repeat1, - STATE(823), 2, + STATE(819), 2, sym_comment, sym_include, - ACTIONS(207), 30, - anon_sym_SLASH, + ACTIONS(1111), 3, sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, + sym__terminator, + anon_sym_NO_DASHERROR, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -85487,45 +82920,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, - [46883] = 13, + [45031] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(412), 1, + STATE(419), 1, sym__comparison_operator, - STATE(425), 1, + STATE(422), 1, sym__multiplicative_operator, - STATE(428), 1, + STATE(423), 1, sym__additive_operator, - STATE(429), 1, + STATE(424), 1, sym__logical_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(824), 2, + STATE(820), 2, sym_comment, sym_include, - ACTIONS(701), 3, + ACTIONS(1107), 3, sym_identifier, sym__terminator, anon_sym_NO_DASHERROR, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 15, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -85541,49 +82967,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [46947] = 15, - ACTIONS(59), 1, + [45091] = 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(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - STATE(472), 1, + STATE(419), 1, sym__comparison_operator, - STATE(509), 1, + STATE(422), 1, sym__multiplicative_operator, - STATE(536), 1, + STATE(423), 1, sym__additive_operator, - STATE(548), 1, + STATE(424), 1, sym__logical_operator, - ACTIONS(227), 2, + ACTIONS(197), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(219), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(825), 2, + STATE(821), 2, sym_comment, sym_include, - ACTIONS(1425), 3, - anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 13, + ACTIONS(195), 3, + sym_identifier, + sym__terminator, + anon_sym_NO_DASHERROR, + ACTIONS(227), 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, @@ -85594,30 +83014,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [47015] = 6, + [45151] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(133), 1, + ACTIONS(1388), 1, sym__namecolon, - STATE(826), 2, + STATE(809), 1, + aux_sym_object_access_repeat1, + ACTIONS(107), 2, + sym__or_operator, + sym__and_operator, + STATE(822), 2, sym_comment, sym_include, - ACTIONS(131), 31, + ACTIONS(105), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, + anon_sym_DQUOTE, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -85635,89 +83054,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, - [47065] = 11, + aux_sym_include_argument_token1, + [45199] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(412), 1, + STATE(419), 1, sym__comparison_operator, - STATE(425), 1, + STATE(422), 1, sym__multiplicative_operator, - STATE(428), 1, + STATE(423), 1, sym__additive_operator, - STATE(429), 1, + STATE(424), 1, sym__logical_operator, ACTIONS(219), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(705), 2, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1101), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(827), 2, + STATE(823), 2, sym_comment, sym_include, - ACTIONS(239), 24, + ACTIONS(1469), 3, sym_identifier, sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - anon_sym_LT, - anon_sym_LT_EQ, - 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, - [47125] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(412), 1, - sym__comparison_operator, - STATE(425), 1, - sym__multiplicative_operator, - STATE(428), 1, - sym__additive_operator, - STATE(429), 1, - sym__logical_operator, - STATE(828), 2, - sym_comment, - sym_include, - ACTIONS(245), 28, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(227), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -85733,7949 +83102,2455 @@ 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, - [47181] = 13, + [45259] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(412), 1, - sym__comparison_operator, - STATE(425), 1, - sym__multiplicative_operator, - STATE(428), 1, - sym__additive_operator, - STATE(429), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(829), 2, + ACTIONS(1471), 1, + ts_builtin_sym_end, + STATE(824), 2, sym_comment, sym_include, - ACTIONS(1427), 3, + ACTIONS(1473), 26, sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 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, - [47245] = 10, + 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, + [45304] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(412), 1, - sym__comparison_operator, - STATE(425), 1, - sym__multiplicative_operator, - STATE(428), 1, - sym__additive_operator, - STATE(429), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - STATE(830), 2, + ACTIONS(1475), 1, + ts_builtin_sym_end, + STATE(825), 2, sym_comment, sym_include, - ACTIONS(251), 26, + ACTIONS(1477), 26, sym_identifier, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [47303] = 13, + 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, + [45349] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(412), 1, - sym__comparison_operator, - STATE(425), 1, - sym__multiplicative_operator, - STATE(428), 1, - sym__additive_operator, - STATE(429), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(831), 2, + STATE(826), 2, sym_comment, sym_include, - ACTIONS(723), 3, + ACTIONS(1479), 27, sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 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, - [47367] = 6, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [45392] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1429), 1, - sym__namedot, - STATE(832), 3, + STATE(827), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(71), 30, - anon_sym_SLASH, + ACTIONS(1481), 27, sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [47417] = 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, + [45435] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1333), 1, - sym__namedot, - STATE(818), 1, - aux_sym_qualified_name_repeat1, - STATE(833), 2, + STATE(828), 2, sym_comment, sym_include, - ACTIONS(159), 30, - anon_sym_SLASH, + ACTIONS(1483), 27, sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [47469] = 13, + 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, + [45478] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(412), 1, - sym__comparison_operator, - STATE(425), 1, - sym__multiplicative_operator, - STATE(428), 1, - sym__additive_operator, - STATE(429), 1, - sym__logical_operator, - ACTIONS(219), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(705), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(834), 2, + STATE(829), 2, sym_comment, sym_include, - ACTIONS(721), 3, + ACTIONS(1477), 27, sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(703), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(229), 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, - [47533] = 6, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [45521] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(73), 1, - sym__namedot, - STATE(835), 2, + ACTIONS(1485), 1, + ts_builtin_sym_end, + STATE(830), 2, sym_comment, sym_include, - ACTIONS(71), 30, - anon_sym_SLASH, + ACTIONS(1487), 26, sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - anon_sym_COMMA, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [47582] = 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, + [45566] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1432), 1, - anon_sym_NO_DASHERROR, - STATE(836), 2, + STATE(831), 2, sym_comment, sym_include, - ACTIONS(257), 30, - anon_sym_SLASH, + ACTIONS(1489), 27, sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [47631] = 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, + [45609] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1331), 1, - anon_sym_LPAREN, - STATE(837), 2, + STATE(832), 2, sym_comment, sym_include, - ACTIONS(127), 30, - anon_sym_SLASH, + ACTIONS(1491), 27, sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [47680] = 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, + [45652] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1434), 1, - sym__namecolon, - STATE(838), 3, + STATE(833), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(120), 29, - anon_sym_SLASH, + ACTIONS(1493), 27, sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [47729] = 6, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [45695] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1437), 1, - anon_sym_NO_DASHERROR, - STATE(839), 2, + ACTIONS(1495), 1, + ts_builtin_sym_end, + STATE(834), 2, sym_comment, sym_include, - ACTIONS(147), 30, - anon_sym_SLASH, + ACTIONS(1497), 26, sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [47778] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1343), 1, - sym__namedot, - STATE(846), 1, - aux_sym_qualified_name_repeat1, - STATE(840), 2, - sym_comment, - sym_include, - ACTIONS(159), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [47827] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1343), 1, - sym__namedot, - STATE(846), 1, - aux_sym_qualified_name_repeat1, - STATE(841), 2, - sym_comment, - sym_include, - ACTIONS(207), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [47876] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1439), 2, - sym__terminator, - aux_sym_output_stream_statement_token1, - STATE(842), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [47943] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1441), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(843), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [48010] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1443), 2, - anon_sym_COLON, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, aux_sym_on_error_phrase_token1, - STATE(844), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [48077] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1331), 1, - anon_sym_LPAREN, - STATE(845), 2, - sym_comment, - sym_include, - ACTIONS(108), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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_on_error_phrase_token3, aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [48126] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1343), 1, - sym__namedot, - STATE(847), 1, - aux_sym_qualified_name_repeat1, - STATE(846), 2, - sym_comment, - sym_include, - ACTIONS(63), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [48175] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1445), 1, - sym__namedot, - STATE(847), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(71), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [48222] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(133), 1, - sym__namecolon, - STATE(848), 2, - sym_comment, - sym_include, - ACTIONS(131), 31, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [48269] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1441), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(849), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [48336] = 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, + [45740] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1356), 1, - sym__namecolon, - STATE(838), 1, - aux_sym_object_access_repeat1, - STATE(850), 2, + ACTIONS(1499), 1, + ts_builtin_sym_end, + STATE(835), 2, sym_comment, sym_include, - ACTIONS(116), 29, - anon_sym_SLASH, + ACTIONS(1501), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [48387] = 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_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, + [45785] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1448), 1, - sym__namedot, - STATE(851), 2, + ACTIONS(1503), 1, + ts_builtin_sym_end, + STATE(836), 2, sym_comment, sym_include, - ACTIONS(98), 30, - anon_sym_SLASH, + ACTIONS(1505), 26, sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [48436] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1450), 1, - aux_sym_if_statement_token2, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(852), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [48502] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(853), 2, - sym_comment, - sym_include, - ACTIONS(139), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [48548] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(114), 1, - sym__namecolon, - ACTIONS(1452), 1, - anon_sym_LPAREN, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(14), 1, - aux_sym_object_access_repeat1, - STATE(854), 2, - sym_comment, - sym_include, - ACTIONS(108), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(110), 22, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [48606] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1454), 1, - anon_sym_LPAREN, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(855), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [48672] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(114), 1, - sym__namecolon, - ACTIONS(1456), 1, - anon_sym_LPAREN, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(14), 1, - aux_sym_object_access_repeat1, - STATE(856), 2, - sym_comment, - sym_include, - ACTIONS(108), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(110), 22, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [48730] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1458), 1, - anon_sym_LPAREN, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(857), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [48796] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(114), 1, - sym__namecolon, - ACTIONS(1460), 1, - anon_sym_LPAREN, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(14), 1, - aux_sym_object_access_repeat1, - STATE(858), 2, - sym_comment, - sym_include, - ACTIONS(108), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(110), 22, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [48854] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1462), 1, - aux_sym_if_statement_token2, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(859), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [48920] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1464), 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, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(860), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [48986] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1466), 1, - anon_sym_LPAREN, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(861), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [49052] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(114), 1, - sym__namecolon, - ACTIONS(1468), 1, - anon_sym_LPAREN, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(14), 1, - aux_sym_object_access_repeat1, - STATE(862), 2, - sym_comment, - sym_include, - ACTIONS(108), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(110), 22, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [49110] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1470), 1, - aux_sym_if_statement_token2, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(863), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [49176] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1472), 1, - aux_sym_if_statement_token2, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(864), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [49242] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1474), 1, - aux_sym_if_statement_token2, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(865), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [49308] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1476), 1, - aux_sym_if_statement_token2, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(866), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [49374] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1478), 1, - aux_sym_if_statement_token2, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(867), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [49440] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1480), 1, - aux_sym_if_statement_token2, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(868), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [49506] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1482), 1, - aux_sym_if_statement_token2, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(869), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [49572] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1484), 1, - aux_sym_if_statement_token2, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(870), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [49638] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(871), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [49704] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1488), 1, - aux_sym_if_statement_token2, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(872), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [49770] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(873), 2, - sym_comment, - sym_include, - ACTIONS(155), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [49816] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(874), 2, - sym_comment, - sym_include, - ACTIONS(171), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [49862] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(875), 2, - sym_comment, - sym_include, - ACTIONS(187), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [49908] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(876), 2, - sym_comment, - sym_include, - ACTIONS(199), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [49954] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(114), 1, - sym__namecolon, - ACTIONS(1490), 1, - anon_sym_LPAREN, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(14), 1, - aux_sym_object_access_repeat1, - STATE(877), 2, - sym_comment, - sym_include, - ACTIONS(108), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(110), 22, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [50012] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1492), 1, - anon_sym_LPAREN, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(878), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [50078] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1494), 1, - anon_sym_LPAREN, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(879), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [50144] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1496), 1, - aux_sym_else_if_statement_token1, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(880), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [50210] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1498), 1, - aux_sym_else_if_statement_token1, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(881), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [50276] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1500), 1, - anon_sym_RPAREN, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(882), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [50342] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1502), 1, - aux_sym_else_if_statement_token1, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(883), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [50408] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1504), 1, - aux_sym_if_statement_token2, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(884), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [50474] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1506), 1, - anon_sym_RPAREN, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(885), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [50540] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1508), 1, - anon_sym_RPAREN, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(886), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [50606] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1510), 1, - aux_sym_else_if_statement_token1, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(887), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [50672] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1512), 1, - anon_sym_RPAREN, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(888), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [50738] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1514), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(889), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [50804] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1516), 1, - aux_sym_if_statement_token2, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(890), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [50870] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1518), 1, - anon_sym_RPAREN, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(891), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [50936] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1520), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(892), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [51002] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1522), 1, - aux_sym_else_if_statement_token1, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(893), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [51068] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1524), 1, - anon_sym_RPAREN, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(894), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [51134] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1526), 1, - aux_sym_else_if_statement_token1, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(895), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [51200] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1528), 1, - ts_builtin_sym_end, - ACTIONS(1532), 1, - aux_sym_else_if_statement_token1, - STATE(909), 1, - aux_sym_if_statement_repeat1, - STATE(896), 2, - sym_comment, - sym_include, - STATE(1232), 2, - sym_else_if_statement, - sym_else_statement, - ACTIONS(1530), 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, - [51254] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(897), 2, - sym_comment, - sym_include, - ACTIONS(203), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [51300] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(898), 2, - sym_comment, - sym_include, - ACTIONS(211), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [51346] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(899), 2, - sym_comment, - sym_include, - ACTIONS(127), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [51392] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(900), 2, - sym_comment, - sym_include, - ACTIONS(135), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [51438] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1534), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(901), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [51504] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1536), 1, - aux_sym_else_if_statement_token1, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(902), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [51570] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1538), 1, - aux_sym_else_if_statement_token1, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(903), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [51636] = 24, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1371), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1393), 1, - aux_sym_property_tuning_token1, - ACTIONS(1552), 1, - aux_sym_variable_definition_token4, - ACTIONS(1556), 1, - aux_sym_function_parameter_token1, - ACTIONS(1558), 1, - aux_sym_property_definition_token1, - ACTIONS(1560), 1, - aux_sym_event_definition_token1, - ACTIONS(1562), 1, - aux_sym_data_source_definition_token1, - STATE(1857), 1, - sym_property_tuning, - STATE(2345), 1, - aux_sym_property_definition_repeat1, - STATE(2462), 1, - aux_sym_property_definition_repeat2, - STATE(2714), 1, - sym_property_type, - STATE(4299), 1, - sym_serialization_tuning, - STATE(4300), 1, - sym_scope_tuning, - ACTIONS(1369), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - ACTIONS(1391), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - ACTIONS(1547), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(1550), 2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token3, - ACTIONS(1554), 2, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - STATE(904), 2, - sym_comment, - sym_include, - ACTIONS(1544), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1540), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [51720] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1564), 1, - anon_sym_RPAREN, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(905), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [51786] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1566), 1, - sym__terminator, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(906), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [51852] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1568), 1, - anon_sym_NO_DASHERROR, - STATE(907), 2, - sym_comment, - sym_include, - ACTIONS(147), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [51898] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1570), 1, - anon_sym_NO_DASHERROR, - STATE(908), 2, - sym_comment, - sym_include, - ACTIONS(257), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [51944] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1532), 1, - aux_sym_else_if_statement_token1, - ACTIONS(1572), 1, - ts_builtin_sym_end, - STATE(930), 1, - aux_sym_if_statement_repeat1, - STATE(909), 2, - sym_comment, - sym_include, - STATE(1232), 2, - sym_else_if_statement, - sym_else_statement, - ACTIONS(1574), 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, - [51998] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(910), 2, - sym_comment, - sym_include, - ACTIONS(147), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52044] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(911), 2, - sym_comment, - sym_include, - ACTIONS(151), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52090] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(912), 2, - sym_comment, - sym_include, - ACTIONS(159), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52136] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(133), 1, - sym__namecolon, - STATE(913), 2, - sym_comment, - sym_include, - ACTIONS(131), 29, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52184] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - sym__namedot, - STATE(914), 2, - sym_comment, - sym_include, - ACTIONS(71), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52230] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(915), 2, - sym_comment, - sym_include, - ACTIONS(86), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52276] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1576), 1, - aux_sym_else_if_statement_token1, - STATE(917), 1, - aux_sym_if_statement_repeat1, - STATE(916), 2, - sym_comment, - sym_include, - STATE(1208), 2, - sym_else_if_statement, - sym_else_statement, - ACTIONS(1530), 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, - [52328] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1576), 1, - aux_sym_else_if_statement_token1, - STATE(919), 1, - aux_sym_if_statement_repeat1, - STATE(917), 2, - sym_comment, - sym_include, - STATE(1208), 2, - sym_else_if_statement, - sym_else_statement, - ACTIONS(1574), 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, - [52380] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1341), 1, - anon_sym_LPAREN, - STATE(918), 2, - sym_comment, - sym_include, - ACTIONS(108), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52426] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1580), 1, - aux_sym_else_if_statement_token1, - STATE(1208), 2, - sym_else_if_statement, - sym_else_statement, - STATE(919), 3, - sym_comment, - sym_include, - aux_sym_if_statement_repeat1, - ACTIONS(1578), 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, - [52476] = 5, - 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(183), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52522] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(921), 2, - sym_comment, - sym_include, - ACTIONS(175), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52568] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(922), 2, - sym_comment, - sym_include, - ACTIONS(78), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52614] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1354), 1, - sym__namedot, - STATE(927), 1, - aux_sym_qualified_name_repeat1, - STATE(923), 2, - sym_comment, - sym_include, - ACTIONS(159), 28, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52664] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(924), 2, - sym_comment, - sym_include, - ACTIONS(163), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52710] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(925), 2, - sym_comment, - sym_include, - ACTIONS(104), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52756] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1354), 1, - sym__namedot, - STATE(927), 1, - aux_sym_qualified_name_repeat1, - STATE(926), 2, - sym_comment, - sym_include, - ACTIONS(207), 28, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52806] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1354), 1, - sym__namedot, - STATE(936), 1, - aux_sym_qualified_name_repeat1, - STATE(927), 2, - sym_comment, - sym_include, - ACTIONS(63), 28, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52856] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(928), 2, - sym_comment, - sym_include, - ACTIONS(108), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52902] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(929), 2, - sym_comment, - sym_include, - ACTIONS(143), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [52948] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1583), 1, - ts_builtin_sym_end, - ACTIONS(1585), 1, - aux_sym_else_if_statement_token1, - STATE(1232), 2, - sym_else_if_statement, - sym_else_statement, - STATE(930), 3, - sym_comment, - sym_include, - aux_sym_if_statement_repeat1, - ACTIONS(1578), 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, - [53000] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1588), 1, - sym__namedot, - STATE(931), 2, - sym_comment, - sym_include, - ACTIONS(98), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53046] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1341), 1, - anon_sym_LPAREN, - STATE(932), 2, - sym_comment, - sym_include, - ACTIONS(127), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53092] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(933), 2, - sym_comment, - sym_include, - ACTIONS(195), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53138] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(934), 2, - sym_comment, - sym_include, - ACTIONS(207), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53184] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(219), 1, - anon_sym_SLASH, - ACTIONS(221), 1, - anon_sym_STAR, - ACTIONS(1590), 1, - aux_sym_if_statement_token2, - STATE(472), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(536), 1, - sym__additive_operator, - STATE(548), 1, - sym__logical_operator, - ACTIONS(227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_LT, - anon_sym_GT, - STATE(935), 2, - sym_comment, - sym_include, - ACTIONS(225), 6, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - ACTIONS(231), 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, - [53250] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1592), 1, - sym__namedot, - STATE(936), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(71), 28, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53298] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(937), 2, - sym_comment, - sym_include, - ACTIONS(98), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53344] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(938), 2, - sym_comment, - sym_include, - ACTIONS(82), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53390] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(939), 2, - sym_comment, - sym_include, - ACTIONS(167), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53436] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(940), 2, - sym_comment, - sym_include, - ACTIONS(191), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53482] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(941), 2, - sym_comment, - sym_include, - ACTIONS(215), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53528] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(942), 2, - sym_comment, - sym_include, - ACTIONS(90), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53574] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(943), 2, - sym_comment, - sym_include, - ACTIONS(179), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53620] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(944), 2, - sym_comment, - sym_include, - ACTIONS(94), 30, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53666] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(945), 2, - sym_comment, - sym_include, - ACTIONS(139), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53709] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1352), 1, - anon_sym_LPAREN, - STATE(946), 2, - sym_comment, - sym_include, - ACTIONS(127), 28, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53756] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1595), 1, - sym__namedot, - STATE(947), 2, - sym_comment, - sym_include, - ACTIONS(98), 28, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53803] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(948), 2, - sym_comment, - sym_include, - ACTIONS(163), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53846] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(949), 2, - sym_comment, - sym_include, - ACTIONS(159), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53889] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(950), 2, - sym_comment, - sym_include, - ACTIONS(175), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53932] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(951), 2, - sym_comment, - sym_include, - ACTIONS(94), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [53975] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1352), 1, - anon_sym_LPAREN, - STATE(952), 2, - sym_comment, - sym_include, - ACTIONS(108), 28, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54022] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(953), 2, - sym_comment, - sym_include, - ACTIONS(183), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54065] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(954), 2, - sym_comment, - sym_include, - ACTIONS(78), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54108] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(955), 2, - sym_comment, - sym_include, - ACTIONS(191), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54151] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(956), 2, - sym_comment, - sym_include, - ACTIONS(108), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54194] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(957), 2, - sym_comment, - sym_include, - ACTIONS(179), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54237] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(958), 2, - sym_comment, - sym_include, - ACTIONS(151), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54280] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - sym__namedot, - STATE(959), 2, - sym_comment, - sym_include, - ACTIONS(71), 28, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54327] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(960), 2, - sym_comment, - sym_include, - ACTIONS(143), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54370] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(961), 2, - sym_comment, - sym_include, - ACTIONS(195), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54413] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(962), 2, - sym_comment, - sym_include, - ACTIONS(147), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54456] = 4, + 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, + [45830] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(963), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1507), 1, + ts_builtin_sym_end, + STATE(837), 2, sym_comment, sym_include, - ACTIONS(207), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1509), 26, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54499] = 4, + 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, + [45875] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(964), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(838), 2, sym_comment, sym_include, - ACTIONS(104), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1511), 27, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54542] = 4, + 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, + [45918] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(965), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(839), 2, sym_comment, sym_include, - ACTIONS(98), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1513), 27, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54585] = 4, + 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, + [45961] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(966), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(840), 2, sym_comment, sym_include, - ACTIONS(215), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1515), 27, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54628] = 4, + 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, + [46004] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(967), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(841), 2, sym_comment, sym_include, - ACTIONS(127), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1517), 27, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54671] = 4, + 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, + [46047] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(968), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(842), 2, sym_comment, sym_include, - ACTIONS(90), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1519), 27, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54714] = 4, + 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, + [46090] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(969), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(843), 2, sym_comment, sym_include, - ACTIONS(86), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1521), 27, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54757] = 4, + 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, + [46133] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(970), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(844), 2, sym_comment, sym_include, - ACTIONS(82), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1523), 27, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54800] = 4, + 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, + [46176] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(971), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(845), 2, sym_comment, sym_include, - ACTIONS(135), 30, - anon_sym_SLASH, + ACTIONS(1525), 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, + [46219] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(846), 2, + sym_comment, + sym_include, + ACTIONS(1527), 27, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54843] = 4, + 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, + [46262] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(972), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(847), 2, sym_comment, sym_include, - ACTIONS(211), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1529), 27, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54886] = 4, + 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, + [46305] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(973), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(848), 2, sym_comment, sym_include, - ACTIONS(155), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1531), 27, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54929] = 4, + 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, + [46348] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(974), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(849), 2, sym_comment, sym_include, - ACTIONS(203), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1533), 27, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [54972] = 4, + 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, + [46391] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(975), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(850), 2, sym_comment, sym_include, - ACTIONS(199), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1535), 27, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55015] = 4, + 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, + [46434] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(976), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1537), 1, + ts_builtin_sym_end, + STATE(851), 2, sym_comment, sym_include, - ACTIONS(187), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1539), 26, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55058] = 4, + 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, + [46479] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(977), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1541), 1, + ts_builtin_sym_end, + STATE(852), 2, sym_comment, sym_include, - ACTIONS(167), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1543), 26, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55101] = 4, + 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, + [46524] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(978), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1545), 1, + ts_builtin_sym_end, + STATE(853), 2, sym_comment, sym_include, - ACTIONS(171), 30, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1547), 26, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55144] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [46569] = 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(1549), 1, + ts_builtin_sym_end, + STATE(854), 2, sym_comment, sym_include, - ACTIONS(183), 28, - anon_sym_SLASH, + ACTIONS(1551), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55188] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [46614] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(980), 2, + ACTIONS(1553), 1, + ts_builtin_sym_end, + STATE(855), 2, sym_comment, sym_include, - ACTIONS(215), 28, - anon_sym_SLASH, + ACTIONS(1555), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55232] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [46659] = 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(1557), 1, + ts_builtin_sym_end, + STATE(856), 2, sym_comment, sym_include, - ACTIONS(127), 28, - anon_sym_SLASH, + ACTIONS(1559), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55276] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [46704] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(982), 2, + STATE(857), 2, sym_comment, sym_include, - ACTIONS(151), 28, - anon_sym_SLASH, + ACTIONS(1561), 27, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55320] = 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_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, + [46747] = 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(1563), 1, + ts_builtin_sym_end, + STATE(858), 2, sym_comment, sym_include, - ACTIONS(179), 28, - anon_sym_SLASH, + ACTIONS(1565), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55364] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [46792] = 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(1567), 1, + ts_builtin_sym_end, + STATE(859), 2, sym_comment, sym_include, - ACTIONS(90), 28, - anon_sym_SLASH, + ACTIONS(1569), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55408] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [46837] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(985), 2, + ACTIONS(1571), 1, + ts_builtin_sym_end, + STATE(860), 2, sym_comment, sym_include, - ACTIONS(159), 28, - anon_sym_SLASH, + ACTIONS(1573), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55452] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [46882] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(986), 2, + ACTIONS(1575), 1, + ts_builtin_sym_end, + STATE(861), 2, sym_comment, sym_include, - ACTIONS(207), 28, - anon_sym_SLASH, + ACTIONS(1577), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55496] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [46927] = 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(1579), 1, + ts_builtin_sym_end, + STATE(862), 2, sym_comment, sym_include, - ACTIONS(195), 28, - anon_sym_SLASH, + ACTIONS(1581), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55540] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [46972] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(988), 2, + ACTIONS(1583), 1, + ts_builtin_sym_end, + STATE(863), 2, sym_comment, sym_include, - ACTIONS(86), 28, - anon_sym_SLASH, + ACTIONS(1585), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55584] = 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_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, + [47017] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1597), 1, - anon_sym_NO_DASHERROR, - STATE(989), 2, + ACTIONS(1587), 1, + ts_builtin_sym_end, + STATE(864), 2, sym_comment, sym_include, - ACTIONS(147), 27, - anon_sym_SLASH, + ACTIONS(1589), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55630] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47062] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(990), 2, + ACTIONS(1591), 1, + ts_builtin_sym_end, + STATE(865), 2, sym_comment, sym_include, - ACTIONS(155), 28, - anon_sym_SLASH, + ACTIONS(1593), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55674] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47107] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(991), 2, + ACTIONS(1595), 1, + ts_builtin_sym_end, + STATE(866), 2, sym_comment, sym_include, - ACTIONS(191), 28, - anon_sym_SLASH, + ACTIONS(1597), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55718] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47152] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1599), 1, + ts_builtin_sym_end, + STATE(867), 2, + sym_comment, + sym_include, + ACTIONS(1601), 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, + [47197] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(992), 2, + ACTIONS(1603), 1, + ts_builtin_sym_end, + STATE(868), 2, sym_comment, sym_include, - ACTIONS(94), 28, - anon_sym_SLASH, + ACTIONS(1605), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55762] = 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_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, + [47242] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1599), 1, - anon_sym_NO_DASHERROR, - STATE(993), 2, + ACTIONS(1607), 1, + ts_builtin_sym_end, + STATE(869), 2, sym_comment, sym_include, - ACTIONS(257), 27, - anon_sym_SLASH, + ACTIONS(1609), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55808] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47287] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(994), 2, + ACTIONS(1611), 1, + ts_builtin_sym_end, + STATE(870), 2, sym_comment, sym_include, - ACTIONS(171), 28, - anon_sym_SLASH, + ACTIONS(1613), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55852] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47332] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(995), 2, + ACTIONS(1615), 1, + ts_builtin_sym_end, + STATE(871), 2, sym_comment, sym_include, - ACTIONS(167), 28, - anon_sym_SLASH, + ACTIONS(1617), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55896] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47377] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(996), 2, + ACTIONS(1619), 1, + ts_builtin_sym_end, + STATE(872), 2, sym_comment, sym_include, - ACTIONS(82), 28, - anon_sym_SLASH, + ACTIONS(1621), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55940] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47422] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(997), 2, + ACTIONS(1623), 1, + ts_builtin_sym_end, + STATE(873), 2, sym_comment, sym_include, - ACTIONS(163), 28, - anon_sym_SLASH, + ACTIONS(1625), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [55984] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47467] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(998), 2, + ACTIONS(1627), 1, + ts_builtin_sym_end, + STATE(874), 2, sym_comment, sym_include, - ACTIONS(104), 28, - anon_sym_SLASH, + ACTIONS(1629), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [56028] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47512] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(999), 2, + ACTIONS(1631), 1, + ts_builtin_sym_end, + STATE(875), 2, sym_comment, sym_include, - ACTIONS(98), 28, - anon_sym_SLASH, + ACTIONS(1633), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [56072] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47557] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1000), 2, + ACTIONS(1635), 1, + ts_builtin_sym_end, + STATE(876), 2, sym_comment, sym_include, - ACTIONS(78), 28, - anon_sym_SLASH, + ACTIONS(1533), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [56116] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47602] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1001), 2, + ACTIONS(1637), 1, + ts_builtin_sym_end, + STATE(877), 2, sym_comment, sym_include, - ACTIONS(147), 28, - anon_sym_SLASH, + ACTIONS(1529), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [56160] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47647] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1002), 2, + ACTIONS(1639), 1, + ts_builtin_sym_end, + STATE(878), 2, sym_comment, sym_include, - ACTIONS(135), 28, - anon_sym_SLASH, + ACTIONS(1527), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [56204] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47692] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1003), 2, + ACTIONS(1641), 1, + ts_builtin_sym_end, + STATE(879), 2, sym_comment, sym_include, - ACTIONS(139), 28, - anon_sym_SLASH, + ACTIONS(1525), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [56248] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47737] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1004), 2, + ACTIONS(1643), 1, + ts_builtin_sym_end, + STATE(880), 2, sym_comment, sym_include, - ACTIONS(175), 28, - anon_sym_SLASH, + ACTIONS(1517), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [56292] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47782] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1005), 2, + ACTIONS(1645), 1, + ts_builtin_sym_end, + STATE(881), 2, sym_comment, sym_include, - ACTIONS(143), 28, - anon_sym_SLASH, + ACTIONS(1513), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [56336] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47827] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1006), 2, + ACTIONS(1647), 1, + ts_builtin_sym_end, + STATE(882), 2, sym_comment, sym_include, - ACTIONS(108), 28, - anon_sym_SLASH, + ACTIONS(1511), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [56380] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47872] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1007), 2, + ACTIONS(1649), 1, + ts_builtin_sym_end, + STATE(883), 2, sym_comment, sym_include, - ACTIONS(211), 28, - anon_sym_SLASH, + ACTIONS(1481), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [56424] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47917] = 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(884), 2, sym_comment, sym_include, - ACTIONS(203), 28, - anon_sym_SLASH, + ACTIONS(1651), 27, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [56468] = 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_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, + [47960] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1009), 2, + ACTIONS(1653), 1, + ts_builtin_sym_end, + STATE(885), 2, sym_comment, sym_include, - ACTIONS(199), 28, - anon_sym_SLASH, + ACTIONS(1655), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [56512] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [48005] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1010), 2, + ACTIONS(1657), 1, + ts_builtin_sym_end, + STATE(886), 2, sym_comment, sym_include, - ACTIONS(187), 28, - anon_sym_SLASH, + ACTIONS(1659), 26, sym_identifier, - anon_sym_STAR, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym__logical_operator_token3, - aux_sym__logical_operator_token4, - aux_sym__logical_operator_token5, - aux_sym__logical_operator_token6, - 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, - [56556] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [48050] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1011), 2, + ACTIONS(1661), 1, + ts_builtin_sym_end, + STATE(887), 2, sym_comment, sym_include, - ACTIONS(1601), 27, + ACTIONS(1663), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93701,19 +85576,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56599] = 5, + [48095] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1012), 2, + ACTIONS(1665), 1, + ts_builtin_sym_end, + STATE(888), 2, sym_comment, sym_include, - ACTIONS(1603), 27, + ACTIONS(1667), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93739,19 +85615,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56642] = 6, + [48140] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1605), 1, + ACTIONS(1669), 1, ts_builtin_sym_end, - STATE(1013), 2, + STATE(889), 2, sym_comment, sym_include, - ACTIONS(1607), 26, + ACTIONS(1671), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93778,19 +85654,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56687] = 6, + [48185] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1609), 1, + ACTIONS(1673), 1, ts_builtin_sym_end, - STATE(1014), 2, + STATE(890), 2, sym_comment, sym_include, - ACTIONS(1611), 26, + ACTIONS(1675), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93817,19 +85693,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56732] = 6, + [48230] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1613), 1, + ACTIONS(1677), 1, ts_builtin_sym_end, - STATE(1015), 2, + STATE(891), 2, sym_comment, sym_include, - ACTIONS(1615), 26, + ACTIONS(1493), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93856,19 +85732,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56777] = 6, + [48275] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1679), 1, ts_builtin_sym_end, - STATE(1016), 2, + STATE(892), 2, sym_comment, sym_include, - ACTIONS(1619), 26, + ACTIONS(1681), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93895,19 +85771,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56822] = 6, + [48320] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1621), 1, + ACTIONS(1683), 1, ts_builtin_sym_end, - STATE(1017), 2, + STATE(893), 2, sym_comment, sym_include, - ACTIONS(1623), 26, + ACTIONS(1685), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93934,19 +85810,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56867] = 6, + [48365] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1625), 1, + ACTIONS(1687), 1, ts_builtin_sym_end, - STATE(1018), 2, + STATE(894), 2, sym_comment, sym_include, - ACTIONS(1627), 26, + ACTIONS(1689), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93973,19 +85849,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56912] = 6, + [48410] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1629), 1, + ACTIONS(1691), 1, ts_builtin_sym_end, - STATE(1019), 2, + STATE(895), 2, sym_comment, sym_include, - ACTIONS(1631), 26, + ACTIONS(1693), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94012,19 +85888,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56957] = 6, + [48455] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(1020), 2, + STATE(896), 2, sym_comment, sym_include, - ACTIONS(1635), 26, + ACTIONS(1697), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94051,20 +85927,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57002] = 6, + [48500] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1637), 1, - ts_builtin_sym_end, - STATE(1021), 2, + STATE(897), 2, sym_comment, sym_include, - ACTIONS(1639), 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, @@ -94090,19 +85965,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57047] = 6, + [48543] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1641), 1, + ACTIONS(1701), 1, ts_builtin_sym_end, - STATE(1022), 2, + STATE(898), 2, sym_comment, sym_include, - ACTIONS(1643), 26, + ACTIONS(1703), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94129,19 +86004,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57092] = 5, + [48588] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1023), 2, + ACTIONS(1705), 1, + ts_builtin_sym_end, + STATE(899), 2, sym_comment, sym_include, - ACTIONS(1635), 27, + ACTIONS(1707), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94167,19 +86043,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57135] = 6, + [48633] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1645), 1, + ACTIONS(1709), 1, ts_builtin_sym_end, - STATE(1024), 2, + STATE(900), 2, sym_comment, sym_include, - ACTIONS(1647), 26, + ACTIONS(1711), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94206,19 +86082,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57180] = 6, + [48678] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1649), 1, + ACTIONS(1713), 1, ts_builtin_sym_end, - STATE(1025), 2, + STATE(901), 2, sym_comment, sym_include, - ACTIONS(1651), 26, + ACTIONS(1715), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94245,19 +86121,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57225] = 6, + [48723] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1653), 1, + ACTIONS(1717), 1, ts_builtin_sym_end, - STATE(1026), 2, + STATE(902), 2, sym_comment, sym_include, - ACTIONS(1655), 26, + ACTIONS(1719), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94284,19 +86160,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57270] = 6, + [48768] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1657), 1, + ACTIONS(1721), 1, ts_builtin_sym_end, - STATE(1027), 2, + STATE(903), 2, sym_comment, sym_include, - ACTIONS(1659), 26, + ACTIONS(1723), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94323,19 +86199,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57315] = 6, + [48813] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1661), 1, + ACTIONS(1725), 1, ts_builtin_sym_end, - STATE(1028), 2, + STATE(904), 2, sym_comment, sym_include, - ACTIONS(1663), 26, + ACTIONS(1727), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94362,19 +86238,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57360] = 5, + [48858] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1029), 2, + ACTIONS(1729), 1, + ts_builtin_sym_end, + STATE(905), 2, sym_comment, sym_include, - ACTIONS(1663), 27, + ACTIONS(1731), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94400,19 +86277,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57403] = 6, + [48903] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1665), 1, + ACTIONS(1733), 1, ts_builtin_sym_end, - STATE(1030), 2, + STATE(906), 2, sym_comment, sym_include, - ACTIONS(1667), 26, + ACTIONS(1735), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94439,19 +86316,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57448] = 6, + [48948] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1669), 1, + ACTIONS(1737), 1, ts_builtin_sym_end, - STATE(1031), 2, + STATE(907), 2, sym_comment, sym_include, - ACTIONS(1671), 26, + ACTIONS(1739), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94478,19 +86355,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57493] = 6, + [48993] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1673), 1, + ACTIONS(1741), 1, ts_builtin_sym_end, - STATE(1032), 2, + STATE(908), 2, sym_comment, sym_include, - ACTIONS(1675), 26, + ACTIONS(1743), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94517,19 +86394,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57538] = 6, + [49038] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1677), 1, + ACTIONS(1745), 1, ts_builtin_sym_end, - STATE(1033), 2, + STATE(909), 2, sym_comment, sym_include, - ACTIONS(1679), 26, + ACTIONS(1747), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94556,19 +86433,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57583] = 6, + [49083] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1681), 1, + ACTIONS(1749), 1, ts_builtin_sym_end, - STATE(1034), 2, + STATE(910), 2, sym_comment, sym_include, - ACTIONS(1683), 26, + ACTIONS(1751), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94595,19 +86472,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57628] = 6, + [49128] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1685), 1, + ACTIONS(1753), 1, ts_builtin_sym_end, - STATE(1035), 2, + STATE(911), 2, sym_comment, sym_include, - ACTIONS(1687), 26, + ACTIONS(1755), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94634,19 +86511,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57673] = 6, + [49173] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1757), 1, ts_builtin_sym_end, - STATE(1036), 2, + STATE(912), 2, sym_comment, sym_include, - ACTIONS(1603), 26, + ACTIONS(1759), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94673,20 +86550,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57718] = 6, + [49218] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1691), 1, - ts_builtin_sym_end, - STATE(1037), 2, + STATE(913), 2, sym_comment, sym_include, - ACTIONS(1693), 26, + ACTIONS(1633), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94712,19 +86588,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57763] = 6, + [49261] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1761), 1, + anon_sym_NO_DASHERROR, + ACTIONS(173), 2, + sym__or_operator, + sym__and_operator, + STATE(914), 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, + [49308] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1763), 1, ts_builtin_sym_end, - STATE(1038), 2, + STATE(915), 2, sym_comment, sym_include, - ACTIONS(1697), 26, + ACTIONS(1765), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94751,19 +86667,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57808] = 6, + [49353] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1699), 1, + ACTIONS(1767), 1, ts_builtin_sym_end, - STATE(1039), 2, + STATE(916), 2, sym_comment, sym_include, - ACTIONS(1701), 26, + ACTIONS(1769), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94790,19 +86706,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57853] = 6, + [49398] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1703), 1, + ACTIONS(1771), 1, ts_builtin_sym_end, - STATE(1040), 2, + STATE(917), 2, sym_comment, sym_include, - ACTIONS(1705), 26, + ACTIONS(1773), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94829,19 +86745,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57898] = 6, + [49443] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1707), 1, + ACTIONS(1775), 1, ts_builtin_sym_end, - STATE(1041), 2, + STATE(918), 2, sym_comment, sym_include, - ACTIONS(1709), 26, + ACTIONS(1777), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94868,19 +86784,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57943] = 6, + [49488] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1711), 1, + ACTIONS(1779), 1, ts_builtin_sym_end, - STATE(1042), 2, + STATE(919), 2, sym_comment, sym_include, - ACTIONS(1713), 26, + ACTIONS(1781), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94907,19 +86823,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57988] = 6, + [49533] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, + ACTIONS(1783), 1, ts_builtin_sym_end, - STATE(1043), 2, + STATE(920), 2, sym_comment, sym_include, - ACTIONS(1717), 26, + ACTIONS(1785), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94946,19 +86862,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58033] = 6, + [49578] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1719), 1, + ACTIONS(1787), 1, ts_builtin_sym_end, - STATE(1044), 2, + STATE(921), 2, sym_comment, sym_include, - ACTIONS(1721), 26, + ACTIONS(1789), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94985,19 +86901,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58078] = 6, + [49623] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1723), 1, + ACTIONS(1791), 1, ts_builtin_sym_end, - STATE(1045), 2, + STATE(922), 2, sym_comment, sym_include, - ACTIONS(1725), 26, + ACTIONS(1793), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95024,19 +86940,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58123] = 6, + [49668] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1727), 1, + ACTIONS(1795), 1, ts_builtin_sym_end, - STATE(1046), 2, + STATE(923), 2, sym_comment, sym_include, - ACTIONS(1729), 26, + ACTIONS(1797), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95063,19 +86979,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58168] = 6, + [49713] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1731), 1, + ACTIONS(1799), 1, ts_builtin_sym_end, - STATE(1047), 2, + STATE(924), 2, sym_comment, sym_include, - ACTIONS(1733), 26, + ACTIONS(1801), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95102,19 +87018,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58213] = 6, + [49758] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1735), 1, + ACTIONS(1803), 1, ts_builtin_sym_end, - STATE(1048), 2, + STATE(925), 2, sym_comment, sym_include, - ACTIONS(1737), 26, + ACTIONS(1805), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95141,20 +87057,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58258] = 6, + [49803] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1739), 1, - ts_builtin_sym_end, - STATE(1049), 2, + STATE(926), 2, sym_comment, sym_include, - ACTIONS(1741), 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, @@ -95180,19 +87095,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58303] = 6, + [49846] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1743), 1, + ACTIONS(1807), 1, ts_builtin_sym_end, - STATE(1050), 2, + STATE(927), 2, sym_comment, sym_include, - ACTIONS(1745), 26, + ACTIONS(1809), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95219,19 +87134,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58348] = 6, + [49891] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1747), 1, + ACTIONS(1811), 1, ts_builtin_sym_end, - STATE(1051), 2, + STATE(928), 2, sym_comment, sym_include, - ACTIONS(1749), 26, + ACTIONS(1813), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95258,19 +87173,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58393] = 6, + [49936] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1751), 1, + ACTIONS(1815), 1, ts_builtin_sym_end, - STATE(1052), 2, + STATE(929), 2, sym_comment, sym_include, - ACTIONS(1753), 26, + ACTIONS(1817), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95297,19 +87212,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58438] = 6, + [49981] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1755), 1, + ACTIONS(1819), 1, ts_builtin_sym_end, - STATE(1053), 2, + STATE(930), 2, sym_comment, sym_include, - ACTIONS(1757), 26, + ACTIONS(1821), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95336,19 +87251,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58483] = 6, + [50026] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, + ACTIONS(1823), 1, ts_builtin_sym_end, - STATE(1054), 2, + STATE(931), 2, sym_comment, sym_include, - ACTIONS(1761), 26, + ACTIONS(1825), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95375,19 +87290,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58528] = 5, + [50071] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1055), 2, + ACTIONS(1827), 1, + ts_builtin_sym_end, + STATE(932), 2, sym_comment, sym_include, - ACTIONS(1763), 27, + ACTIONS(1829), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95413,19 +87329,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58571] = 6, + [50116] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1765), 1, + ACTIONS(1831), 1, ts_builtin_sym_end, - STATE(1056), 2, + STATE(933), 2, sym_comment, sym_include, - ACTIONS(1767), 26, + ACTIONS(1833), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95452,20 +87368,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58616] = 6, + [50161] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1769), 1, - ts_builtin_sym_end, - STATE(1057), 2, + STATE(934), 2, sym_comment, sym_include, - ACTIONS(1771), 26, + ACTIONS(1625), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95491,17 +87406,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58661] = 5, + [50204] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1058), 2, + ACTIONS(1835), 1, + anon_sym_NO_DASHERROR, + ACTIONS(455), 2, + sym__or_operator, + sym__and_operator, + STATE(935), 2, + sym_comment, + sym_include, + ACTIONS(453), 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, + [50251] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(936), 2, sym_comment, sym_include, - ACTIONS(1627), 27, + ACTIONS(1655), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -95529,19 +87484,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58704] = 5, + [50294] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1059), 2, + ACTIONS(1837), 1, + ts_builtin_sym_end, + STATE(937), 2, sym_comment, sym_include, - ACTIONS(1773), 27, + ACTIONS(1839), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95567,19 +87523,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58747] = 6, + [50339] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1841), 1, ts_builtin_sym_end, - STATE(1060), 2, + STATE(938), 2, sym_comment, sym_include, - ACTIONS(1777), 26, + ACTIONS(1843), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95606,19 +87562,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58792] = 6, + [50384] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1779), 1, + ACTIONS(1845), 1, ts_builtin_sym_end, - STATE(1061), 2, + STATE(939), 2, sym_comment, sym_include, - ACTIONS(1781), 26, + ACTIONS(1847), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95645,19 +87601,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58837] = 6, + [50429] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1783), 1, + ACTIONS(1849), 1, ts_builtin_sym_end, - STATE(1062), 2, + STATE(940), 2, sym_comment, sym_include, - ACTIONS(1785), 26, + ACTIONS(1851), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95684,19 +87640,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58882] = 6, + [50474] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1787), 1, + ACTIONS(1853), 1, ts_builtin_sym_end, - STATE(1063), 2, + STATE(941), 2, sym_comment, sym_include, - ACTIONS(1789), 26, + ACTIONS(1855), 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, + [50519] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1857), 1, + ts_builtin_sym_end, + STATE(942), 2, + sym_comment, + sym_include, + ACTIONS(1561), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95723,19 +87718,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58927] = 5, + [50564] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1064), 2, + ACTIONS(1859), 1, + ts_builtin_sym_end, + STATE(943), 2, sym_comment, sym_include, - ACTIONS(1623), 27, + ACTIONS(1861), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95761,19 +87757,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58970] = 5, + [50609] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1065), 2, + ACTIONS(1863), 1, + ts_builtin_sym_end, + STATE(944), 2, sym_comment, sym_include, - ACTIONS(1619), 27, + ACTIONS(1865), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95799,19 +87796,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59013] = 6, + [50654] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1791), 1, + ACTIONS(1867), 1, ts_builtin_sym_end, - STATE(1066), 2, + STATE(945), 2, sym_comment, sym_include, - ACTIONS(1793), 26, + ACTIONS(1869), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95838,19 +87835,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59058] = 6, + [50699] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1795), 1, + ACTIONS(1871), 1, ts_builtin_sym_end, - STATE(1067), 2, + STATE(946), 2, sym_comment, sym_include, - ACTIONS(1797), 26, + ACTIONS(1873), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95877,19 +87874,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59103] = 6, + [50744] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1799), 1, + ACTIONS(1875), 1, ts_builtin_sym_end, - STATE(1068), 2, + STATE(947), 2, sym_comment, sym_include, - ACTIONS(1801), 26, + ACTIONS(1877), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95916,19 +87913,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59148] = 6, + [50789] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1803), 1, + ACTIONS(1879), 1, ts_builtin_sym_end, - STATE(1069), 2, + STATE(948), 2, sym_comment, sym_include, - ACTIONS(1805), 26, + ACTIONS(1881), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95955,20 +87952,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59193] = 6, + [50834] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, - ts_builtin_sym_end, - STATE(1070), 2, + STATE(949), 2, sym_comment, sym_include, - ACTIONS(1809), 26, + ACTIONS(1883), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95994,20 +87990,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59238] = 6, + [50877] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1811), 1, - ts_builtin_sym_end, - STATE(1071), 2, + STATE(950), 2, sym_comment, sym_include, - ACTIONS(1813), 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, @@ -96033,20 +88028,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59283] = 6, + [50920] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1815), 1, - ts_builtin_sym_end, - STATE(1072), 2, + STATE(951), 2, sym_comment, sym_include, - ACTIONS(1817), 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, @@ -96072,20 +88066,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59328] = 6, + [50963] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1819), 1, - ts_builtin_sym_end, - STATE(1073), 2, + STATE(952), 2, sym_comment, sym_include, - ACTIONS(1821), 26, + ACTIONS(1881), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96111,19 +88104,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59373] = 6, + [51006] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1823), 1, + ACTIONS(1885), 1, ts_builtin_sym_end, - STATE(1074), 2, + STATE(953), 2, sym_comment, sym_include, - ACTIONS(1825), 26, + ACTIONS(1887), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96150,20 +88143,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59418] = 6, + [51051] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1827), 1, - ts_builtin_sym_end, - STATE(1075), 2, + STATE(954), 2, sym_comment, sym_include, - ACTIONS(1829), 26, + ACTIONS(1877), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96189,20 +88181,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59463] = 6, + [51094] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1831), 1, - ts_builtin_sym_end, - STATE(1076), 2, + STATE(955), 2, sym_comment, sym_include, - ACTIONS(1833), 26, + ACTIONS(1873), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96228,20 +88219,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59508] = 6, + [51137] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1835), 1, - ts_builtin_sym_end, - STATE(1077), 2, + STATE(956), 2, sym_comment, sym_include, - ACTIONS(1837), 26, + ACTIONS(1869), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96267,17 +88257,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59553] = 5, + [51180] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1078), 2, + STATE(957), 2, sym_comment, sym_include, - ACTIONS(1639), 27, + ACTIONS(1617), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -96305,19 +88295,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59596] = 5, + [51223] = 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(1889), 1, + ts_builtin_sym_end, + STATE(958), 2, sym_comment, sym_include, - ACTIONS(1643), 27, + ACTIONS(1891), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96343,19 +88334,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59639] = 5, + [51268] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1080), 2, + ACTIONS(1893), 1, + ts_builtin_sym_end, + STATE(959), 2, sym_comment, sym_include, - ACTIONS(1615), 27, + ACTIONS(1895), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96381,17 +88373,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59682] = 5, + [51313] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1081), 2, + STATE(960), 2, sym_comment, sym_include, - ACTIONS(1611), 27, + ACTIONS(1613), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -96419,19 +88411,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59725] = 5, + [51356] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1082), 2, + ACTIONS(1897), 1, + ts_builtin_sym_end, + STATE(961), 2, sym_comment, sym_include, - ACTIONS(1607), 27, + ACTIONS(1883), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96457,19 +88450,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59768] = 5, + [51401] = 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(1899), 1, + ts_builtin_sym_end, + STATE(962), 2, sym_comment, sym_include, - ACTIONS(1647), 27, + ACTIONS(1699), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96495,19 +88489,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59811] = 6, + [51446] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1839), 1, + ACTIONS(1901), 1, ts_builtin_sym_end, - STATE(1084), 2, + STATE(963), 2, sym_comment, sym_include, - ACTIONS(1841), 26, + ACTIONS(1651), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96534,19 +88528,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59856] = 6, + [51491] = 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(1903), 1, ts_builtin_sym_end, - STATE(1085), 2, + STATE(964), 2, sym_comment, sym_include, - ACTIONS(1845), 26, + ACTIONS(1905), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96573,19 +88567,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59901] = 6, + [51536] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1847), 1, + ACTIONS(1907), 1, ts_builtin_sym_end, - STATE(1086), 2, + STATE(965), 2, sym_comment, sym_include, - ACTIONS(1849), 26, + ACTIONS(1479), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96612,19 +88606,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59946] = 6, + [51581] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1851), 1, + ACTIONS(1909), 1, ts_builtin_sym_end, - STATE(1087), 2, + STATE(966), 2, sym_comment, sym_include, - ACTIONS(1853), 26, + ACTIONS(1483), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96651,20 +88645,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59991] = 6, + [51626] = 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(1088), 2, + STATE(967), 2, sym_comment, sym_include, - ACTIONS(1857), 26, + ACTIONS(1905), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96690,19 +88683,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60036] = 6, + [51669] = 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(1911), 1, ts_builtin_sym_end, - STATE(1089), 2, + STATE(968), 2, sym_comment, sym_include, - ACTIONS(1861), 26, + ACTIONS(1489), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96729,19 +88722,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60081] = 6, + [51714] = 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(1913), 1, ts_builtin_sym_end, - STATE(1090), 2, + STATE(969), 2, sym_comment, sym_include, - ACTIONS(1865), 26, + ACTIONS(1491), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96768,20 +88761,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60126] = 6, + [51759] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1867), 1, - ts_builtin_sym_end, - STATE(1091), 2, + STATE(970), 2, sym_comment, sym_include, - ACTIONS(1869), 26, + ACTIONS(1609), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96807,20 +88799,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60171] = 6, + [51802] = 5, 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(1092), 2, + STATE(971), 2, sym_comment, sym_include, - ACTIONS(1873), 26, + ACTIONS(1865), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96846,20 +88837,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60216] = 6, + [51845] = 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(1093), 2, + STATE(972), 2, sym_comment, sym_include, - ACTIONS(1877), 26, + ACTIONS(1861), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96885,20 +88875,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60261] = 6, + [51888] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, - ts_builtin_sym_end, - STATE(1094), 2, + STATE(973), 2, sym_comment, sym_include, - ACTIONS(1881), 26, + ACTIONS(1681), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96924,20 +88913,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60306] = 6, + [51931] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1883), 1, - ts_builtin_sym_end, - STATE(1095), 2, + STATE(974), 2, sym_comment, sym_include, - ACTIONS(1885), 26, + ACTIONS(1605), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96963,20 +88951,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60351] = 6, + [51974] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1887), 1, - ts_builtin_sym_end, - STATE(1096), 2, + STATE(975), 2, sym_comment, sym_include, - ACTIONS(1889), 26, + ACTIONS(1601), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97002,20 +88989,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60396] = 6, + [52017] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1891), 1, - ts_builtin_sym_end, - STATE(1097), 2, + STATE(976), 2, sym_comment, sym_include, - ACTIONS(1893), 26, + ACTIONS(1597), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97041,20 +89027,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60441] = 6, + [52060] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1895), 1, - ts_builtin_sym_end, - STATE(1098), 2, + STATE(977), 2, sym_comment, sym_include, - ACTIONS(1897), 26, + ACTIONS(1855), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97080,20 +89065,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60486] = 6, + [52103] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1899), 1, - ts_builtin_sym_end, - STATE(1099), 2, + STATE(978), 2, + sym_comment, + sym_include, + ACTIONS(1851), 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, + [52146] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(979), 2, + sym_comment, + sym_include, + ACTIONS(1663), 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, + [52189] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(980), 2, sym_comment, sym_include, - ACTIONS(1901), 26, + ACTIONS(1847), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97119,20 +89179,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60531] = 6, + [52232] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1903), 1, - ts_builtin_sym_end, - STATE(1100), 2, + STATE(981), 2, sym_comment, sym_include, - ACTIONS(1905), 26, + ACTIONS(1843), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97158,20 +89217,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60576] = 6, + [52275] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1907), 1, - ts_builtin_sym_end, - STATE(1101), 2, + ACTIONS(1360), 1, + anon_sym_LPAREN, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(982), 2, sym_comment, sym_include, - ACTIONS(1909), 26, + 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, + [52322] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(983), 2, + sym_comment, + sym_include, + ACTIONS(1839), 27, + sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97197,17 +89295,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60621] = 5, + [52365] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1102), 2, + STATE(984), 2, sym_comment, sym_include, - ACTIONS(1911), 27, + ACTIONS(1915), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -97235,19 +89333,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60664] = 5, + [52408] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1103), 2, + ACTIONS(1917), 1, + ts_builtin_sym_end, + STATE(985), 2, sym_comment, sym_include, - ACTIONS(1651), 27, + ACTIONS(1919), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97273,17 +89372,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60707] = 5, + [52453] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1104), 2, + STATE(986), 2, sym_comment, sym_include, - ACTIONS(1709), 27, + ACTIONS(1833), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -97311,17 +89410,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60750] = 5, + [52496] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1105), 2, + STATE(987), 2, sym_comment, sym_include, - ACTIONS(1655), 27, + ACTIONS(1593), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -97349,17 +89448,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60793] = 5, + [52539] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1106), 2, + STATE(988), 2, sym_comment, sym_include, - ACTIONS(1761), 27, + ACTIONS(1589), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -97387,16 +89486,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60836] = 6, + [52582] = 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(1921), 1, ts_builtin_sym_end, - STATE(1107), 2, + STATE(989), 2, sym_comment, sym_include, ACTIONS(1915), 26, @@ -97426,19 +89525,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60881] = 6, + [52627] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, + ACTIONS(1923), 1, ts_builtin_sym_end, - STATE(1108), 2, + STATE(990), 2, sym_comment, sym_include, - ACTIONS(1919), 26, + ACTIONS(1515), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -97465,19 +89564,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60926] = 6, + [52672] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1925), 1, ts_builtin_sym_end, - STATE(1109), 2, + STATE(991), 2, sym_comment, sym_include, - ACTIONS(1923), 26, + ACTIONS(1519), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -97504,19 +89603,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60971] = 5, + [52717] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1110), 2, + ACTIONS(1927), 1, + ts_builtin_sym_end, + STATE(992), 2, sym_comment, sym_include, - ACTIONS(1925), 27, + ACTIONS(1521), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97542,19 +89642,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61014] = 6, + [52762] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1927), 1, + ACTIONS(1929), 1, ts_builtin_sym_end, - STATE(1111), 2, + STATE(993), 2, sym_comment, sym_include, - ACTIONS(1929), 26, + ACTIONS(1523), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -97581,20 +89681,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61059] = 6, + [52807] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, - ts_builtin_sym_end, - STATE(1112), 2, + STATE(994), 2, sym_comment, sym_include, - ACTIONS(1933), 26, + ACTIONS(1585), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97620,20 +89719,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61104] = 6, + [52850] = 7, 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(1113), 2, + ACTIONS(1360), 1, + anon_sym_LPAREN, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, + STATE(995), 2, sym_comment, sym_include, - ACTIONS(1937), 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, + [52897] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(996), 2, + sym_comment, + sym_include, + ACTIONS(1581), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97659,20 +89797,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61149] = 6, + [52940] = 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(1114), 2, + STATE(997), 2, sym_comment, sym_include, - ACTIONS(1941), 26, + ACTIONS(1577), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97698,20 +89835,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61194] = 6, + [52983] = 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(1115), 2, + STATE(998), 2, sym_comment, sym_include, - ACTIONS(1945), 26, + ACTIONS(1829), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97737,20 +89873,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61239] = 6, + [53026] = 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(1116), 2, + STATE(999), 2, sym_comment, sym_include, - ACTIONS(1949), 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, @@ -97776,20 +89911,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61284] = 6, + [53069] = 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(1117), 2, + STATE(1000), 2, sym_comment, sym_include, - ACTIONS(1953), 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, @@ -97815,20 +89949,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61329] = 6, + [53112] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1955), 1, - ts_builtin_sym_end, - STATE(1118), 2, + STATE(1001), 2, sym_comment, sym_include, - ACTIONS(1957), 26, + ACTIONS(1559), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97854,20 +89987,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61374] = 6, + [53155] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1959), 1, - ts_builtin_sym_end, - STATE(1119), 2, + STATE(1002), 2, sym_comment, sym_include, - ACTIONS(1961), 26, + ACTIONS(1825), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97893,19 +90025,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61419] = 6, + [53198] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1963), 1, + ACTIONS(1931), 1, + sym__namedot, + ACTIONS(111), 2, + sym__or_operator, + sym__and_operator, + STATE(1003), 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, + [53245] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, ts_builtin_sym_end, - STATE(1120), 2, + STATE(1004), 2, sym_comment, sym_include, - ACTIONS(1965), 26, + ACTIONS(1531), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -97932,17 +90104,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61464] = 5, + [53290] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1121), 2, + STATE(1005), 2, sym_comment, sym_include, - ACTIONS(1967), 27, + ACTIONS(1821), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -97970,17 +90142,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61507] = 5, + [53333] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1122), 2, + ACTIONS(1935), 1, + ts_builtin_sym_end, + STATE(1006), 2, sym_comment, sym_include, - ACTIONS(1969), 27, + ACTIONS(1535), 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, + [53378] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1007), 2, + sym_comment, + sym_include, + ACTIONS(1547), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -98008,17 +90219,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61550] = 5, + [53421] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1123), 2, + STATE(1008), 2, sym_comment, sym_include, - ACTIONS(1971), 27, + ACTIONS(1937), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -98046,19 +90257,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61593] = 6, + [53464] = 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(1939), 1, ts_builtin_sym_end, - STATE(1124), 2, + STATE(1009), 2, sym_comment, sym_include, - ACTIONS(1975), 26, + ACTIONS(1941), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98085,17 +90296,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61638] = 5, + [53509] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1125), 2, + STATE(1010), 2, sym_comment, sym_include, - ACTIONS(1659), 27, + ACTIONS(1543), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -98123,17 +90334,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61681] = 5, + [53552] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1126), 2, + STATE(1011), 2, sym_comment, sym_include, - ACTIONS(1977), 27, + ACTIONS(1539), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -98161,17 +90372,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61724] = 5, + [53595] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1127), 2, + STATE(1012), 2, sym_comment, sym_include, - ACTIONS(1667), 27, + ACTIONS(1817), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -98199,17 +90410,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61767] = 5, + [53638] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1128), 2, + STATE(1013), 2, sym_comment, sym_include, - ACTIONS(1671), 27, + ACTIONS(1813), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -98237,17 +90448,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61810] = 5, + [53681] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1129), 2, + STATE(1014), 2, sym_comment, sym_include, - ACTIONS(1675), 27, + ACTIONS(1809), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -98275,20 +90486,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61853] = 6, + [53724] = 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(1130), 2, + STATE(1015), 2, sym_comment, sym_include, - ACTIONS(1981), 26, + ACTIONS(1805), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98314,20 +90524,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61898] = 6, + [53767] = 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(1131), 2, + STATE(1016), 2, sym_comment, sym_include, - ACTIONS(1985), 26, + ACTIONS(1801), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98353,20 +90562,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61943] = 6, + [53810] = 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(1132), 2, + STATE(1017), 2, sym_comment, sym_include, - ACTIONS(1989), 26, + ACTIONS(1943), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98392,20 +90600,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61988] = 6, + [53853] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1018), 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, + [53896] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1991), 1, - ts_builtin_sym_end, - STATE(1133), 2, + STATE(1019), 2, sym_comment, sym_include, - ACTIONS(1993), 26, + ACTIONS(1797), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98431,20 +90676,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62033] = 6, + [53939] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1995), 1, - ts_builtin_sym_end, - STATE(1134), 2, + STATE(1020), 2, sym_comment, sym_include, - ACTIONS(1977), 26, + ACTIONS(1793), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98470,19 +90714,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62078] = 6, + [53982] = 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(1945), 1, ts_builtin_sym_end, - STATE(1135), 2, + STATE(1021), 2, sym_comment, sym_include, - ACTIONS(1999), 26, + ACTIONS(1943), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98509,20 +90753,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62123] = 6, + [54027] = 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(1136), 2, + STATE(1022), 2, sym_comment, sym_include, - ACTIONS(1601), 26, + ACTIONS(1667), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98548,20 +90791,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62168] = 6, + [54070] = 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(1137), 2, + STATE(1023), 2, sym_comment, sym_include, - ACTIONS(2005), 26, + ACTIONS(1671), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98587,20 +90829,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62213] = 6, + [54113] = 8, 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(1138), 2, + ACTIONS(1433), 1, + sym__namecolon, + STATE(1057), 1, + aux_sym_object_access_repeat1, + ACTIONS(107), 2, + sym__or_operator, + sym__and_operator, + STATE(1024), 2, sym_comment, sym_include, - ACTIONS(2009), 26, + ACTIONS(105), 23, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_NO_DASHERROR, + [54162] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1025), 2, + sym_comment, + sym_include, + ACTIONS(1675), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98626,20 +90908,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62258] = 6, + [54205] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2011), 1, - ts_builtin_sym_end, - STATE(1139), 2, + STATE(1026), 2, sym_comment, sym_include, - ACTIONS(2013), 26, + ACTIONS(1789), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98665,20 +90946,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62303] = 6, + [54248] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2015), 1, - ts_builtin_sym_end, - STATE(1140), 2, + STATE(1027), 2, sym_comment, sym_include, - ACTIONS(2017), 26, + ACTIONS(1947), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98704,20 +90984,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62348] = 6, + [54291] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2019), 1, - ts_builtin_sym_end, - STATE(1141), 2, + STATE(1028), 2, sym_comment, sym_include, - ACTIONS(2021), 26, + ACTIONS(1785), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98743,20 +91022,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62393] = 6, + [54334] = 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(1142), 2, + STATE(1029), 2, sym_comment, sym_include, - ACTIONS(2025), 26, + ACTIONS(1781), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98782,17 +91060,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62438] = 5, + [54377] = 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(1030), 2, sym_comment, sym_include, - ACTIONS(1679), 27, + ACTIONS(1777), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -98820,17 +91098,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62481] = 5, + [54420] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1144), 2, + STATE(1031), 2, sym_comment, sym_include, - ACTIONS(1683), 27, + ACTIONS(1773), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -98858,17 +91136,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62524] = 5, + [54463] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1145), 2, + STATE(1032), 2, sym_comment, sym_include, - ACTIONS(1687), 27, + ACTIONS(1769), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -98896,19 +91174,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62567] = 6, + [54506] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2027), 1, + STATE(1033), 2, + sym_comment, + sym_include, + 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, + 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, + [54549] = 6, + 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(1146), 2, + STATE(1034), 2, sym_comment, sym_include, - ACTIONS(1911), 26, + ACTIONS(1951), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98935,17 +91251,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62612] = 5, + [54594] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1147), 2, + STATE(1035), 2, sym_comment, sym_include, - ACTIONS(1693), 27, + ACTIONS(1759), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -98973,17 +91289,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62655] = 5, + [54637] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1148), 2, + STATE(1036), 2, sym_comment, sym_include, - ACTIONS(2017), 27, + ACTIONS(1953), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -99011,17 +91327,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62698] = 5, + [54680] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1149), 2, + STATE(1037), 2, sym_comment, sym_include, - ACTIONS(2013), 27, + ACTIONS(1755), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -99049,19 +91365,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62741] = 5, + [54723] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1150), 2, + ACTIONS(1955), 1, + ts_builtin_sym_end, + STATE(1038), 2, sym_comment, sym_include, - ACTIONS(2009), 27, + ACTIONS(1957), 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, + [54768] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1959), 1, + ts_builtin_sym_end, + STATE(1039), 2, + sym_comment, + sym_include, + ACTIONS(1961), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99087,19 +91443,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62784] = 5, + [54813] = 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(1963), 1, + ts_builtin_sym_end, + STATE(1040), 2, sym_comment, sym_include, - ACTIONS(2005), 27, + ACTIONS(1965), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99125,19 +91482,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62827] = 5, + [54858] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1152), 2, + ACTIONS(1967), 1, + ts_builtin_sym_end, + STATE(1041), 2, sym_comment, sym_include, - ACTIONS(1717), 27, + ACTIONS(1969), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99163,19 +91521,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62870] = 5, + [54903] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1153), 2, + ACTIONS(1971), 1, + ts_builtin_sym_end, + STATE(1042), 2, sym_comment, sym_include, - ACTIONS(1999), 27, + ACTIONS(1973), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99201,17 +91560,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62913] = 5, + [54948] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1154), 2, + STATE(1043), 2, sym_comment, sym_include, - ACTIONS(1721), 27, + ACTIONS(1751), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -99239,93 +91598,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62956] = 5, + [54991] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1155), 2, + ACTIONS(1386), 1, + sym__namedot, + STATE(1047), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(81), 2, + sym__or_operator, + sym__and_operator, + STATE(1044), 2, sym_comment, sym_include, - ACTIONS(1993), 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, - [62999] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(79), 24, + anon_sym_SLASH, anon_sym_LBRACE, - STATE(1156), 2, - sym_comment, - sym_include, - ACTIONS(1989), 27, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [63042] = 5, + 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, + [55038] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1157), 2, + STATE(1045), 2, sym_comment, sym_include, - ACTIONS(1697), 27, + ACTIONS(1747), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -99353,17 +91676,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63085] = 5, + [55081] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1158), 2, + STATE(1046), 2, sym_comment, sym_include, - ACTIONS(1701), 27, + ACTIONS(1743), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -99391,56 +91714,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63128] = 6, + [55124] = 6, 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(1159), 2, + ACTIONS(1975), 1, + sym__namedot, + ACTIONS(93), 2, + sym__or_operator, + sym__and_operator, + STATE(1047), 3, sym_comment, sym_include, - ACTIONS(2031), 26, + aux_sym_qualified_name_repeat1, + ACTIONS(91), 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, - [63173] = 5, + 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, + [55169] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1160), 2, + STATE(1048), 2, sym_comment, sym_include, - ACTIONS(2033), 27, + ACTIONS(1739), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -99468,59 +91791,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63216] = 6, + [55212] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2035), 1, - ts_builtin_sym_end, - STATE(1161), 2, + ACTIONS(1386), 1, + sym__namedot, + STATE(1044), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(1049), 2, sym_comment, sym_include, - ACTIONS(2037), 26, + ACTIONS(83), 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, - [63261] = 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, + [55259] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2039), 1, - ts_builtin_sym_end, - STATE(1162), 2, + STATE(1050), 2, sym_comment, sym_include, - ACTIONS(2041), 26, + ACTIONS(1735), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99546,19 +91869,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63306] = 6, + [55302] = 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(1978), 1, ts_builtin_sym_end, - STATE(1163), 2, + STATE(1051), 2, sym_comment, sym_include, - ACTIONS(2045), 26, + ACTIONS(1947), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -99585,20 +91908,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63351] = 6, + [55347] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2047), 1, - ts_builtin_sym_end, - STATE(1164), 2, + STATE(1052), 2, sym_comment, sym_include, - ACTIONS(2049), 26, + ACTIONS(1731), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99624,20 +91946,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63396] = 6, + [55390] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2051), 1, - ts_builtin_sym_end, - STATE(1165), 2, + STATE(1053), 2, sym_comment, sym_include, - ACTIONS(2053), 26, + ACTIONS(1727), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99663,20 +91984,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63441] = 6, + [55433] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2055), 1, - ts_builtin_sym_end, - STATE(1166), 2, + STATE(1054), 2, sym_comment, sym_include, - ACTIONS(1971), 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, @@ -99702,20 +92022,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63486] = 6, + [55476] = 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(1167), 2, + STATE(1055), 2, sym_comment, sym_include, - ACTIONS(1969), 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, @@ -99741,20 +92060,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63531] = 6, + [55519] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2059), 1, - ts_builtin_sym_end, - STATE(1168), 2, + STATE(1056), 2, sym_comment, sym_include, - ACTIONS(1967), 26, + ACTIONS(1715), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99780,94 +92098,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63576] = 6, + [55562] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2061), 1, - ts_builtin_sym_end, - STATE(1169), 2, + ACTIONS(1980), 1, + sym__namecolon, + ACTIONS(100), 2, + sym__or_operator, + sym__and_operator, + STATE(1057), 3, sym_comment, sym_include, - ACTIONS(1925), 26, + aux_sym_object_access_repeat1, + ACTIONS(98), 23, + anon_sym_SLASH, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - 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, - [63621] = 5, + 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, + [55609] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1170), 2, + STATE(1058), 2, sym_comment, sym_include, - ACTIONS(1705), 27, + ACTIONS(93), 3, + sym__namedot, + sym__or_operator, + sym__and_operator, + ACTIONS(91), 24, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_COMMA, aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [63664] = 5, + aux_sym_widget_field_token1, + [55654] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1171), 2, + STATE(1059), 2, sym_comment, sym_include, - ACTIONS(2063), 27, + ACTIONS(1711), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -99895,17 +92215,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63707] = 5, + [55697] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1172), 2, + STATE(1060), 2, sym_comment, sym_include, - ACTIONS(1965), 27, + ACTIONS(1707), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -99933,20 +92253,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63750] = 6, + [55740] = 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(1173), 2, + STATE(1061), 2, sym_comment, sym_include, - ACTIONS(2033), 26, + ACTIONS(1703), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99972,17 +92291,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63795] = 5, + [55783] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1174), 2, + STATE(1062), 2, sym_comment, sym_include, - ACTIONS(1961), 27, + ACTIONS(1697), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100010,17 +92329,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63838] = 5, + [55826] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1175), 2, + STATE(1063), 2, sym_comment, sym_include, - ACTIONS(1957), 27, + ACTIONS(1693), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100048,19 +92367,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63881] = 5, + [55869] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1176), 2, + ACTIONS(1983), 1, + ts_builtin_sym_end, + STATE(1064), 2, sym_comment, sym_include, - ACTIONS(1953), 27, + ACTIONS(1985), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100086,19 +92406,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63924] = 5, + [55914] = 23, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1318), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1332), 1, + aux_sym_buffer_definition_token3, + ACTIONS(1336), 1, + aux_sym_function_parameter_token1, + ACTIONS(1340), 1, + aux_sym_property_tuning_token1, + ACTIONS(1342), 1, + aux_sym_property_definition_token1, + ACTIONS(1344), 1, + aux_sym_event_definition_token1, + STATE(1584), 1, + sym_access_tuning, + STATE(1857), 1, + sym_property_tuning, + STATE(1895), 1, + aux_sym_variable_definition_repeat1, + STATE(1920), 1, + sym_serialization_tuning, + STATE(1957), 1, + sym_scope_tuning, + STATE(2343), 1, + aux_sym_property_definition_repeat1, + STATE(2406), 1, + aux_sym_property_definition_repeat2, + STATE(2698), 1, + sym_property_type, + ACTIONS(1316), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + ACTIONS(1324), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(1338), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(1065), 2, + sym_comment, + sym_include, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [55993] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1177), 2, + ACTIONS(1987), 1, + ts_builtin_sym_end, + STATE(1066), 2, sym_comment, sym_include, - ACTIONS(1949), 27, + ACTIONS(1989), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100124,17 +92501,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63967] = 5, + [56038] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1178), 2, + STATE(1067), 2, sym_comment, sym_include, - ACTIONS(1945), 27, + ACTIONS(1887), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100162,19 +92539,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64010] = 5, + [56081] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1179), 2, + ACTIONS(1991), 1, + ts_builtin_sym_end, + STATE(1068), 2, sym_comment, sym_include, - ACTIONS(1941), 27, + ACTIONS(1993), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100200,58 +92578,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64053] = 6, + [56126] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2067), 1, - ts_builtin_sym_end, - STATE(1180), 2, + ACTIONS(1386), 1, + sym__namedot, + STATE(1044), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1069), 2, sym_comment, sym_include, - ACTIONS(2069), 26, + ACTIONS(87), 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, - [64098] = 5, + 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, + [56173] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1181), 2, + ACTIONS(1995), 1, + ts_builtin_sym_end, + STATE(1070), 2, sym_comment, sym_include, - ACTIONS(2071), 27, + ACTIONS(1997), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100277,19 +92657,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64141] = 5, + [56218] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1182), 2, + ACTIONS(1999), 1, + ts_builtin_sym_end, + STATE(1071), 2, sym_comment, sym_include, - ACTIONS(1937), 27, + ACTIONS(1953), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100315,17 +92696,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64184] = 5, + [56263] = 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(1072), 2, sym_comment, sym_include, - ACTIONS(1933), 27, + ACTIONS(1941), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100353,20 +92734,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64227] = 6, + [56306] = 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(1184), 2, + STATE(1073), 2, sym_comment, sym_include, - ACTIONS(1773), 26, + ACTIONS(1957), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100392,17 +92772,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64272] = 5, + [56349] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1185), 2, + STATE(1074), 2, sym_comment, sym_include, - ACTIONS(2075), 27, + ACTIONS(1961), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100430,20 +92810,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64315] = 6, + [56392] = 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(1186), 2, + STATE(1075), 2, sym_comment, sym_include, - ACTIONS(1763), 26, + ACTIONS(1965), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100469,17 +92848,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64360] = 5, + [56435] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1187), 2, + STATE(1076), 2, sym_comment, sym_include, - ACTIONS(2079), 27, + ACTIONS(1969), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100507,17 +92886,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64403] = 5, + [56478] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1188), 2, + STATE(1077), 2, sym_comment, sym_include, - ACTIONS(2081), 27, + ACTIONS(1973), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100545,19 +92924,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64446] = 5, + [56521] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1189), 2, + ACTIONS(2001), 1, + ts_builtin_sym_end, + STATE(1078), 2, sym_comment, sym_include, - ACTIONS(2069), 27, + ACTIONS(2003), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100583,17 +92963,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64489] = 5, + [56566] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1190), 2, + STATE(1079), 2, sym_comment, sym_include, - ACTIONS(2083), 27, + ACTIONS(1985), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100621,17 +93001,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64532] = 5, + [56609] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2005), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(1080), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [56672] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1191), 2, + STATE(1081), 2, sym_comment, sym_include, - ACTIONS(1929), 27, + ACTIONS(1989), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100659,17 +93087,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64575] = 5, + [56715] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2007), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + STATE(1082), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [56778] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1192), 2, + STATE(1083), 2, sym_comment, sym_include, - ACTIONS(1919), 27, + ACTIONS(1993), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100697,17 +93173,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64618] = 5, + [56821] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1193), 2, + STATE(1084), 2, sym_comment, sym_include, - ACTIONS(1713), 27, + ACTIONS(1997), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100735,17 +93211,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64661] = 5, + [56864] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1194), 2, + STATE(1085), 2, sym_comment, sym_include, - ACTIONS(1915), 27, + ACTIONS(2003), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100773,17 +93249,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64704] = 5, + [56907] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1195), 2, + STATE(1086), 2, sym_comment, sym_include, - ACTIONS(2085), 27, + ACTIONS(2009), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100811,19 +93287,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64747] = 5, + [56950] = 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(2011), 1, + ts_builtin_sym_end, + STATE(1087), 2, sym_comment, sym_include, - ACTIONS(2087), 27, + ACTIONS(2009), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100849,17 +93326,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64790] = 5, + [56995] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1197), 2, + STATE(1088), 2, sym_comment, sym_include, - ACTIONS(1631), 27, + ACTIONS(2013), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100887,17 +93364,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64833] = 5, + [57038] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1198), 2, + STATE(1089), 2, sym_comment, sym_include, - ACTIONS(2089), 27, + ACTIONS(2015), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100925,17 +93402,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64876] = 5, + [57081] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1199), 2, + STATE(1090), 2, sym_comment, sym_include, - ACTIONS(2021), 27, + ACTIONS(2017), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100963,17 +93440,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64919] = 5, + [57124] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1200), 2, + STATE(1091), 2, sym_comment, sym_include, - ACTIONS(2091), 27, + ACTIONS(1487), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101001,17 +93478,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64962] = 5, + [57167] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2019), 2, + sym__terminator, + aux_sym_output_stream_statement_token1, + STATE(1092), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [57230] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1201), 2, + STATE(1093), 2, sym_comment, sym_include, - ACTIONS(2093), 27, + ACTIONS(1473), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101039,17 +93564,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65005] = 5, + [57273] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2005), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(1094), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [57336] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1202), 2, + STATE(1095), 2, sym_comment, sym_include, - ACTIONS(2095), 27, + ACTIONS(1497), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101077,19 +93650,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65048] = 5, + [57379] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1203), 2, + ACTIONS(2021), 1, + ts_builtin_sym_end, + STATE(1096), 2, sym_comment, sym_include, - ACTIONS(2097), 27, + ACTIONS(2013), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101115,19 +93689,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65091] = 5, + [57424] = 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(2023), 1, + ts_builtin_sym_end, + STATE(1097), 2, sym_comment, sym_include, - ACTIONS(2099), 27, + ACTIONS(2015), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101153,19 +93728,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65134] = 5, + [57469] = 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(2025), 1, + ts_builtin_sym_end, + STATE(1098), 2, sym_comment, sym_include, - ACTIONS(2101), 27, + ACTIONS(2017), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101191,17 +93767,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65177] = 5, + [57514] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1206), 2, + STATE(1099), 2, sym_comment, sym_include, - ACTIONS(1909), 27, + ACTIONS(1689), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101229,17 +93805,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65220] = 5, + [57557] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1207), 2, + STATE(1100), 2, sym_comment, sym_include, - ACTIONS(1905), 27, + ACTIONS(1685), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101267,17 +93843,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65263] = 5, + [57600] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1208), 2, + STATE(1101), 2, sym_comment, sym_include, - ACTIONS(2103), 27, + ACTIONS(1501), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101305,17 +93881,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65306] = 5, + [57643] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1209), 2, + STATE(1102), 2, sym_comment, sym_include, - ACTIONS(2053), 27, + ACTIONS(1505), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101343,17 +93919,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65349] = 5, + [57686] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1210), 2, + STATE(1103), 2, sym_comment, sym_include, - ACTIONS(2049), 27, + ACTIONS(1509), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101381,17 +93957,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65392] = 5, + [57729] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1211), 2, + STATE(1104), 2, sym_comment, sym_include, - ACTIONS(2045), 27, + ACTIONS(1551), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101419,19 +93995,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65435] = 5, + [57772] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1212), 2, + ACTIONS(2027), 1, + ts_builtin_sym_end, + STATE(1105), 2, sym_comment, sym_include, - ACTIONS(2041), 27, + ACTIONS(1937), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101457,17 +94034,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65478] = 5, + [57817] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1213), 2, + STATE(1106), 2, sym_comment, sym_include, - ACTIONS(2037), 27, + ACTIONS(1555), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101495,17 +94072,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65521] = 5, + [57860] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1214), 2, + STATE(1107), 2, sym_comment, sym_include, - ACTIONS(2031), 27, + ACTIONS(1951), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101533,17 +94110,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65564] = 5, + [57903] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1215), 2, + STATE(1108), 2, sym_comment, sym_include, - ACTIONS(1901), 27, + ACTIONS(1891), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101571,17 +94148,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65607] = 5, + [57946] = 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(1109), 2, sym_comment, sym_include, - ACTIONS(2105), 27, + ACTIONS(1895), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101609,17 +94186,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65650] = 5, + [57989] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1217), 2, + STATE(1110), 2, sym_comment, sym_include, - ACTIONS(2025), 27, + ACTIONS(1565), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101647,17 +94224,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65693] = 5, + [58032] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1218), 2, + STATE(1111), 2, sym_comment, sym_include, - ACTIONS(1985), 27, + ACTIONS(1919), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101685,19 +94262,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65736] = 5, + [58075] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1219), 2, + ACTIONS(1553), 1, + ts_builtin_sym_end, + STATE(1112), 2, sym_comment, sym_include, - ACTIONS(1981), 27, + ACTIONS(1555), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101705,7 +94283,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, @@ -101723,19 +94300,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65779] = 5, + [58119] = 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(165), 2, + sym__or_operator, + sym__and_operator, + STATE(1113), 2, sym_comment, sym_include, - ACTIONS(1975), 27, + ACTIONS(163), 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, + [58163] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1775), 1, + ts_builtin_sym_end, + STATE(1114), 2, + sym_comment, + sym_include, + ACTIONS(1777), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101743,7 +94359,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, @@ -101761,19 +94376,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65822] = 5, + [58207] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2029), 1, + aux_sym_if_statement_token2, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1115), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [58269] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1221), 2, + ACTIONS(1771), 1, + ts_builtin_sym_end, + STATE(1116), 2, sym_comment, sym_include, - ACTIONS(1923), 27, + ACTIONS(1773), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101781,7 +94444,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, @@ -101799,19 +94461,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65865] = 5, + [58313] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1222), 2, + ACTIONS(1783), 1, + ts_builtin_sym_end, + STATE(1117), 2, sym_comment, sym_include, - ACTIONS(1837), 27, + ACTIONS(1785), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101819,7 +94482,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, @@ -101837,19 +94499,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65908] = 5, + [58357] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1223), 2, + ACTIONS(217), 2, + sym__or_operator, + sym__and_operator, + STATE(1118), 2, sym_comment, sym_include, - ACTIONS(1767), 27, + ACTIONS(215), 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, + [58401] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1767), 1, + ts_builtin_sym_end, + STATE(1119), 2, + sym_comment, + sym_include, + ACTIONS(1769), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101857,7 +94558,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, @@ -101875,17 +94575,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65951] = 5, + [58445] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1224), 2, + STATE(1120), 2, sym_comment, sym_include, - ACTIONS(1771), 27, + ACTIONS(1707), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101895,7 +94595,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, @@ -101913,17 +94612,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65994] = 5, + [58487] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1225), 2, + STATE(1121), 2, sym_comment, sym_include, - ACTIONS(1897), 27, + ACTIONS(2031), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101933,7 +94632,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, @@ -101951,20 +94649,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66037] = 6, + [58529] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2107), 1, - ts_builtin_sym_end, - STATE(1226), 2, + STATE(1122), 2, sym_comment, sym_include, - ACTIONS(2063), 26, + ACTIONS(1711), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101972,7 +94669,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, @@ -101990,17 +94686,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66082] = 5, + [58571] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1227), 2, + STATE(1123), 2, sym_comment, sym_include, - ACTIONS(1893), 27, + ACTIONS(1715), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -102010,7 +94706,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, @@ -102028,17 +94723,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66125] = 5, + [58613] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1228), 2, + STATE(1124), 2, sym_comment, sym_include, - ACTIONS(1889), 27, + ACTIONS(1719), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -102048,7 +94743,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, @@ -102066,17 +94760,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66168] = 5, + [58655] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1229), 2, + STATE(1125), 2, sym_comment, sym_include, - ACTIONS(1885), 27, + ACTIONS(1723), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -102086,7 +94780,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, @@ -102104,17 +94797,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66211] = 5, + [58697] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1230), 2, + STATE(1126), 2, sym_comment, sym_include, - ACTIONS(1881), 27, + ACTIONS(1727), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -102124,7 +94817,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, @@ -102142,19 +94834,200 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66254] = 5, + [58739] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2033), 1, + anon_sym_LPAREN, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1127), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [58801] = 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(2035), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_qualified_name_repeat1, + STATE(9), 1, + aux_sym_object_access_repeat1, + STATE(1128), 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, + [58855] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2037), 1, + anon_sym_LPAREN, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1129), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [58917] = 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(2039), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_qualified_name_repeat1, + STATE(9), 1, + aux_sym_object_access_repeat1, + STATE(1130), 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, + [58971] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1231), 2, + ACTIONS(1779), 1, + ts_builtin_sym_end, + STATE(1131), 2, sym_comment, sym_include, - ACTIONS(1877), 27, + ACTIONS(1781), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102162,7 +95035,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, @@ -102180,20 +95052,203 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66297] = 6, + [59015] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2041), 1, + anon_sym_LPAREN, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1132), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [59077] = 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(2043), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_qualified_name_repeat1, + STATE(9), 1, + aux_sym_object_access_repeat1, + STATE(1133), 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, + [59131] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2045), 1, + aux_sym_if_statement_token2, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1134), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [59193] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2047), 1, + aux_sym_else_if_statement_token1, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1135), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [59255] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, - ts_builtin_sym_end, - STATE(1232), 2, + STATE(1136), 2, sym_comment, sym_include, - ACTIONS(2103), 26, + 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, @@ -102201,7 +95256,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, @@ -102219,19 +95273,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66342] = 5, + [59297] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1233), 2, + ACTIONS(2049), 1, + ts_builtin_sym_end, + STATE(1137), 2, sym_comment, sym_include, - ACTIONS(1873), 27, + ACTIONS(2051), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102239,7 +95294,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, @@ -102257,17 +95311,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66385] = 5, + [59341] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1234), 2, + STATE(1138), 2, sym_comment, sym_include, - ACTIONS(1869), 27, + ACTIONS(1735), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -102277,7 +95331,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, @@ -102295,19 +95348,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66428] = 6, + [59383] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2111), 1, + ACTIONS(1787), 1, ts_builtin_sym_end, - STATE(1235), 2, + STATE(1139), 2, sym_comment, sym_include, - ACTIONS(2105), 26, + ACTIONS(1789), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102316,7 +95369,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, @@ -102334,17 +95386,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66473] = 5, + [59427] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1236), 2, + STATE(1140), 2, sym_comment, sym_include, - ACTIONS(1865), 27, + ACTIONS(1739), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -102354,7 +95406,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, @@ -102372,28 +95423,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66516] = 5, + [59469] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1237), 2, + ACTIONS(2049), 1, + ts_builtin_sym_end, + ACTIONS(2053), 1, + aux_sym_buffer_definition_token2, + ACTIONS(2055), 1, + aux_sym_repeat_statement_token1, + ACTIONS(2057), 1, + aux_sym_do_block_token1, + STATE(1141), 2, sym_comment, sym_include, - ACTIONS(1861), 27, + ACTIONS(2051), 22, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, - aux_sym_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, @@ -102401,7 +95456,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, @@ -102410,19 +95464,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66559] = 5, + [59519] = 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(1935), 1, + ts_builtin_sym_end, + STATE(1142), 2, sym_comment, sym_include, - ACTIONS(1857), 27, + ACTIONS(1535), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102430,7 +95485,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, @@ -102448,17 +95502,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66602] = 5, + [59563] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1239), 2, + STATE(1143), 2, sym_comment, sym_include, - ACTIONS(1853), 27, + ACTIONS(2059), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -102468,7 +95522,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, @@ -102486,19 +95539,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66645] = 5, + [59605] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1240), 2, + ACTIONS(2061), 1, + ts_builtin_sym_end, + STATE(1144), 2, sym_comment, sym_include, - ACTIONS(1849), 27, + ACTIONS(2063), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102506,7 +95560,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, @@ -102524,75 +95577,110 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66688] = 23, + [59649] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1385), 1, - aux_sym_buffer_definition_token3, - ACTIONS(1389), 1, - aux_sym_function_parameter_token1, - ACTIONS(1393), 1, - aux_sym_property_tuning_token1, - ACTIONS(1395), 1, - aux_sym_property_definition_token1, - ACTIONS(1397), 1, - aux_sym_event_definition_token1, - STATE(1620), 1, - sym_access_tuning, - STATE(1857), 1, - sym_property_tuning, - STATE(1923), 1, - aux_sym_variable_definition_repeat1, - STATE(1931), 1, - sym_serialization_tuning, - STATE(1969), 1, - sym_scope_tuning, - STATE(2368), 1, - aux_sym_property_definition_repeat1, - STATE(2500), 1, - aux_sym_property_definition_repeat2, - STATE(2714), 1, - sym_property_type, - ACTIONS(1369), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - ACTIONS(1377), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(1391), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(1241), 2, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2065), 1, + anon_sym_LPAREN, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1145), 2, sym_comment, sym_include, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [66767] = 5, + ACTIONS(229), 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, + [59711] = 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(2067), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_qualified_name_repeat1, + STATE(9), 1, + aux_sym_object_access_repeat1, + STATE(1146), 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, + [59765] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1242), 2, + ACTIONS(1933), 1, + ts_builtin_sym_end, + STATE(1147), 2, sym_comment, sym_include, - ACTIONS(1845), 27, + ACTIONS(1531), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102600,7 +95688,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, @@ -102618,17 +95705,111 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66810] = 5, + [59809] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2069), 1, + aux_sym_if_statement_token2, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1148), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [59871] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2071), 1, + aux_sym_if_statement_token2, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1149), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [59933] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1243), 2, + STATE(1150), 2, sym_comment, sym_include, - ACTIONS(1841), 27, + ACTIONS(2073), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -102638,7 +95819,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, @@ -102656,17 +95836,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66853] = 5, + [59975] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1244), 2, + STATE(1151), 2, sym_comment, sym_include, - ACTIONS(1833), 27, + ACTIONS(1743), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -102676,7 +95856,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, @@ -102694,19 +95873,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66896] = 5, + [60017] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2075), 1, + aux_sym_if_statement_token2, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1152), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [60079] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1245), 2, + ACTIONS(1791), 1, + ts_builtin_sym_end, + STATE(1153), 2, sym_comment, sym_include, - ACTIONS(1829), 27, + ACTIONS(1793), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102714,7 +95941,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, @@ -102732,19 +95958,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66939] = 6, + [60123] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2113), 1, + ACTIONS(1763), 1, ts_builtin_sym_end, - STATE(1246), 2, + STATE(1154), 2, sym_comment, sym_include, - ACTIONS(2071), 26, + ACTIONS(1765), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102753,7 +95979,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, @@ -102771,20 +95996,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66984] = 6, + [60167] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2115), 1, - ts_builtin_sym_end, - STATE(1247), 2, + STATE(1155), 2, sym_comment, sym_include, - ACTIONS(2075), 26, + ACTIONS(1747), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102792,7 +96016,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, @@ -102810,20 +96033,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67029] = 6, + [60209] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2077), 1, + anon_sym_RPAREN, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1156), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [60271] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2117), 1, - ts_builtin_sym_end, - STATE(1248), 2, + STATE(1157), 2, sym_comment, sym_include, - ACTIONS(2079), 26, + 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, @@ -102831,7 +96100,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, @@ -102849,20 +96117,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67074] = 6, + [60313] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2119), 1, - ts_builtin_sym_end, - STATE(1249), 2, + STATE(1158), 2, sym_comment, sym_include, - ACTIONS(2081), 26, + ACTIONS(1973), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102870,7 +96137,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, @@ -102888,20 +96154,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67119] = 6, + [60355] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2121), 1, - ts_builtin_sym_end, - STATE(1250), 2, + STATE(1159), 2, sym_comment, sym_include, - ACTIONS(2083), 26, + ACTIONS(1969), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102909,7 +96174,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, @@ -102927,19 +96191,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67164] = 5, + [60397] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2079), 1, + aux_sym_if_statement_token2, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1160), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [60459] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1251), 2, + ACTIONS(2081), 1, + ts_builtin_sym_end, + STATE(1161), 2, sym_comment, sym_include, - ACTIONS(1825), 27, + 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, @@ -102947,7 +96259,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, @@ -102965,19 +96276,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67207] = 5, + [60503] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1252), 2, + ACTIONS(1549), 1, + ts_builtin_sym_end, + STATE(1162), 2, sym_comment, sym_include, - ACTIONS(1821), 27, + ACTIONS(1551), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102985,7 +96297,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, @@ -103003,19 +96314,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67250] = 5, + [60547] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1253), 2, + ACTIONS(2085), 1, + ts_builtin_sym_end, + STATE(1163), 2, sym_comment, sym_include, - ACTIONS(1817), 27, + ACTIONS(2087), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103023,7 +96335,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, @@ -103041,19 +96352,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67293] = 5, + [60591] = 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(1949), 1, + ts_builtin_sym_end, + STATE(1164), 2, sym_comment, sym_include, - ACTIONS(1813), 27, + ACTIONS(1951), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103061,7 +96373,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, @@ -103079,17 +96390,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67336] = 5, + [60635] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1384), 1, + anon_sym_LPAREN, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(1165), 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, + [60679] = 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(1166), 2, sym_comment, sym_include, - ACTIONS(1809), 27, + ACTIONS(1965), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -103099,7 +96448,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, @@ -103117,17 +96465,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67379] = 5, + [60721] = 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(1167), 2, sym_comment, sym_include, - ACTIONS(1805), 27, + ACTIONS(1961), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -103137,7 +96485,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, @@ -103155,17 +96502,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67422] = 5, + [60763] = 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(1168), 2, sym_comment, sym_include, - ACTIONS(1801), 27, + ACTIONS(1957), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -103175,7 +96522,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, @@ -103193,19 +96539,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67465] = 5, + [60805] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1258), 2, + ACTIONS(2089), 1, + ts_builtin_sym_end, + STATE(1169), 2, sym_comment, sym_include, - ACTIONS(1797), 27, + ACTIONS(2091), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103213,7 +96560,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, @@ -103231,19 +96577,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67508] = 5, + [60849] = 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(1923), 1, + ts_builtin_sym_end, + STATE(1170), 2, sym_comment, sym_include, - ACTIONS(1793), 27, + 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, @@ -103251,7 +96598,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, @@ -103269,55 +96615,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67551] = 5, + [60893] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1260), 2, + ACTIONS(129), 2, + sym__or_operator, + sym__and_operator, + STATE(1171), 2, sym_comment, sym_include, - ACTIONS(1789), 27, + ACTIONS(127), 24, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_COMMA, aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [67594] = 5, + aux_sym_widget_field_token1, + [60937] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1261), 2, + STATE(1172), 2, sym_comment, sym_include, - ACTIONS(1785), 27, + ACTIONS(1755), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -103327,7 +96673,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, @@ -103345,19 +96690,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67637] = 5, + [60979] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1262), 2, + ACTIONS(1631), 1, + ts_builtin_sym_end, + STATE(1173), 2, sym_comment, sym_include, - ACTIONS(1781), 27, + 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, @@ -103365,7 +96711,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, @@ -103383,17 +96728,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67680] = 5, + [61023] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1263), 2, + STATE(1174), 2, sym_comment, sym_include, - ACTIONS(1777), 27, + 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, + [61067] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1175), 2, + sym_comment, + sym_include, + ACTIONS(1759), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -103403,7 +96786,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, @@ -103421,19 +96803,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67723] = 5, + [61109] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2093), 1, + aux_sym_if_statement_token2, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1176), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [61171] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1264), 2, + ACTIONS(1795), 1, + ts_builtin_sym_end, + STATE(1177), 2, sym_comment, sym_include, - ACTIONS(1757), 27, + ACTIONS(1797), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103441,7 +96871,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, @@ -103459,19 +96888,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67766] = 5, + [61215] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1265), 2, + ACTIONS(1925), 1, + ts_builtin_sym_end, + STATE(1178), 2, sym_comment, sym_include, - ACTIONS(1753), 27, + 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, @@ -103479,7 +96909,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, @@ -103497,19 +96926,104 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67809] = 6, + [61259] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2095), 1, + aux_sym_else_if_statement_token1, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1179), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [61321] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1384), 1, + anon_sym_LPAREN, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, + STATE(1180), 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, + [61365] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2123), 1, + ACTIONS(1627), 1, ts_builtin_sym_end, - STATE(1266), 2, + STATE(1181), 2, sym_comment, sym_include, - ACTIONS(2085), 26, + ACTIONS(1629), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103518,7 +97032,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, @@ -103536,19 +97049,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67854] = 6, + [61409] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2097), 1, + anon_sym_LPAREN, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1182), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [61471] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2125), 1, + ACTIONS(2099), 1, ts_builtin_sym_end, - STATE(1267), 2, + STATE(1183), 2, sym_comment, sym_include, - ACTIONS(2087), 26, + ACTIONS(2101), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103557,7 +97117,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, @@ -103575,20 +97134,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67899] = 6, + [61515] = 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(2103), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_qualified_name_repeat1, + STATE(9), 1, + aux_sym_object_access_repeat1, + STATE(1184), 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, + [61569] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2127), 1, - ts_builtin_sym_end, - STATE(1268), 2, + STATE(1185), 2, sym_comment, sym_include, - ACTIONS(2089), 26, + ACTIONS(2087), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103596,7 +97197,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, @@ -103614,19 +97214,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67944] = 6, + [61611] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2129), 1, + ACTIONS(2105), 1, ts_builtin_sym_end, - STATE(1269), 2, + STATE(1186), 2, sym_comment, sym_include, - ACTIONS(2091), 26, + ACTIONS(2107), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103635,7 +97235,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, @@ -103653,19 +97252,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67989] = 6, + [61655] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2109), 1, + aux_sym_if_statement_token2, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1187), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [61717] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2131), 1, + ACTIONS(1799), 1, ts_builtin_sym_end, - STATE(1270), 2, + STATE(1188), 2, sym_comment, sym_include, - ACTIONS(2093), 26, + ACTIONS(1801), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103674,7 +97320,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, @@ -103692,58 +97337,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68034] = 6, + [61761] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2133), 1, - ts_builtin_sym_end, - STATE(1271), 2, + ACTIONS(2111), 1, + sym__namedot, + ACTIONS(111), 2, + sym__or_operator, + sym__and_operator, + STATE(1189), 2, sym_comment, sym_include, - ACTIONS(2095), 26, + ACTIONS(109), 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, - [68079] = 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, + [61805] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2135), 1, + ACTIONS(1623), 1, ts_builtin_sym_end, - STATE(1272), 2, + STATE(1190), 2, sym_comment, sym_include, - ACTIONS(2097), 26, + ACTIONS(1625), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103752,7 +97396,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, @@ -103770,20 +97413,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68124] = 6, + [61849] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2137), 1, - ts_builtin_sym_end, - STATE(1273), 2, + STATE(1191), 2, sym_comment, sym_include, - ACTIONS(2099), 26, + ACTIONS(1765), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103791,7 +97433,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, @@ -103809,19 +97450,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68169] = 6, + [61891] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2139), 1, + ACTIONS(1619), 1, ts_builtin_sym_end, - STATE(1274), 2, + STATE(1192), 2, sym_comment, sym_include, - ACTIONS(2101), 26, + ACTIONS(1621), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103830,7 +97471,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, @@ -103848,19 +97488,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68214] = 5, + [61935] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1275), 2, + ACTIONS(2113), 1, + ts_builtin_sym_end, + STATE(1193), 2, sym_comment, sym_include, - ACTIONS(1749), 27, + ACTIONS(2115), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103868,7 +97509,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, @@ -103886,19 +97526,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68257] = 5, + [61979] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1276), 2, + ACTIONS(2117), 1, + ts_builtin_sym_end, + STATE(1194), 2, sym_comment, sym_include, - ACTIONS(1745), 27, + ACTIONS(2119), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103906,7 +97547,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, @@ -103924,17 +97564,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68300] = 5, + [62023] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1277), 2, + STATE(1195), 2, sym_comment, sym_include, - ACTIONS(1741), 27, + ACTIONS(1769), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -103944,7 +97584,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, @@ -103962,19 +97601,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68343] = 5, + [62065] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1278), 2, + ACTIONS(1615), 1, + ts_builtin_sym_end, + STATE(1196), 2, sym_comment, sym_include, - ACTIONS(1737), 27, + ACTIONS(1617), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103982,7 +97622,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, @@ -104000,17 +97639,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68386] = 5, + [62109] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1279), 2, + STATE(1197), 2, sym_comment, sym_include, - ACTIONS(1733), 27, + ACTIONS(1773), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -104020,7 +97659,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, @@ -104038,19 +97676,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68429] = 5, + [62151] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1280), 2, + ACTIONS(2121), 1, + ts_builtin_sym_end, + STATE(1198), 2, sym_comment, sym_include, - ACTIONS(1729), 27, + ACTIONS(2123), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104058,7 +97697,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, @@ -104076,17 +97714,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68472] = 5, + [62195] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1281), 2, + STATE(1199), 2, sym_comment, sym_include, - ACTIONS(1725), 27, + ACTIONS(1777), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -104096,7 +97734,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, @@ -104114,57 +97751,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68515] = 6, + [62237] = 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(1803), 1, ts_builtin_sym_end, - STATE(1282), 2, - sym_comment, - sym_include, - ACTIONS(1985), 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, - [68559] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1283), 2, + STATE(1200), 2, sym_comment, sym_include, - ACTIONS(1933), 26, + ACTIONS(1805), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104189,77 +97789,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68601] = 26, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2143), 1, - anon_sym_COLON, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1644), 1, - sym_of, - STATE(1685), 1, - sym__pre_tuning, - STATE(1757), 1, - sym_where_clause, - STATE(1783), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2040), 1, - aux_sym_for_phrase_repeat2, - STATE(2645), 1, - sym_on_error_phrase, - STATE(2799), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3313), 1, - aux_sym_for_statement_repeat1, - STATE(3315), 1, - sym_on_stop_phrase, - STATE(1284), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [68685] = 6, + [62281] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1867), 1, + ACTIONS(1807), 1, ts_builtin_sym_end, - STATE(1285), 2, + STATE(1201), 2, sym_comment, sym_include, - ACTIONS(1869), 25, + ACTIONS(1809), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104285,19 +97827,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68729] = 6, + [62325] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2153), 1, + ACTIONS(1811), 1, ts_builtin_sym_end, - STATE(1286), 2, + STATE(1202), 2, sym_comment, sym_include, - ACTIONS(2155), 25, + ACTIONS(1813), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104323,19 +97865,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68773] = 6, + [62369] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1641), 1, + ACTIONS(1757), 1, ts_builtin_sym_end, - STATE(1287), 2, + STATE(1203), 2, sym_comment, sym_include, - ACTIONS(1643), 25, + ACTIONS(1759), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104361,19 +97903,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68817] = 6, + [62413] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1637), 1, + ACTIONS(1753), 1, ts_builtin_sym_end, - STATE(1288), 2, + STATE(1204), 2, sym_comment, sym_include, - ACTIONS(1639), 25, + ACTIONS(1755), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104399,58 +97941,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68861] = 6, + [62457] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1963), 1, - ts_builtin_sym_end, - STATE(1289), 2, + ACTIONS(1431), 1, + sym__namedot, + STATE(1211), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(81), 2, + sym__or_operator, + sym__and_operator, + STATE(1205), 2, sym_comment, sym_include, - ACTIONS(1965), 25, + ACTIONS(79), 22, + 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, - 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, - [68905] = 6, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_NO_DASHERROR, + [62505] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1681), 1, - ts_builtin_sym_end, - STATE(1290), 2, + STATE(1206), 2, sym_comment, sym_include, - ACTIONS(1683), 25, + ACTIONS(1781), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104475,20 +98018,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68949] = 6, + [62547] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2157), 1, - ts_builtin_sym_end, - STATE(1291), 2, + STATE(1207), 2, sym_comment, sym_include, - ACTIONS(2159), 25, + ACTIONS(1785), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104513,19 +98055,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68993] = 6, + [62589] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2161), 1, + ACTIONS(1815), 1, ts_builtin_sym_end, - STATE(1292), 2, + STATE(1208), 2, sym_comment, sym_include, - ACTIONS(2163), 25, + ACTIONS(1817), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104551,20 +98093,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69037] = 6, + [62633] = 5, 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(1293), 2, + STATE(1209), 2, sym_comment, sym_include, - ACTIONS(1603), 25, + ACTIONS(1789), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104589,20 +98130,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69081] = 6, + [62675] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2121), 1, - ts_builtin_sym_end, - STATE(1294), 2, + STATE(1210), 2, sym_comment, sym_include, - ACTIONS(2083), 25, + ACTIONS(1793), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104627,20 +98167,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69125] = 6, + [62717] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1955), 1, - ts_builtin_sym_end, - STATE(1295), 2, + ACTIONS(2125), 1, + sym__namedot, + ACTIONS(93), 2, + sym__or_operator, + sym__and_operator, + STATE(1211), 3, sym_comment, sym_include, - ACTIONS(1957), 25, + aux_sym_qualified_name_repeat1, + 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, + [62763] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1212), 2, + sym_comment, + sym_include, + 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, @@ -104665,20 +98243,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69169] = 6, + [62805] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1691), 1, - ts_builtin_sym_end, - STATE(1296), 2, + STATE(1213), 2, sym_comment, sym_include, - ACTIONS(1693), 25, + ACTIONS(1797), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104703,20 +98280,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69213] = 6, + [62847] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1677), 1, - ts_builtin_sym_end, - STATE(1297), 2, + STATE(1214), 2, sym_comment, sym_include, - ACTIONS(1679), 25, + ACTIONS(2107), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104741,20 +98317,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69257] = 6, + [62889] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1863), 1, - ts_builtin_sym_end, - STATE(1298), 2, + STATE(1215), 2, sym_comment, sym_include, - ACTIONS(1865), 25, + ACTIONS(1801), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104779,19 +98354,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69301] = 6, + [62931] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2128), 1, + anon_sym_RPAREN, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1216), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [62993] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2165), 1, + ACTIONS(1649), 1, ts_builtin_sym_end, - STATE(1299), 2, + STATE(1217), 2, sym_comment, sym_include, - ACTIONS(2167), 25, + ACTIONS(1481), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104817,19 +98439,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69345] = 6, + [63037] = 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(1939), 1, ts_builtin_sym_end, - STATE(1300), 2, + STATE(1218), 2, sym_comment, sym_include, - ACTIONS(1861), 25, + ACTIONS(1941), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104855,19 +98477,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69389] = 6, + [63081] = 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(1955), 1, ts_builtin_sym_end, - STATE(1301), 2, + STATE(1219), 2, sym_comment, sym_include, - ACTIONS(1857), 25, + ACTIONS(1957), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104893,19 +98515,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69433] = 6, + [63125] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1851), 1, + ACTIONS(2130), 1, ts_builtin_sym_end, - STATE(1302), 2, + STATE(1220), 2, sym_comment, sym_include, - ACTIONS(1853), 25, + ACTIONS(2132), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104931,77 +98553,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69477] = 26, - ACTIONS(59), 1, + [63169] = 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(69), 1, - sym__namedot, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2169), 1, - anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1643), 1, - sym_of, - STATE(1675), 1, - sym__pre_tuning, - STATE(1791), 1, - sym_where_clause, - STATE(1795), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2058), 1, - aux_sym_for_phrase_repeat2, - STATE(2587), 1, - sym_on_error_phrase, - STATE(2839), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3460), 1, - aux_sym_for_statement_repeat1, - STATE(3468), 1, - sym_on_stop_phrase, - STATE(1303), 2, + STATE(1221), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [69561] = 6, + ACTIONS(1805), 26, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + 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, + [63211] = 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(1959), 1, ts_builtin_sym_end, - STATE(1304), 2, + STATE(1222), 2, sym_comment, sym_include, - ACTIONS(1925), 25, + ACTIONS(1961), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105027,20 +98628,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69605] = 6, + [63255] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2171), 1, - ts_builtin_sym_end, - STATE(1305), 2, + STATE(1223), 2, sym_comment, sym_include, - ACTIONS(2173), 25, + ACTIONS(1809), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105065,19 +98665,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69649] = 6, + [63297] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1847), 1, + ACTIONS(1963), 1, ts_builtin_sym_end, - STATE(1306), 2, + STATE(1224), 2, sym_comment, sym_include, - ACTIONS(1849), 25, + ACTIONS(1965), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105103,19 +98703,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69693] = 6, + [63341] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + STATE(1225), 2, + sym_comment, + sym_include, + ACTIONS(1813), 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, + [63383] = 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(1307), 2, + STATE(1226), 2, sym_comment, sym_include, - ACTIONS(1697), 25, + ACTIONS(1969), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105141,19 +98778,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69737] = 6, + [63427] = 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(1927), 1, ts_builtin_sym_end, - STATE(1308), 2, + STATE(1227), 2, sym_comment, sym_include, - ACTIONS(1845), 25, + ACTIONS(1521), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105179,20 +98816,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69781] = 6, + [63471] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1699), 1, - ts_builtin_sym_end, - STATE(1309), 2, + STATE(1228), 2, sym_comment, sym_include, - ACTIONS(1701), 25, + ACTIONS(1817), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105217,19 +98853,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69825] = 6, + [63513] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1839), 1, + ACTIONS(1971), 1, ts_builtin_sym_end, - STATE(1310), 2, + STATE(1229), 2, sym_comment, sym_include, - ACTIONS(1841), 25, + ACTIONS(1973), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105255,19 +98891,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69869] = 6, + [63557] = 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(1819), 1, ts_builtin_sym_end, - STATE(1311), 2, + STATE(1230), 2, sym_comment, sym_include, - ACTIONS(1873), 25, + ACTIONS(1821), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105293,20 +98929,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69913] = 6, + [63601] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2175), 1, - ts_builtin_sym_end, - STATE(1312), 2, + STATE(1231), 2, sym_comment, sym_include, - ACTIONS(2177), 25, + ACTIONS(1941), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105331,78 +98966,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69957] = 26, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2179), 1, - anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1630), 1, - sym_of, - STATE(1689), 1, - sym__pre_tuning, - STATE(1732), 1, - aux_sym_for_phrase_repeat1, - STATE(1738), 1, - sym_where_clause, - STATE(1933), 1, - sym_query_tuning, - STATE(2098), 1, - aux_sym_for_phrase_repeat2, - STATE(2574), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2866), 1, - sym_on_quit_phrase, - STATE(3152), 1, - aux_sym_for_statement_repeat1, - STATE(3155), 1, - sym_on_stop_phrase, - STATE(1313), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [70041] = 6, + [63643] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2181), 1, - ts_builtin_sym_end, - STATE(1314), 2, + STATE(1232), 2, sym_comment, sym_include, - ACTIONS(2183), 25, + ACTIONS(1821), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105427,20 +99003,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70085] = 6, + [63685] = 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(1315), 2, + STATE(1233), 2, sym_comment, sym_include, - ACTIONS(2031), 25, + ACTIONS(1825), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105465,19 +99040,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70129] = 6, + [63727] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2185), 1, + ACTIONS(1823), 1, ts_builtin_sym_end, - STATE(1316), 2, + STATE(1234), 2, sym_comment, sym_include, - ACTIONS(2187), 25, + ACTIONS(1825), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105503,19 +99078,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70173] = 6, + [63771] = 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(1827), 1, ts_builtin_sym_end, - STATE(1317), 2, + STATE(1235), 2, sym_comment, sym_include, - ACTIONS(1977), 25, + ACTIONS(1829), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105541,19 +99116,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70217] = 6, + [63815] = 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(1831), 1, ts_builtin_sym_end, - STATE(1318), 2, + STATE(1236), 2, sym_comment, sym_include, - ACTIONS(2037), 25, + ACTIONS(1833), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105579,20 +99154,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70261] = 6, + [63859] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2134), 1, + aux_sym_else_if_statement_token1, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1237), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [63921] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1823), 1, - ts_builtin_sym_end, - STATE(1319), 2, + STATE(1238), 2, sym_comment, sym_include, - ACTIONS(1825), 25, + ACTIONS(1829), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105617,19 +99238,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70305] = 6, + [63963] = 26, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2138), 1, + anon_sym_COLON, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1611), 1, + sym_of, + STATE(1664), 1, + sym__pre_tuning, + STATE(1764), 1, + sym_where_clause, + STATE(1777), 1, + aux_sym_for_phrase_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(2062), 1, + aux_sym_for_phrase_repeat2, + STATE(2633), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2741), 1, + sym_on_quit_phrase, + STATE(3360), 1, + aux_sym_for_statement_repeat1, + STATE(3412), 1, + sym_on_stop_phrase, + STATE(1239), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [64047] = 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(2148), 1, ts_builtin_sym_end, - STATE(1320), 2, + STATE(1240), 2, sym_comment, sym_include, - ACTIONS(2025), 25, + ACTIONS(2150), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105655,20 +99334,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70349] = 6, + [64091] = 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(1321), 2, + STATE(1241), 2, sym_comment, sym_include, - ACTIONS(1981), 25, + ACTIONS(1833), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105693,20 +99371,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70393] = 6, + [64133] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2152), 1, + aux_sym_else_if_statement_token1, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1242), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [64195] = 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(1322), 2, + STATE(1243), 2, sym_comment, sym_include, - ACTIONS(1877), 25, + ACTIONS(2150), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105731,19 +99455,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70437] = 6, + [64237] = 26, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2154), 1, + anon_sym_COLON, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1620), 1, + sym_of, + STATE(1661), 1, + sym__pre_tuning, + STATE(1738), 1, + aux_sym_for_phrase_repeat1, + STATE(1741), 1, + sym_where_clause, + STATE(1915), 1, + sym_query_tuning, + STATE(2069), 1, + aux_sym_for_phrase_repeat2, + STATE(2573), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2725), 1, + sym_on_quit_phrase, + STATE(3145), 1, + aux_sym_for_statement_repeat1, + STATE(3149), 1, + sym_on_stop_phrase, + STATE(1244), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [64321] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2119), 1, + ACTIONS(1749), 1, ts_builtin_sym_end, - STATE(1323), 2, + STATE(1245), 2, sym_comment, sym_include, - ACTIONS(2081), 25, + ACTIONS(1751), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105769,19 +99551,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70481] = 6, + [64365] = 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(1837), 1, ts_builtin_sym_end, - STATE(1324), 2, + STATE(1246), 2, sym_comment, sym_include, - ACTIONS(2041), 25, + ACTIONS(1839), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105807,20 +99589,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70525] = 6, + [64409] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2043), 1, - ts_builtin_sym_end, - STATE(1325), 2, + STATE(1247), 2, sym_comment, sym_include, - ACTIONS(2045), 25, + ACTIONS(1839), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105845,20 +99626,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70569] = 6, + [64451] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2158), 1, + aux_sym_variable_definition_token4, + STATE(1248), 2, + sym_comment, + sym_include, + ACTIONS(2156), 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, + [64495] = 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(1326), 2, + STATE(1249), 2, sym_comment, sym_include, - ACTIONS(1953), 25, + ACTIONS(1843), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105883,20 +99701,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70613] = 6, + [64537] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1673), 1, - ts_builtin_sym_end, - STATE(1327), 2, + STATE(1250), 2, sym_comment, sym_include, - ACTIONS(1675), 25, + ACTIONS(1847), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105921,19 +99738,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70657] = 6, + [64579] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1645), 1, + ACTIONS(1841), 1, ts_builtin_sym_end, - STATE(1328), 2, + STATE(1251), 2, sym_comment, sym_include, - ACTIONS(1647), 25, + ACTIONS(1843), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105959,19 +99776,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70701] = 6, + [64623] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2160), 1, + anon_sym_NO_DASHERROR, + ACTIONS(455), 2, + sym__or_operator, + sym__and_operator, + STATE(1252), 2, + sym_comment, + sym_include, + ACTIONS(453), 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, + [64667] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2162), 1, + anon_sym_NO_DASHERROR, + ACTIONS(173), 2, + sym__or_operator, + sym__and_operator, + STATE(1253), 2, + sym_comment, + sym_include, + ACTIONS(171), 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, + [64711] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1835), 1, + ACTIONS(1845), 1, ts_builtin_sym_end, - STATE(1329), 2, + STATE(1254), 2, sym_comment, sym_include, - ACTIONS(1837), 25, + ACTIONS(1847), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105997,19 +99890,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70745] = 6, + [64755] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1765), 1, + ACTIONS(1635), 1, ts_builtin_sym_end, - STATE(1330), 2, + STATE(1255), 2, sym_comment, sym_include, - ACTIONS(1767), 25, + ACTIONS(1533), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106035,19 +99928,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70789] = 6, + [64799] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1256), 2, + sym_comment, + sym_include, + ACTIONS(93), 3, + sym__namedot, + sym__or_operator, + sym__and_operator, + ACTIONS(91), 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, + [64841] = 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(1889), 1, ts_builtin_sym_end, - STATE(1331), 2, + STATE(1257), 2, sym_comment, sym_include, - ACTIONS(1971), 25, + ACTIONS(1891), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106073,19 +100003,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70833] = 6, + [64885] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2189), 1, + ACTIONS(1849), 1, ts_builtin_sym_end, - STATE(1332), 2, + STATE(1258), 2, sym_comment, sym_include, - ACTIONS(2191), 25, + ACTIONS(1851), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106111,19 +100041,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70877] = 6, + [64929] = 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(1853), 1, ts_builtin_sym_end, - STATE(1333), 2, + STATE(1259), 2, sym_comment, sym_include, - ACTIONS(1915), 25, + ACTIONS(1855), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106149,19 +100079,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70921] = 6, + [64973] = 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(1893), 1, ts_builtin_sym_end, - STATE(1334), 2, + STATE(1260), 2, sym_comment, sym_include, - ACTIONS(2049), 25, + ACTIONS(1895), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106187,19 +100117,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70965] = 6, + [65017] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2117), 1, + ACTIONS(1857), 1, ts_builtin_sym_end, - STATE(1335), 2, + STATE(1261), 2, sym_comment, sym_include, - ACTIONS(2079), 25, + ACTIONS(1561), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106225,19 +100155,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71009] = 6, + [65061] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(1859), 1, ts_builtin_sym_end, - STATE(1336), 2, + STATE(1262), 2, sym_comment, sym_include, - ACTIONS(1635), 25, + ACTIONS(1861), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106263,20 +100193,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71053] = 6, + [65105] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2115), 1, - ts_builtin_sym_end, - STATE(1337), 2, + STATE(1263), 2, sym_comment, sym_include, - ACTIONS(2075), 25, + ACTIONS(1851), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106301,20 +100230,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71097] = 6, + [65147] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2193), 1, - ts_builtin_sym_end, - STATE(1338), 2, + STATE(1264), 2, sym_comment, sym_include, - ACTIONS(2195), 25, + ACTIONS(1855), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106339,19 +100267,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71141] = 6, + [65189] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1669), 1, + ACTIONS(1431), 1, + sym__namedot, + STATE(1205), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1265), 2, + sym_comment, + sym_include, + 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, + [65237] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1611), 1, ts_builtin_sym_end, - STATE(1339), 2, + STATE(1266), 2, sym_comment, sym_include, - ACTIONS(1671), 25, + ACTIONS(1613), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106377,32 +100345,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71185] = 9, + [65281] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2189), 1, - ts_builtin_sym_end, - ACTIONS(2197), 1, - aux_sym_buffer_definition_token2, - ACTIONS(2199), 1, - aux_sym_repeat_statement_token1, - ACTIONS(2201), 1, - aux_sym_do_block_token1, - STATE(1340), 2, + STATE(1267), 2, sym_comment, sym_include, - ACTIONS(2191), 22, + 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, @@ -106410,6 +100373,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, @@ -106418,19 +100382,115 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71235] = 6, + [65323] = 26, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2164), 1, + anon_sym_COLON, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1634), 1, + sym_of, + STATE(1652), 1, + sym__pre_tuning, + STATE(1765), 1, + aux_sym_for_phrase_repeat1, + STATE(1770), 1, + sym_where_clause, + STATE(1915), 1, + sym_query_tuning, + STATE(2032), 1, + aux_sym_for_phrase_repeat2, + STATE(2564), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2734), 1, + sym_on_quit_phrase, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3168), 1, + sym_on_stop_phrase, + STATE(1268), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [65407] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2203), 1, + ACTIONS(185), 2, + sym__or_operator, + sym__and_operator, + STATE(1269), 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, + [65451] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1741), 1, ts_builtin_sym_end, - STATE(1341), 2, + STATE(1270), 2, sym_comment, sym_include, - ACTIONS(2205), 25, + ACTIONS(1743), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106456,62 +100516,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71279] = 11, - ACTIONS(3), 1, + [65495] = 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(2207), 1, - sym_identifier, - ACTIONS(2211), 1, - aux_sym_primitive_type_token19, - STATE(1635), 1, - sym_access_tuning, - STATE(4312), 1, - sym_qualified_name, - STATE(4635), 1, - sym_primitive_type, - STATE(1342), 2, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2166), 1, + sym__terminator, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1271), 2, sym_comment, sym_include, - ACTIONS(2213), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2209), 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, - [71333] = 6, + ACTIONS(229), 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, + [65557] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1629), 1, + ACTIONS(2168), 1, ts_builtin_sym_end, - STATE(1343), 2, + STATE(1272), 2, sym_comment, sym_include, - ACTIONS(1631), 25, + ACTIONS(2170), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106537,19 +100601,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71377] = 6, + [65601] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1947), 1, + ACTIONS(2172), 1, ts_builtin_sym_end, - STATE(1344), 2, + STATE(1273), 2, sym_comment, sym_include, - ACTIONS(1949), 25, + ACTIONS(2073), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106575,19 +100639,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71421] = 6, + [65645] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1649), 1, + ACTIONS(2174), 1, ts_builtin_sym_end, - STATE(1345), 2, + STATE(1274), 2, sym_comment, sym_include, - ACTIONS(1651), 25, + ACTIONS(2176), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106613,19 +100677,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71465] = 6, + [65689] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2077), 1, + ACTIONS(2178), 1, ts_builtin_sym_end, - STATE(1346), 2, + STATE(1275), 2, sym_comment, sym_include, - ACTIONS(1763), 25, + ACTIONS(2059), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106651,19 +100715,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71509] = 6, + [65733] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2180), 1, + anon_sym_RPAREN, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1276), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [65795] = 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(1737), 1, ts_builtin_sym_end, - STATE(1347), 2, + STATE(1277), 2, sym_comment, sym_include, - ACTIONS(2217), 25, + ACTIONS(1739), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106689,19 +100800,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71553] = 6, + [65839] = 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(1607), 1, ts_builtin_sym_end, - STATE(1348), 2, + STATE(1278), 2, sym_comment, sym_include, - ACTIONS(2053), 25, + ACTIONS(1609), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106727,77 +100838,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71597] = 26, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2219), 1, - anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1658), 1, - sym_of, - STATE(1686), 1, - sym__pre_tuning, - STATE(1749), 1, - aux_sym_for_phrase_repeat1, - STATE(1775), 1, - sym_where_clause, - STATE(1933), 1, - sym_query_tuning, - STATE(2014), 1, - aux_sym_for_phrase_repeat2, - STATE(2638), 1, - sym_on_error_phrase, - STATE(2751), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3343), 1, - aux_sym_for_statement_repeat1, - STATE(3350), 1, - sym_on_stop_phrase, - STATE(1349), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [71681] = 6, + [65883] = 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(2182), 1, ts_builtin_sym_end, - STATE(1350), 2, + STATE(1279), 2, sym_comment, sym_include, - ACTIONS(1773), 25, + ACTIONS(2184), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106823,19 +100876,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71725] = 6, + [65927] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1815), 1, + ACTIONS(1603), 1, ts_builtin_sym_end, - STATE(1351), 2, + STATE(1280), 2, sym_comment, sym_include, - ACTIONS(1817), 25, + ACTIONS(1605), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106861,19 +100914,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71769] = 6, + [65971] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2221), 1, + ACTIONS(1733), 1, ts_builtin_sym_end, - STATE(1352), 2, + STATE(1281), 2, sym_comment, sym_include, - ACTIONS(2223), 25, + ACTIONS(1735), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106899,20 +100952,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71813] = 6, + [66015] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2225), 1, - ts_builtin_sym_end, - STATE(1353), 2, + STATE(1282), 2, sym_comment, sym_include, - ACTIONS(2227), 25, + ACTIONS(1861), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106937,96 +100989,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71857] = 6, + [66057] = 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(1354), 2, + ACTIONS(157), 2, + sym__or_operator, + sym__and_operator, + STATE(1283), 2, sym_comment, sym_include, - ACTIONS(2231), 25, + ACTIONS(155), 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, - [71901] = 6, + aux_sym_widget_field_token1, + [66101] = 6, 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(1355), 2, + ACTIONS(189), 2, + sym__or_operator, + sym__and_operator, + STATE(1284), 2, sym_comment, sym_include, - ACTIONS(1969), 25, + ACTIONS(187), 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, - [71945] = 6, + aux_sym_widget_field_token1, + [66145] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1907), 1, - ts_builtin_sym_end, - STATE(1356), 2, + STATE(1285), 2, sym_comment, sym_include, - ACTIONS(1909), 25, + ACTIONS(1697), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107051,19 +101102,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71989] = 6, + [66187] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2233), 1, + ACTIONS(1485), 1, ts_builtin_sym_end, - STATE(1357), 2, + STATE(1286), 2, sym_comment, sym_include, - ACTIONS(2235), 25, + ACTIONS(1487), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107089,19 +101140,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72033] = 6, + [66231] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2237), 1, + ACTIONS(1599), 1, ts_builtin_sym_end, - STATE(1358), 2, + STATE(1287), 2, sym_comment, sym_include, - ACTIONS(2239), 25, + ACTIONS(1601), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107127,19 +101178,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72077] = 6, + [66275] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1811), 1, + ACTIONS(1595), 1, ts_builtin_sym_end, - STATE(1359), 2, + STATE(1288), 2, sym_comment, sym_include, - ACTIONS(1813), 25, + ACTIONS(1597), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107165,57 +101216,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72121] = 6, + [66319] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, - ts_builtin_sym_end, - STATE(1360), 2, + ACTIONS(209), 2, + sym__or_operator, + sym__and_operator, + STATE(1289), 2, sym_comment, sym_include, - ACTIONS(1919), 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, - [72165] = 6, + aux_sym_widget_field_token1, + [66363] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1807), 1, + ACTIONS(1729), 1, ts_builtin_sym_end, - STATE(1361), 2, + STATE(1290), 2, sym_comment, sym_include, - ACTIONS(1809), 25, + ACTIONS(1731), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107241,19 +101292,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72209] = 5, + [66407] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1362), 2, + ACTIONS(1725), 1, + ts_builtin_sym_end, + STATE(1291), 2, sym_comment, sym_include, - ACTIONS(1761), 26, + ACTIONS(1727), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107278,19 +101330,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72251] = 5, + [66451] = 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(1721), 1, + ts_builtin_sym_end, + STATE(1292), 2, sym_comment, sym_include, - ACTIONS(1709), 26, + ACTIONS(1723), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107315,19 +101368,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72293] = 6, + [66495] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2113), 1, + ACTIONS(2186), 1, ts_builtin_sym_end, - STATE(1364), 2, + STATE(1293), 2, sym_comment, sym_include, - ACTIONS(2071), 25, + ACTIONS(2188), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107353,19 +101406,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72337] = 6, + [66539] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1803), 1, + ACTIONS(1717), 1, ts_builtin_sym_end, - STATE(1365), 2, + STATE(1294), 2, sym_comment, sym_include, - ACTIONS(1805), 25, + ACTIONS(1719), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107391,19 +101444,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72381] = 5, + [66583] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1366), 2, + ACTIONS(1713), 1, + ts_builtin_sym_end, + STATE(1295), 2, sym_comment, sym_include, - ACTIONS(1911), 26, + ACTIONS(1715), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107428,57 +101482,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72423] = 6, - ACTIONS(3), 1, + [66627] = 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(1799), 1, - ts_builtin_sym_end, - STATE(1367), 2, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2190), 1, + aux_sym_else_if_statement_token1, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1296), 2, sym_comment, sym_include, - ACTIONS(1801), 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, - [72467] = 6, + ACTIONS(229), 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, + [66689] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1795), 1, + ACTIONS(1709), 1, ts_builtin_sym_end, - STATE(1368), 2, + STATE(1297), 2, sym_comment, sym_include, - ACTIONS(1797), 25, + ACTIONS(1711), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107504,20 +101567,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72511] = 6, + [66733] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2059), 1, - ts_builtin_sym_end, - STATE(1369), 2, + STATE(1298), 2, sym_comment, sym_include, - ACTIONS(1967), 25, + ACTIONS(1693), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107542,19 +101604,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72555] = 5, + [66775] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1370), 2, + ACTIONS(1745), 1, + ts_builtin_sym_end, + STATE(1299), 2, sym_comment, sym_include, - ACTIONS(1607), 26, + ACTIONS(1747), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107579,20 +101642,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72597] = 6, + [66819] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1791), 1, - ts_builtin_sym_end, - STATE(1371), 2, + STATE(1300), 2, sym_comment, sym_include, - ACTIONS(1793), 25, + ACTIONS(2188), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107617,114 +101679,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72641] = 26, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2241), 1, - anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1639), 1, - sym_of, - STATE(1688), 1, - sym__pre_tuning, - STATE(1765), 1, - sym_where_clause, - STATE(1781), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2028), 1, - aux_sym_for_phrase_repeat2, - STATE(2570), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2855), 1, - sym_on_quit_phrase, - STATE(3165), 1, - sym_on_stop_phrase, - STATE(3179), 1, - aux_sym_for_statement_repeat1, - STATE(1372), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [72725] = 5, + [66861] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1373), 2, + ACTIONS(1431), 1, + sym__namedot, + STATE(1205), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(1301), 2, sym_comment, sym_include, - ACTIONS(1611), 26, + ACTIONS(83), 22, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [72767] = 6, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_NO_DASHERROR, + [66909] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1787), 1, + ACTIONS(2192), 1, ts_builtin_sym_end, - STATE(1374), 2, + STATE(1302), 2, sym_comment, sym_include, - ACTIONS(1789), 25, + ACTIONS(2031), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107750,115 +101757,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72811] = 26, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2243), 1, - anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1650), 1, - sym_of, - STATE(1679), 1, - sym__pre_tuning, - STATE(1739), 1, - aux_sym_for_phrase_repeat1, - STATE(1758), 1, - sym_where_clause, - STATE(1933), 1, - sym_query_tuning, - STATE(2085), 1, - aux_sym_for_phrase_repeat2, - STATE(2580), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2861), 1, - sym_on_quit_phrase, - STATE(3470), 1, - aux_sym_for_statement_repeat1, - STATE(3472), 1, - sym_on_stop_phrase, - STATE(1375), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [72895] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2247), 1, - aux_sym_variable_definition_token4, - STATE(1376), 2, - sym_comment, - sym_include, - ACTIONS(2245), 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, - [72939] = 6, + [66953] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1783), 1, + ACTIONS(1705), 1, ts_builtin_sym_end, - STATE(1377), 2, + STATE(1303), 2, sym_comment, sym_include, - ACTIONS(1785), 25, + ACTIONS(1707), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107884,19 +101795,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72983] = 5, + [66997] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1378), 2, + ACTIONS(1863), 1, + ts_builtin_sym_end, + STATE(1304), 2, sym_comment, sym_include, - ACTIONS(1615), 26, + ACTIONS(1865), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107921,19 +101833,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73025] = 6, + [67041] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1769), 1, + ACTIONS(1867), 1, ts_builtin_sym_end, - STATE(1379), 2, + STATE(1305), 2, sym_comment, sym_include, - ACTIONS(1771), 25, + ACTIONS(1869), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107959,20 +101871,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73069] = 6, + [67085] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1819), 1, - ts_builtin_sym_end, - STATE(1380), 2, + STATE(1306), 2, sym_comment, sym_include, - ACTIONS(1821), 25, + ACTIONS(2194), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107997,20 +101908,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73113] = 6, + [67127] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1779), 1, - ts_builtin_sym_end, - STATE(1381), 2, + STATE(1307), 2, sym_comment, sym_include, - ACTIONS(1781), 25, + ACTIONS(1985), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108035,20 +101945,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73157] = 6, + [67169] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1775), 1, - ts_builtin_sym_end, - STATE(1382), 2, + STATE(1308), 2, sym_comment, sym_include, - ACTIONS(1777), 25, + ACTIONS(1865), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108073,19 +101982,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73201] = 6, + [67211] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1625), 1, + ACTIONS(193), 2, + sym__or_operator, + sym__and_operator, + STATE(1309), 2, + sym_comment, + sym_include, + ACTIONS(191), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [67255] = 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(1310), 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, + [67299] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1701), 1, ts_builtin_sym_end, - STATE(1383), 2, + STATE(1311), 2, sym_comment, sym_include, - ACTIONS(1627), 25, + ACTIONS(1703), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -108111,17 +102096,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73245] = 5, + [67343] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1384), 2, + STATE(1312), 2, sym_comment, sym_include, - ACTIONS(1619), 26, + ACTIONS(1869), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108148,17 +102133,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73287] = 5, + [67385] = 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(1313), 2, sym_comment, sym_include, - ACTIONS(1623), 26, + ACTIONS(1989), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108185,57 +102170,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73329] = 5, + [67427] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1386), 2, + ACTIONS(133), 2, + sym__or_operator, + sym__and_operator, + STATE(1314), 2, sym_comment, sym_include, - ACTIONS(1627), 26, + ACTIONS(131), 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, - [73371] = 6, + aux_sym_widget_field_token1, + [67471] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1621), 1, - ts_builtin_sym_end, - STATE(1387), 2, + STATE(1315), 2, sym_comment, sym_include, - ACTIONS(1623), 25, + ACTIONS(1993), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108260,17 +102245,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73415] = 5, + [67513] = 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(1316), 2, sym_comment, sym_include, - ACTIONS(1771), 26, + ACTIONS(1873), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108297,20 +102282,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73457] = 6, + [67555] = 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(1389), 2, + STATE(1317), 2, sym_comment, sym_include, - ACTIONS(2009), 25, + ACTIONS(1877), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108335,20 +102319,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73501] = 6, + [67597] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1755), 1, - ts_builtin_sym_end, - STATE(1390), 2, + STATE(1318), 2, sym_comment, sym_include, - ACTIONS(1757), 25, + ACTIONS(1887), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108373,19 +102356,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73545] = 5, + [67639] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1391), 2, + ACTIONS(1695), 1, + ts_builtin_sym_end, + STATE(1319), 2, sym_comment, sym_include, - ACTIONS(1631), 26, + ACTIONS(1697), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108410,19 +102394,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73587] = 5, + [67683] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1392), 2, + ACTIONS(1871), 1, + ts_builtin_sym_end, + STATE(1320), 2, sym_comment, sym_include, - ACTIONS(2205), 26, + ACTIONS(1873), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108447,17 +102432,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73629] = 5, + [67727] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1393), 2, + STATE(1321), 2, sym_comment, sym_include, - ACTIONS(1635), 26, + ACTIONS(1881), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108484,19 +102469,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73671] = 6, + [67769] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2065), 1, + ACTIONS(1875), 1, ts_builtin_sym_end, - STATE(1394), 2, + STATE(1322), 2, sym_comment, sym_include, - ACTIONS(2033), 25, + ACTIONS(1877), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -108522,77 +102507,125 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73715] = 26, + [67813] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2196), 1, + aux_sym_if_statement_token2, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1323), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [67875] = 26, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2249), 1, + ACTIONS(2198), 1, anon_sym_COLON, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(1668), 1, + STATE(1617), 1, sym_of, - STATE(1671), 1, + STATE(1665), 1, sym__pre_tuning, - STATE(1727), 1, + STATE(1736), 1, sym_where_clause, - STATE(1780), 1, + STATE(1747), 1, aux_sym_for_phrase_repeat1, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(2031), 1, + STATE(2057), 1, aux_sym_for_phrase_repeat2, - STATE(2641), 1, + STATE(2522), 1, sym_on_error_phrase, - STATE(2735), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, + STATE(2775), 1, + sym_on_quit_phrase, STATE(3238), 1, aux_sym_for_statement_repeat1, STATE(3244), 1, sym_on_stop_phrase, - STATE(1395), 2, + STATE(1324), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [73799] = 5, + [67959] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1396), 2, + ACTIONS(1885), 1, + ts_builtin_sym_end, + STATE(1325), 2, sym_comment, sym_include, - ACTIONS(1767), 26, + ACTIONS(1887), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108617,19 +102650,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73841] = 5, + [68003] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2200), 1, + sym__terminator, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1326), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [68065] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2202), 1, + anon_sym_RPAREN, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1327), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [68127] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1397), 2, + ACTIONS(2204), 1, + ts_builtin_sym_end, + STATE(1328), 2, sym_comment, sym_include, - ACTIONS(1837), 26, + ACTIONS(2206), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108654,19 +102782,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73883] = 5, + [68171] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1398), 2, + ACTIONS(1563), 1, + ts_builtin_sym_end, + STATE(1329), 2, sym_comment, sym_include, - ACTIONS(1639), 26, + ACTIONS(1565), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108691,19 +102820,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73925] = 5, + [68215] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1399), 2, + ACTIONS(1917), 1, + ts_builtin_sym_end, + STATE(1330), 2, sym_comment, sym_include, - ACTIONS(1643), 26, + ACTIONS(1919), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108728,19 +102858,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73967] = 5, + [68259] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1400), 2, + ACTIONS(1691), 1, + ts_builtin_sym_end, + STATE(1331), 2, sym_comment, sym_include, - ACTIONS(1647), 26, + ACTIONS(1693), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108765,19 +102896,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74009] = 6, + [68303] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1927), 1, + ACTIONS(2208), 1, ts_builtin_sym_end, - STATE(1401), 2, + STATE(1332), 2, sym_comment, sym_include, - ACTIONS(1929), 25, + ACTIONS(2194), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -108803,19 +102934,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74053] = 6, + [68347] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2210), 1, + sym_identifier, + ACTIONS(2214), 1, + aux_sym_primitive_type_token19, + STATE(1615), 1, + sym_access_tuning, + STATE(4162), 1, + sym_primitive_type, + STATE(4569), 1, + sym_qualified_name, + STATE(1333), 2, + sym_comment, + sym_include, + ACTIONS(2216), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2212), 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, + [68401] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1751), 1, + ACTIONS(1983), 1, ts_builtin_sym_end, - STATE(1402), 2, + STATE(1334), 2, sym_comment, sym_include, - ACTIONS(1753), 25, + ACTIONS(1985), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -108841,56 +103015,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74097] = 5, + [68445] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1403), 2, + ACTIONS(141), 2, + sym__or_operator, + sym__and_operator, + STATE(1335), 2, sym_comment, sym_include, - ACTIONS(2195), 26, + ACTIONS(139), 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, - [74139] = 6, + aux_sym_widget_field_token1, + [68489] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2251), 1, + ACTIONS(1591), 1, ts_builtin_sym_end, - STATE(1404), 2, + STATE(1336), 2, sym_comment, sym_include, - ACTIONS(2253), 25, + ACTIONS(1593), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -108916,19 +103091,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74183] = 5, + [68533] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1405), 2, + ACTIONS(1987), 1, + ts_builtin_sym_end, + STATE(1337), 2, sym_comment, sym_include, - ACTIONS(1651), 26, + ACTIONS(1989), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108953,19 +103129,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74225] = 6, + [68577] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2123), 1, + ACTIONS(1637), 1, ts_builtin_sym_end, - STATE(1406), 2, + STATE(1338), 2, sym_comment, sym_include, - ACTIONS(2085), 25, + ACTIONS(1529), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -108991,19 +103167,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74269] = 6, + [68621] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1703), 1, + ACTIONS(1991), 1, ts_builtin_sym_end, - STATE(1407), 2, + STATE(1339), 2, sym_comment, sym_include, - ACTIONS(1705), 25, + ACTIONS(1993), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109029,19 +103205,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74313] = 6, + [68665] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2125), 1, + ACTIONS(1995), 1, ts_builtin_sym_end, - STATE(1408), 2, + STATE(1340), 2, sym_comment, sym_include, - ACTIONS(2087), 25, + ACTIONS(1997), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109067,19 +103243,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74357] = 6, + [68709] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2127), 1, + ACTIONS(2218), 1, ts_builtin_sym_end, - STATE(1409), 2, + STATE(1341), 2, sym_comment, sym_include, - ACTIONS(2089), 25, + ACTIONS(2220), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109105,19 +103281,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74401] = 6, + [68753] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2222), 1, + aux_sym_else_if_statement_token1, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1342), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [68815] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2129), 1, + ACTIONS(1587), 1, ts_builtin_sym_end, - STATE(1410), 2, + STATE(1343), 2, sym_comment, sym_include, - ACTIONS(2091), 25, + ACTIONS(1589), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109143,19 +103366,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74445] = 6, + [68859] = 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(1879), 1, ts_builtin_sym_end, - STATE(1411), 2, + STATE(1344), 2, sym_comment, sym_include, - ACTIONS(2005), 25, + ACTIONS(1881), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109181,168 +103404,171 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74489] = 5, + [68903] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1412), 2, + ACTIONS(145), 2, + sym__or_operator, + sym__and_operator, + STATE(1345), 2, sym_comment, sym_include, - ACTIONS(2255), 26, + ACTIONS(143), 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, - [74531] = 5, + aux_sym_widget_field_token1, + [68947] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1413), 2, + ACTIONS(149), 2, + sym__or_operator, + sym__and_operator, + STATE(1346), 2, sym_comment, sym_include, - ACTIONS(2257), 26, + ACTIONS(147), 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, - [74573] = 6, + aux_sym_widget_field_token1, + [68991] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, - ts_builtin_sym_end, - STATE(1414), 2, + ACTIONS(153), 2, + sym__or_operator, + sym__and_operator, + STATE(1347), 2, sym_comment, sym_include, - ACTIONS(1619), 25, + ACTIONS(151), 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, - [74617] = 5, + aux_sym_widget_field_token1, + [69035] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1415), 2, + ACTIONS(161), 2, + sym__or_operator, + sym__and_operator, + STATE(1348), 2, sym_comment, sym_include, - ACTIONS(1655), 26, + ACTIONS(159), 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, - [74659] = 6, + aux_sym_widget_field_token1, + [69079] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2259), 1, + ACTIONS(1471), 1, ts_builtin_sym_end, - STATE(1416), 2, + STATE(1349), 2, sym_comment, sym_include, - ACTIONS(2255), 25, + ACTIONS(1473), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109368,19 +103594,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74703] = 6, + [69123] = 26, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2224), 1, + anon_sym_COLON, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1619), 1, + sym_of, + STATE(1663), 1, + sym__pre_tuning, + STATE(1748), 1, + aux_sym_for_phrase_repeat1, + STATE(1760), 1, + sym_where_clause, + STATE(1915), 1, + sym_query_tuning, + STATE(2051), 1, + aux_sym_for_phrase_repeat2, + STATE(2508), 1, + sym_on_error_phrase, + STATE(2665), 1, + sym_on_quit_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(3256), 1, + aux_sym_for_statement_repeat1, + STATE(3260), 1, + sym_on_stop_phrase, + STATE(1350), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [69207] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1613), 1, + ACTIONS(2001), 1, ts_builtin_sym_end, - STATE(1417), 2, + STATE(1351), 2, sym_comment, sym_include, - ACTIONS(1615), 25, + ACTIONS(2003), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109406,19 +103690,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74747] = 6, + [69251] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2261), 1, + ACTIONS(2011), 1, ts_builtin_sym_end, - STATE(1418), 2, + STATE(1352), 2, sym_comment, sym_include, - ACTIONS(2263), 25, + ACTIONS(2009), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109444,19 +103728,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74791] = 5, + [69295] = 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(2021), 1, + ts_builtin_sym_end, + STATE(1353), 2, sym_comment, sym_include, - ACTIONS(1923), 26, + ACTIONS(2013), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109481,19 +103766,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74833] = 6, + [69339] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2131), 1, + ACTIONS(2023), 1, ts_builtin_sym_end, - STATE(1420), 2, + STATE(1354), 2, sym_comment, sym_include, - ACTIONS(2093), 25, + ACTIONS(2015), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109519,19 +103804,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74877] = 5, + [69383] = 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(1897), 1, + ts_builtin_sym_end, + STATE(1355), 2, sym_comment, sym_include, - ACTIONS(1975), 26, + ACTIONS(1883), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109556,19 +103842,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74919] = 5, + [69427] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1422), 2, + ACTIONS(1899), 1, + ts_builtin_sym_end, + STATE(1356), 2, sym_comment, sym_include, - ACTIONS(1659), 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, @@ -109593,19 +103880,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74961] = 6, + [69471] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2133), 1, + ACTIONS(1907), 1, ts_builtin_sym_end, - STATE(1423), 2, + STATE(1357), 2, sym_comment, sym_include, - ACTIONS(2095), 25, + ACTIONS(1479), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109631,19 +103918,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75005] = 6, + [69515] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2135), 1, + ACTIONS(2025), 1, ts_builtin_sym_end, - STATE(1424), 2, + STATE(1358), 2, sym_comment, sym_include, - ACTIONS(2097), 25, + ACTIONS(2017), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109669,17 +103956,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75049] = 5, + [69559] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1425), 2, + STATE(1359), 2, sym_comment, sym_include, - ACTIONS(2265), 26, + ACTIONS(1703), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109706,94 +103993,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75091] = 6, + [69601] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2137), 1, - ts_builtin_sym_end, - STATE(1426), 2, + ACTIONS(121), 2, + sym__or_operator, + sym__and_operator, + STATE(1360), 2, sym_comment, sym_include, - ACTIONS(2099), 25, + ACTIONS(119), 24, + anon_sym_SLASH, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_COMMA, aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [75135] = 5, + aux_sym_widget_field_token1, + [69645] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1427), 2, + ACTIONS(169), 2, + sym__or_operator, + sym__and_operator, + STATE(1361), 2, sym_comment, sym_include, - ACTIONS(2267), 26, + ACTIONS(167), 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, - [75177] = 6, + aux_sym_widget_field_token1, + [69689] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2139), 1, + ACTIONS(1901), 1, ts_builtin_sym_end, - STATE(1428), 2, + STATE(1362), 2, sym_comment, sym_include, - ACTIONS(2101), 25, + ACTIONS(1651), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109819,56 +104107,105 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75221] = 5, + [69733] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1429), 2, + ACTIONS(173), 2, + sym__or_operator, + sym__and_operator, + STATE(1363), 2, sym_comment, sym_include, - ACTIONS(1663), 26, + ACTIONS(171), 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, - [75263] = 5, + aux_sym_widget_field_token1, + [69777] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2226), 1, + sym__terminator, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1364), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [69839] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1430), 2, + ACTIONS(1687), 1, + ts_builtin_sym_end, + STATE(1365), 2, sym_comment, sym_include, - ACTIONS(1667), 26, + ACTIONS(1689), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109893,77 +104230,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75305] = 26, + [69883] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2269), 1, - anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1646), 1, - sym_of, - STATE(1684), 1, - sym__pre_tuning, - STATE(1753), 1, - sym_where_clause, - STATE(1756), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2084), 1, - aux_sym_for_phrase_repeat2, - STATE(2562), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2886), 1, - sym_on_quit_phrase, - STATE(3126), 1, - aux_sym_for_statement_repeat1, - STATE(3130), 1, - sym_on_stop_phrase, - STATE(1431), 2, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2228), 1, + anon_sym_RPAREN, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1366), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [75389] = 5, + ACTIONS(229), 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, + [69945] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1432), 2, + ACTIONS(1903), 1, + ts_builtin_sym_end, + STATE(1367), 2, sym_comment, sym_include, - ACTIONS(2223), 26, + ACTIONS(1905), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109988,19 +104315,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75431] = 5, + [69989] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1433), 2, + ACTIONS(1683), 1, + ts_builtin_sym_end, + STATE(1368), 2, sym_comment, sym_include, - ACTIONS(1671), 26, + ACTIONS(1685), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110025,57 +104353,190 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75473] = 6, + [70033] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2230), 1, + aux_sym_if_statement_token2, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1369), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [70095] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1665), 1, - ts_builtin_sym_end, - STATE(1434), 2, + ACTIONS(177), 2, + sym__or_operator, + sym__and_operator, + STATE(1370), 2, sym_comment, sym_include, - ACTIONS(1667), 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, - [75517] = 5, + aux_sym_widget_field_token1, + [70139] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1371), 2, + sym_comment, + sym_include, + ACTIONS(87), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [70183] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2232), 1, + aux_sym_else_if_statement_token1, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1372), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [70245] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1435), 2, + ACTIONS(2234), 1, + ts_builtin_sym_end, + STATE(1373), 2, sym_comment, sym_include, - ACTIONS(1675), 26, + ACTIONS(2236), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110100,19 +104561,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75559] = 6, + [70289] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1609), 1, + ACTIONS(1639), 1, ts_builtin_sym_end, - STATE(1436), 2, + STATE(1374), 2, sym_comment, sym_include, - ACTIONS(1611), 25, + ACTIONS(1527), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110138,19 +104599,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75603] = 5, + [70333] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1437), 2, + ACTIONS(1679), 1, + ts_builtin_sym_end, + STATE(1375), 2, sym_comment, sym_include, - ACTIONS(1981), 26, + ACTIONS(1681), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110175,19 +104637,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75645] = 6, + [70377] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(201), 2, + sym__or_operator, + sym__and_operator, + STATE(1376), 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, + [70421] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1605), 1, + ACTIONS(1909), 1, ts_builtin_sym_end, - STATE(1438), 2, + STATE(1377), 2, sym_comment, sym_include, - ACTIONS(1607), 25, + ACTIONS(1483), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110213,19 +104713,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75689] = 5, + [70465] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1439), 2, + ACTIONS(205), 2, + sym__or_operator, + sym__and_operator, + STATE(1378), 2, sym_comment, sym_include, - ACTIONS(1985), 26, + ACTIONS(203), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [70509] = 6, + 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(1379), 2, + sym_comment, + sym_include, + ACTIONS(1915), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110250,19 +104789,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75731] = 6, + [70553] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2271), 1, + ACTIONS(1677), 1, ts_builtin_sym_end, - STATE(1440), 2, + STATE(1380), 2, sym_comment, sym_include, - ACTIONS(2257), 25, + ACTIONS(1493), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110288,19 +104827,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75775] = 6, + [70597] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2238), 1, + anon_sym_RPAREN, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1381), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [70659] = 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(1475), 1, ts_builtin_sym_end, - STATE(1441), 2, + STATE(1382), 2, sym_comment, sym_include, - ACTIONS(2017), 25, + ACTIONS(1477), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110326,19 +104912,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75819] = 6, + [70703] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1747), 1, + ACTIONS(1583), 1, ts_builtin_sym_end, - STATE(1442), 2, + STATE(1383), 2, sym_comment, sym_include, - ACTIONS(1749), 25, + ACTIONS(1585), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110364,17 +104950,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75863] = 5, + [70747] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1443), 2, + STATE(1384), 2, sym_comment, sym_include, - ACTIONS(2025), 26, + ACTIONS(1997), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110401,19 +104987,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75905] = 6, + [70789] = 26, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2240), 1, + anon_sym_COLON, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1643), 1, + sym_of, + STATE(1669), 1, + sym__pre_tuning, + STATE(1709), 1, + aux_sym_for_phrase_repeat1, + STATE(1759), 1, + sym_where_clause, + STATE(1915), 1, + sym_query_tuning, + STATE(1994), 1, + aux_sym_for_phrase_repeat2, + STATE(2630), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2708), 1, + sym_on_quit_phrase, + STATE(3040), 1, + aux_sym_for_statement_repeat1, + STATE(3134), 1, + sym_on_stop_phrase, + STATE(1385), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [70873] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1895), 1, + ACTIONS(1673), 1, ts_builtin_sym_end, - STATE(1444), 2, + STATE(1386), 2, sym_comment, sym_include, - ACTIONS(1897), 25, + ACTIONS(1675), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110439,19 +105083,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75949] = 5, + [70917] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1445), 2, + ACTIONS(1579), 1, + ts_builtin_sym_end, + STATE(1387), 2, sym_comment, sym_include, - ACTIONS(1679), 26, + ACTIONS(1581), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110476,19 +105121,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75991] = 6, + [70961] = 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(1669), 1, ts_builtin_sym_end, - STATE(1446), 2, + STATE(1388), 2, sym_comment, sym_include, - ACTIONS(1989), 25, + ACTIONS(1671), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110514,19 +105159,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76035] = 6, + [71005] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1665), 1, ts_builtin_sym_end, - STATE(1447), 2, + STATE(1389), 2, sym_comment, sym_include, - ACTIONS(1933), 25, + ACTIONS(1667), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110552,19 +105197,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76079] = 6, + [71049] = 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(1661), 1, ts_builtin_sym_end, - STATE(1448), 2, + STATE(1390), 2, sym_comment, sym_include, - ACTIONS(2013), 25, + ACTIONS(1663), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110590,56 +105235,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76123] = 5, + [71093] = 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(213), 2, + sym__or_operator, + sym__and_operator, + STATE(1391), 2, sym_comment, sym_include, - ACTIONS(2163), 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, - [76165] = 6, + aux_sym_widget_field_token1, + [71137] = 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(2242), 1, ts_builtin_sym_end, - STATE(1450), 2, + STATE(1392), 2, sym_comment, sym_include, - ACTIONS(1911), 25, + ACTIONS(2244), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110665,19 +105311,104 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76209] = 6, + [71181] = 6, + 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(1393), 2, + sym_comment, + sym_include, + ACTIONS(83), 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, + [71225] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2246), 1, + sym__terminator, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1394), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [71287] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1707), 1, + ACTIONS(1657), 1, ts_builtin_sym_end, - STATE(1451), 2, + STATE(1395), 2, sym_comment, sym_include, - ACTIONS(1709), 25, + ACTIONS(1659), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110703,17 +105434,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76253] = 5, + [71331] = 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(1396), 2, sym_comment, sym_include, - ACTIONS(2159), 26, + ACTIONS(2003), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110740,19 +105471,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76295] = 6, + [71373] = 26, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2248), 1, + anon_sym_COLON, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1631), 1, + sym_of, + STATE(1653), 1, + sym__pre_tuning, + STATE(1767), 1, + sym_where_clause, + STATE(1775), 1, + aux_sym_for_phrase_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(2021), 1, + aux_sym_for_phrase_repeat2, + STATE(2545), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2828), 1, + sym_on_quit_phrase, + STATE(3326), 1, + aux_sym_for_statement_repeat1, + STATE(3328), 1, + sym_on_stop_phrase, + STATE(1397), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [71457] = 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(1653), 1, ts_builtin_sym_end, - STATE(1453), 2, + STATE(1398), 2, sym_comment, sym_include, - ACTIONS(1937), 25, + ACTIONS(1655), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110778,56 +105567,143 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76339] = 5, + [71501] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1454), 2, + ACTIONS(197), 2, + sym__or_operator, + sym__and_operator, + STATE(1399), 2, sym_comment, sym_include, - ACTIONS(1683), 26, + ACTIONS(195), 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, - [76381] = 5, + aux_sym_widget_field_token1, + [71545] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1455), 2, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(1400), 2, sym_comment, sym_include, - ACTIONS(1687), 26, + 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, + [71589] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2250), 1, + anon_sym_RPAREN, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1401), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [71651] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1911), 1, + ts_builtin_sym_end, + STATE(1402), 2, + sym_comment, + sym_include, + ACTIONS(1489), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110852,57 +105728,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76423] = 6, + [71695] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, - ts_builtin_sym_end, - STATE(1456), 2, + ACTIONS(181), 2, + sym__or_operator, + sym__and_operator, + STATE(1403), 2, sym_comment, sym_include, - ACTIONS(1761), 25, + ACTIONS(179), 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, - [76467] = 6, + aux_sym_widget_field_token1, + [71739] = 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(1404), 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, + [71783] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1743), 1, + ACTIONS(1913), 1, ts_builtin_sym_end, - STATE(1457), 2, + STATE(1405), 2, sym_comment, sym_include, - ACTIONS(1745), 25, + ACTIONS(1491), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110928,68 +105842,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76511] = 5, + [71827] = 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(137), 2, + sym__or_operator, + sym__and_operator, + STATE(1406), 2, sym_comment, sym_include, - ACTIONS(2191), 26, + ACTIONS(135), 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, - [76553] = 8, + aux_sym_widget_field_token1, + [71871] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2273), 1, - aux_sym_buffer_definition_token2, - ACTIONS(2275), 1, - aux_sym_repeat_statement_token1, - ACTIONS(2277), 1, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, + STATE(1407), 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, - STATE(1459), 2, + aux_sym_widget_field_token1, + [71915] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1408), 2, sym_comment, sym_include, - ACTIONS(2191), 23, + ACTIONS(1539), 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, @@ -110997,6 +105946,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, @@ -111005,17 +105955,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76601] = 5, + [71957] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1460), 2, + STATE(1409), 2, sym_comment, sym_include, - ACTIONS(1763), 26, + ACTIONS(1543), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111042,17 +105992,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76643] = 5, + [71999] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1461), 2, + STATE(1410), 2, sym_comment, sym_include, - ACTIONS(2217), 26, + ACTIONS(1547), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111079,20 +106029,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76685] = 6, + [72041] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1827), 1, - ts_builtin_sym_end, - STATE(1462), 2, + STATE(1411), 2, sym_comment, sym_include, - ACTIONS(1829), 25, + ACTIONS(1559), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -111117,17 +106066,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76729] = 5, + [72083] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1463), 2, + STATE(1412), 2, sym_comment, sym_include, - ACTIONS(1773), 26, + ACTIONS(1569), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111154,19 +106103,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76771] = 5, + [72125] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1464), 2, + ACTIONS(1495), 1, + ts_builtin_sym_end, + STATE(1413), 2, sym_comment, sym_include, - ACTIONS(1603), 26, + ACTIONS(1497), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -111191,19 +106141,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76813] = 5, + [72169] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1465), 2, + ACTIONS(1575), 1, + ts_builtin_sym_end, + STATE(1414), 2, sym_comment, sym_include, - ACTIONS(1693), 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, @@ -111228,19 +106179,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76855] = 6, + [72213] = 26, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2252), 1, + anon_sym_COLON, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1640), 1, + sym_of, + STATE(1650), 1, + sym__pre_tuning, + STATE(1708), 1, + aux_sym_for_phrase_repeat1, + STATE(1745), 1, + sym_where_clause, + STATE(1915), 1, + sym_query_tuning, + STATE(2045), 1, + aux_sym_for_phrase_repeat2, + STATE(2553), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2839), 1, + sym_on_quit_phrase, + STATE(3345), 1, + aux_sym_for_statement_repeat1, + STATE(3349), 1, + sym_on_stop_phrase, + STATE(1415), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [72297] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1831), 1, + ACTIONS(1641), 1, ts_builtin_sym_end, - STATE(1466), 2, + STATE(1416), 2, sym_comment, sym_include, - ACTIONS(1833), 25, + ACTIONS(1525), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -111266,19 +106275,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76899] = 6, + [72341] = 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(1571), 1, ts_builtin_sym_end, - STATE(1467), 2, + STATE(1417), 2, sym_comment, sym_include, - ACTIONS(1941), 25, + ACTIONS(1573), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -111304,20 +106313,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76943] = 6, + [72385] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1653), 1, - ts_builtin_sym_end, - STATE(1468), 2, + STATE(1418), 2, sym_comment, sym_include, - ACTIONS(1655), 25, + ACTIONS(1573), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -111342,17 +106350,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76987] = 5, + [72427] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1469), 2, + STATE(1419), 2, sym_comment, sym_include, - ACTIONS(2167), 26, + ACTIONS(1577), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111379,17 +106387,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77029] = 5, + [72469] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1470), 2, + STATE(1420), 2, sym_comment, sym_include, - ACTIONS(2187), 26, + ACTIONS(1581), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111416,17 +106424,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77071] = 5, + [72511] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1471), 2, + STATE(1421), 2, sym_comment, sym_include, - ACTIONS(1697), 26, + ACTIONS(1585), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111453,17 +106461,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77113] = 5, + [72553] = 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(1422), 2, sym_comment, sym_include, - ACTIONS(2235), 26, + ACTIONS(1915), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111490,20 +106498,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77155] = 6, + [72595] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2107), 1, - ts_builtin_sym_end, - STATE(1473), 2, + STATE(1423), 2, sym_comment, sym_include, - ACTIONS(2063), 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, @@ -111528,17 +106535,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77199] = 5, + [72637] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2254), 1, + aux_sym_if_statement_token2, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1424), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [72699] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1474), 2, + STATE(1425), 2, sym_comment, sym_include, - ACTIONS(1701), 26, + ACTIONS(2220), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111565,20 +106619,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77241] = 6, + [72741] = 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(1475), 2, + STATE(1426), 2, sym_comment, sym_include, - ACTIONS(1923), 25, + ACTIONS(1593), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -111603,20 +106656,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77285] = 6, + [72783] = 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(1476), 2, + STATE(1427), 2, sym_comment, sym_include, - ACTIONS(1945), 25, + ACTIONS(1919), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -111641,20 +106693,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77329] = 6, + [72825] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1739), 1, - ts_builtin_sym_end, - STATE(1477), 2, + STATE(1428), 2, sym_comment, sym_include, - ACTIONS(1741), 25, + ACTIONS(1565), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -111679,17 +106730,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77373] = 5, + [72867] = 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(1429), 2, sym_comment, sym_include, - ACTIONS(2031), 26, + ACTIONS(1597), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111716,17 +106767,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77415] = 5, + [72909] = 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(1430), 2, sym_comment, sym_include, - ACTIONS(1925), 26, + ACTIONS(1601), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111753,17 +106804,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77457] = 5, + [72951] = 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(1431), 2, sym_comment, sym_include, - ACTIONS(1967), 26, + ACTIONS(1605), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111790,17 +106841,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77499] = 5, + [72993] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1481), 2, + STATE(1432), 2, sym_comment, sym_include, - ACTIONS(1969), 26, + ACTIONS(2184), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111827,17 +106878,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77541] = 5, + [73035] = 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(1433), 2, sym_comment, sym_include, - ACTIONS(1971), 26, + ACTIONS(1609), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111864,57 +106915,113 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77583] = 6, - ACTIONS(3), 1, + [73077] = 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(1973), 1, - ts_builtin_sym_end, - STATE(1483), 2, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2256), 1, + aux_sym_if_statement_token2, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1434), 2, sym_comment, sym_include, - ACTIONS(1975), 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, - [77627] = 6, + ACTIONS(229), 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, + [73139] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2258), 1, + aux_sym_else_if_statement_token1, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1435), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [73201] = 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(1567), 1, ts_builtin_sym_end, - STATE(1484), 2, + STATE(1436), 2, sym_comment, sym_include, - ACTIONS(1961), 25, + ACTIONS(1569), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -111940,17 +107047,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77671] = 5, + [73245] = 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(1437), 2, sym_comment, sym_include, - ACTIONS(2037), 26, + ACTIONS(2176), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111977,77 +107084,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77713] = 26, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2279), 1, - anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1636), 1, - sym_of, - STATE(1683), 1, - sym__pre_tuning, - STATE(1768), 1, - aux_sym_for_phrase_repeat1, - STATE(1787), 1, - sym_where_clause, - STATE(1933), 1, - sym_query_tuning, - STATE(2073), 1, - aux_sym_for_phrase_repeat2, - STATE(2633), 1, - sym_on_error_phrase, - STATE(2760), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3220), 1, - aux_sym_for_statement_repeat1, - STATE(3223), 1, - sym_on_stop_phrase, - STATE(1486), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [77797] = 6, + [73287] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1899), 1, + ACTIONS(1557), 1, ts_builtin_sym_end, - STATE(1487), 2, + STATE(1438), 2, sym_comment, sym_include, - ACTIONS(1901), 25, + ACTIONS(1559), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -112073,17 +107122,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77841] = 5, + [73331] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1488), 2, + STATE(1439), 2, sym_comment, sym_include, - ACTIONS(2041), 26, + ACTIONS(2170), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -112110,17 +107159,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77883] = 5, + [73373] = 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(1440), 2, sym_comment, sym_include, - ACTIONS(2045), 26, + ACTIONS(1613), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -112147,17 +107196,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77925] = 5, + [73415] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1490), 2, + STATE(1441), 2, sym_comment, sym_include, - ACTIONS(2049), 26, + ACTIONS(1895), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -112184,20 +107233,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77967] = 6, + [73457] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1735), 1, - ts_builtin_sym_end, - STATE(1491), 2, + STATE(1442), 2, sym_comment, sym_include, - ACTIONS(1737), 25, + ACTIONS(1891), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -112222,19 +107270,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78011] = 5, + [73499] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1492), 2, + ACTIONS(1929), 1, + ts_builtin_sym_end, + STATE(1443), 2, sym_comment, sym_include, - ACTIONS(2053), 26, + ACTIONS(1523), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -112259,17 +107308,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78053] = 5, + [73543] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1493), 2, + STATE(1444), 2, sym_comment, sym_include, - ACTIONS(2239), 26, + ACTIONS(1617), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -112296,20 +107345,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78095] = 6, + [73585] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1731), 1, - ts_builtin_sym_end, - STATE(1494), 2, + STATE(1445), 2, sym_comment, sym_include, - ACTIONS(1733), 25, + ACTIONS(2119), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -112334,20 +107382,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78139] = 6, + [73627] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1903), 1, - ts_builtin_sym_end, - STATE(1495), 2, + STATE(1446), 2, sym_comment, sym_include, - ACTIONS(1905), 25, + ACTIONS(2115), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -112372,17 +107419,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78183] = 5, + [73669] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1496), 2, + STATE(1447), 2, sym_comment, sym_include, - ACTIONS(1705), 26, + ACTIONS(1621), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -112409,55 +107456,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78225] = 6, + [73711] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1661), 1, - ts_builtin_sym_end, - STATE(1497), 2, - sym_comment, - sym_include, - ACTIONS(1663), 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, - [78269] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1498), 2, + STATE(1448), 2, sym_comment, sym_include, - ACTIONS(1713), 26, + ACTIONS(1625), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -112484,17 +107493,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78311] = 5, + [73753] = 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(1449), 2, sym_comment, sym_include, - ACTIONS(1717), 26, + ACTIONS(2101), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -112521,19 +107530,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78353] = 6, + [73795] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1727), 1, + ACTIONS(1545), 1, ts_builtin_sym_end, - STATE(1500), 2, + STATE(1450), 2, sym_comment, sym_include, - ACTIONS(1729), 25, + ACTIONS(1547), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -112559,19 +107568,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78397] = 5, + [73839] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1501), 2, + ACTIONS(1541), 1, + ts_builtin_sym_end, + STATE(1451), 2, sym_comment, sym_include, - ACTIONS(2281), 26, + ACTIONS(1543), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -112596,17 +107606,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78439] = 5, + [73883] = 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(1452), 2, sym_comment, sym_include, - ACTIONS(1721), 26, + ACTIONS(1629), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -112633,17 +107643,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78481] = 5, + [73925] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1503), 2, + STATE(1453), 2, sym_comment, sym_include, - ACTIONS(1725), 26, + ACTIONS(1633), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -112670,93 +107680,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78523] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1723), 1, - ts_builtin_sym_end, - STATE(1504), 2, - sym_comment, - sym_include, - ACTIONS(1725), 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, - [78567] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1719), 1, - ts_builtin_sym_end, - STATE(1505), 2, - sym_comment, - sym_include, - ACTIONS(1721), 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, - [78611] = 5, + [73967] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1506), 2, + STATE(1454), 2, sym_comment, sym_include, - ACTIONS(1729), 26, + ACTIONS(1951), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -112783,56 +107717,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78653] = 5, - ACTIONS(3), 1, + [74009] = 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(1507), 2, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2260), 1, + sym__terminator, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1455), 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, - 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, - [78695] = 5, + ACTIONS(229), 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, + [74071] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1508), 2, + ACTIONS(1537), 1, + ts_builtin_sym_end, + STATE(1456), 2, sym_comment, sym_include, - ACTIONS(2017), 26, + ACTIONS(1539), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -112857,17 +107802,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78737] = 5, + [74115] = 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(1457), 2, sym_comment, sym_include, - ACTIONS(2013), 26, + ACTIONS(1555), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -112894,17 +107839,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78779] = 5, + [74157] = 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(1458), 2, sym_comment, sym_include, - ACTIONS(2009), 26, + ACTIONS(2051), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -112931,64 +107876,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78821] = 5, + [74199] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1511), 2, - sym_comment, - sym_include, - ACTIONS(2005), 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, + ACTIONS(2262), 1, aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, + ACTIONS(2264), 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(2266), 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, - [78863] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1512), 2, + STATE(1459), 2, sym_comment, sym_include, - ACTIONS(1601), 26, + ACTIONS(2051), 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, @@ -112996,7 +107908,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, @@ -113005,17 +107916,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78905] = 5, + [74247] = 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(1460), 2, sym_comment, sym_include, - ACTIONS(2283), 26, + ACTIONS(1535), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113042,17 +107953,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78947] = 5, + [74289] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1514), 2, + STATE(1461), 2, sym_comment, sym_include, - ACTIONS(1999), 26, + ACTIONS(2063), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113079,17 +107990,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [78989] = 5, + [74331] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1515), 2, + STATE(1462), 2, sym_comment, sym_include, - ACTIONS(1977), 26, + ACTIONS(1551), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113116,17 +108027,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79031] = 5, + [74373] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1516), 2, + STATE(1463), 2, sym_comment, sym_include, - ACTIONS(1993), 26, + ACTIONS(1531), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113153,19 +108064,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79073] = 5, + [74415] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1517), 2, + ACTIONS(1643), 1, + ts_builtin_sym_end, + STATE(1464), 2, sym_comment, sym_include, - ACTIONS(1989), 26, + ACTIONS(1517), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -113190,17 +108102,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79115] = 5, + [74459] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1518), 2, + STATE(1465), 2, sym_comment, sym_include, - ACTIONS(1737), 26, + ACTIONS(1533), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113227,75 +108139,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79157] = 26, - ACTIONS(59), 1, + [74501] = 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(69), 1, - sym__namedot, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2285), 1, - anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1645), 1, - sym_of, - STATE(1672), 1, - sym__pre_tuning, - STATE(1760), 1, - sym_where_clause, - STATE(1790), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2016), 1, - aux_sym_for_phrase_repeat2, - STATE(2566), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2872), 1, - sym_on_quit_phrase, - STATE(3486), 1, - aux_sym_for_statement_repeat1, - STATE(3489), 1, - sym_on_stop_phrase, - STATE(1519), 2, + STATE(1466), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [79241] = 5, + ACTIONS(2123), 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, + [74543] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1520), 2, + STATE(1467), 2, sym_comment, sym_include, - ACTIONS(1741), 26, + ACTIONS(2206), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113322,20 +108213,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79283] = 6, + [74585] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1891), 1, - ts_builtin_sym_end, - STATE(1521), 2, + STATE(1468), 2, sym_comment, sym_include, - ACTIONS(1893), 25, + ACTIONS(1529), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -113360,20 +108250,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79327] = 6, + [74627] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2287), 1, - ts_builtin_sym_end, - STATE(1522), 2, + STATE(1469), 2, sym_comment, sym_include, - ACTIONS(2281), 25, + 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, @@ -113398,17 +108287,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79371] = 5, + [74669] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1523), 2, + STATE(1470), 2, sym_comment, sym_include, - ACTIONS(1745), 26, + ACTIONS(1525), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113435,19 +108324,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79413] = 5, + [74711] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1524), 2, + ACTIONS(2268), 1, + ts_builtin_sym_end, + STATE(1471), 2, sym_comment, sym_include, - ACTIONS(1749), 26, + ACTIONS(2270), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -113472,17 +108362,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79455] = 5, + [74755] = 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(1472), 2, sym_comment, sym_include, - ACTIONS(2101), 26, + ACTIONS(2091), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113509,19 +108399,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79497] = 5, + [74797] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1526), 2, + ACTIONS(2272), 1, + ts_builtin_sym_end, + STATE(1473), 2, sym_comment, sym_include, - ACTIONS(2099), 26, + ACTIONS(2274), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -113546,17 +108437,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79539] = 5, + [74841] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1527), 2, + STATE(1474), 2, sym_comment, sym_include, - ACTIONS(2097), 26, + ACTIONS(1517), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113583,17 +108474,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79581] = 5, + [74883] = 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(1475), 2, sym_comment, sym_include, - ACTIONS(2095), 26, + ACTIONS(2270), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113620,19 +108511,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79623] = 6, + [74925] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, + ACTIONS(1499), 1, ts_builtin_sym_end, - STATE(1529), 2, + STATE(1476), 2, sym_comment, sym_include, - ACTIONS(1717), 25, + ACTIONS(1501), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -113658,20 +108549,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79667] = 6, + [74969] = 26, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2276), 1, + anon_sym_COLON, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1645), 1, + sym_of, + STATE(1654), 1, + sym__pre_tuning, + STATE(1711), 1, + sym_where_clause, + STATE(1719), 1, + aux_sym_for_phrase_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(2094), 1, + aux_sym_for_phrase_repeat2, + STATE(2605), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2822), 1, + sym_on_quit_phrase, + STATE(3441), 1, + aux_sym_for_statement_repeat1, + STATE(3443), 1, + sym_on_stop_phrase, + STATE(1477), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [75053] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1711), 1, - ts_builtin_sym_end, - STATE(1530), 2, + STATE(1478), 2, sym_comment, sym_include, - ACTIONS(1713), 25, + ACTIONS(2274), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -113696,17 +108644,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79711] = 5, + [75095] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1531), 2, + STATE(1479), 2, sym_comment, sym_include, - ACTIONS(1965), 26, + ACTIONS(1523), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113733,17 +108681,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79753] = 5, + [75137] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1532), 2, + STATE(1480), 2, sym_comment, sym_include, - ACTIONS(2033), 26, + ACTIONS(1521), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113770,17 +108718,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79795] = 5, + [75179] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1533), 2, + STATE(1481), 2, sym_comment, sym_include, - ACTIONS(1961), 26, + ACTIONS(1519), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113807,17 +108755,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79837] = 5, + [75221] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1534), 2, + STATE(1482), 2, sym_comment, sym_include, - ACTIONS(1957), 26, + ACTIONS(1515), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113844,17 +108792,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79879] = 5, + [75263] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1535), 2, + STATE(1483), 2, sym_comment, sym_include, - ACTIONS(2093), 26, + ACTIONS(1513), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113881,19 +108829,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79921] = 5, + [75305] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1536), 2, + ACTIONS(1645), 1, + ts_builtin_sym_end, + STATE(1484), 2, sym_comment, sym_include, - ACTIONS(2091), 26, + ACTIONS(1513), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -113918,17 +108867,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [79963] = 5, + [75349] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1537), 2, + STATE(1485), 2, sym_comment, sym_include, - ACTIONS(1953), 26, + ACTIONS(1511), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113955,17 +108904,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80005] = 5, + [75391] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1538), 2, + STATE(1486), 2, sym_comment, sym_include, - ACTIONS(1949), 26, + ACTIONS(1509), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -113992,17 +108941,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80047] = 5, + [75433] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1539), 2, + STATE(1487), 2, sym_comment, sym_include, - ACTIONS(2089), 26, + ACTIONS(1505), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114029,17 +108978,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80089] = 5, + [75475] = 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(1488), 2, sym_comment, sym_include, - ACTIONS(2087), 26, + ACTIONS(1501), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114066,17 +109015,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80131] = 5, + [75517] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1541), 2, + STATE(1489), 2, sym_comment, sym_include, - ACTIONS(2289), 26, + ACTIONS(1497), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114103,17 +109052,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80173] = 5, + [75559] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1542), 2, + STATE(1490), 2, sym_comment, sym_include, - ACTIONS(2085), 26, + ACTIONS(1473), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114140,17 +109089,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80215] = 5, + [75601] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1543), 2, + STATE(1491), 2, sym_comment, sym_include, - ACTIONS(2253), 26, + ACTIONS(1487), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114177,17 +109126,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80257] = 5, + [75643] = 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(1492), 2, sym_comment, sym_include, - ACTIONS(1753), 26, + ACTIONS(2132), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114214,17 +109163,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80299] = 5, + [75685] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1545), 2, + STATE(1493), 2, sym_comment, sym_include, - ACTIONS(1945), 26, + ACTIONS(1481), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114251,17 +109200,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80341] = 5, + [75727] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(219), 1, + anon_sym_SLASH, + ACTIONS(221), 1, + anon_sym_STAR, + ACTIONS(2278), 1, + aux_sym_if_statement_token2, + STATE(453), 1, + sym__logical_operator, + STATE(454), 1, + sym__additive_operator, + STATE(455), 1, + sym__multiplicative_operator, + STATE(456), 1, + sym__comparison_operator, + ACTIONS(225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(227), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(231), 2, + sym__or_operator, + sym__and_operator, + STATE(1494), 2, + sym_comment, + sym_include, + ACTIONS(229), 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, + [75789] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1546), 2, + STATE(1495), 2, sym_comment, sym_include, - ACTIONS(1941), 26, + ACTIONS(1655), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114288,17 +109284,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80383] = 5, + [75831] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1547), 2, + STATE(1496), 2, sym_comment, sym_include, - ACTIONS(1757), 26, + ACTIONS(1659), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114325,17 +109321,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80425] = 5, + [75873] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1548), 2, + STATE(1497), 2, sym_comment, sym_include, - ACTIONS(1937), 26, + ACTIONS(2244), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114362,20 +109358,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80467] = 6, + [75915] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1685), 1, - ts_builtin_sym_end, - STATE(1549), 2, + STATE(1498), 2, sym_comment, sym_include, - ACTIONS(1687), 25, + ACTIONS(1663), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -114400,19 +109395,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80511] = 6, + [75957] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2291), 1, + ACTIONS(1647), 1, ts_builtin_sym_end, - STATE(1550), 2, + STATE(1499), 2, sym_comment, sym_include, - ACTIONS(2267), 25, + ACTIONS(1511), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -114438,17 +109433,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80555] = 5, + [76001] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1551), 2, + STATE(1500), 2, sym_comment, sym_include, - ACTIONS(1929), 26, + ACTIONS(1667), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114475,17 +109470,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80597] = 5, + [76043] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1552), 2, + STATE(1501), 2, sym_comment, sym_include, - ACTIONS(1919), 26, + ACTIONS(1671), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114512,17 +109507,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80639] = 5, + [76085] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1553), 2, + STATE(1502), 2, sym_comment, sym_include, - ACTIONS(1915), 26, + ACTIONS(1675), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114549,17 +109544,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80681] = 5, + [76127] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1554), 2, + STATE(1503), 2, sym_comment, sym_include, - ACTIONS(2155), 26, + ACTIONS(1493), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114586,20 +109581,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80723] = 6, + [76169] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2293), 1, - ts_builtin_sym_end, - STATE(1555), 2, + anon_sym_LBRACE, + STATE(1504), 2, sym_comment, sym_include, - ACTIONS(2265), 25, + ACTIONS(1681), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -114624,20 +109618,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80767] = 6, + [76211] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1657), 1, - ts_builtin_sym_end, - STATE(1556), 2, + STATE(1505), 2, sym_comment, sym_include, - ACTIONS(1659), 25, + ACTIONS(2009), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -114662,20 +109655,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80811] = 6, + [76253] = 26, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2280), 1, + anon_sym_COLON, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1622), 1, + sym_of, + STATE(1658), 1, + sym__pre_tuning, + STATE(1743), 1, + sym_where_clause, + STATE(1752), 1, + aux_sym_for_phrase_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(2058), 1, + aux_sym_for_phrase_repeat2, + STATE(2612), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2793), 1, + sym_on_quit_phrase, + STATE(3457), 1, + aux_sym_for_statement_repeat1, + STATE(3464), 1, + sym_on_stop_phrase, + STATE(1506), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [76337] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2295), 1, - ts_builtin_sym_end, - STATE(1557), 2, + STATE(1507), 2, sym_comment, sym_include, - ACTIONS(2289), 25, + ACTIONS(1685), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -114700,17 +109750,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80855] = 5, + [76379] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1558), 2, + STATE(1508), 2, sym_comment, sym_include, - ACTIONS(1777), 26, + ACTIONS(1491), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114737,17 +109787,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80897] = 5, + [76421] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1559), 2, + STATE(1509), 2, sym_comment, sym_include, - ACTIONS(1781), 26, + ACTIONS(1489), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114774,17 +109824,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80939] = 5, + [76463] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1560), 2, + STATE(1510), 2, sym_comment, sym_include, - ACTIONS(1909), 26, + ACTIONS(1477), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114811,17 +109861,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [80981] = 5, + [76505] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1561), 2, + STATE(1511), 2, sym_comment, sym_include, - ACTIONS(1905), 26, + ACTIONS(1483), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114848,17 +109898,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [81023] = 5, + [76547] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1562), 2, + STATE(1512), 2, sym_comment, sym_include, - ACTIONS(1901), 26, + ACTIONS(1479), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114885,17 +109935,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [81065] = 5, + [76589] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1563), 2, + STATE(1513), 2, sym_comment, sym_include, - ACTIONS(1897), 26, + ACTIONS(2236), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114922,17 +109972,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [81107] = 5, + [76631] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1564), 2, + STATE(1514), 2, sym_comment, sym_include, - ACTIONS(2063), 26, + ACTIONS(1905), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114959,17 +110009,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [81149] = 5, + [76673] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1565), 2, + STATE(1515), 2, sym_comment, sym_include, - ACTIONS(1893), 26, + ACTIONS(1651), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -114996,17 +110046,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [81191] = 5, + [76715] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1566), 2, + STATE(1516), 2, sym_comment, sym_include, - ACTIONS(2263), 26, + ACTIONS(1699), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -115033,17 +110083,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [81233] = 5, + [76757] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1567), 2, + STATE(1517), 2, sym_comment, sym_include, - ACTIONS(1785), 26, + ACTIONS(1883), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -115070,19 +110120,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [81275] = 5, + [76799] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1568), 2, + ACTIONS(1507), 1, + ts_builtin_sym_end, + STATE(1518), 2, sym_comment, sym_include, - ACTIONS(1789), 26, + ACTIONS(1509), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -115107,17 +110158,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [81317] = 5, + [76843] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1569), 2, + STATE(1519), 2, sym_comment, sym_include, - ACTIONS(1889), 26, + ACTIONS(1689), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -115144,17 +110195,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [81359] = 5, + [76885] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1570), 2, + STATE(1520), 2, sym_comment, sym_include, - ACTIONS(1885), 26, + ACTIONS(2017), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -115181,19 +110232,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [81401] = 5, + [76927] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1571), 2, + ACTIONS(1503), 1, + ts_builtin_sym_end, + STATE(1521), 2, sym_comment, sym_include, - ACTIONS(1881), 26, + ACTIONS(1505), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -115218,17 +110270,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [81443] = 5, + [76971] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1572), 2, + STATE(1522), 2, sym_comment, sym_include, - ACTIONS(1793), 26, + ACTIONS(2015), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -115255,20 +110307,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [81485] = 6, + [77013] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2297), 1, - ts_builtin_sym_end, - STATE(1573), 2, + STATE(1523), 2, sym_comment, sym_include, - ACTIONS(2283), 25, + ACTIONS(2013), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -115293,2149 +110344,3184 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [81529] = 6, + [77055] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(217), 2, + sym__or_operator, + sym__and_operator, + STATE(1524), 2, + sym_comment, + sym_include, + ACTIONS(215), 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, + [77096] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(201), 2, + sym__or_operator, + sym__and_operator, + STATE(1525), 2, + sym_comment, + sym_include, + ACTIONS(199), 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, + [77137] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(205), 2, + sym__or_operator, + sym__and_operator, + STATE(1526), 2, + sym_comment, + sym_include, + ACTIONS(203), 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, + [77178] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1527), 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, + [77219] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(169), 2, + sym__or_operator, + sym__and_operator, + STATE(1528), 2, + sym_comment, + sym_include, + ACTIONS(167), 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, + [77260] = 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(1529), 2, + sym_comment, + sym_include, + ACTIONS(119), 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, + [77301] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(165), 2, + sym__or_operator, + sym__and_operator, + STATE(1530), 2, + sym_comment, + sym_include, + ACTIONS(163), 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, + [77342] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(177), 2, + sym__or_operator, + sym__and_operator, + STATE(1531), 2, + sym_comment, + sym_include, + ACTIONS(175), 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, + [77383] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(153), 2, + sym__or_operator, + sym__and_operator, + STATE(1532), 2, + sym_comment, + sym_include, + ACTIONS(151), 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, + [77424] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(149), 2, + sym__or_operator, + sym__and_operator, + STATE(1533), 2, + sym_comment, + sym_include, + ACTIONS(147), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_include_argument_token1, + [77465] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2282), 1, + sym__namedot, + ACTIONS(111), 2, + sym__or_operator, + sym__and_operator, + STATE(1534), 2, + sym_comment, + sym_include, + ACTIONS(109), 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, + [77510] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(213), 2, + sym__or_operator, + sym__and_operator, + STATE(1535), 2, + sym_comment, + sym_include, + ACTIONS(211), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_include_argument_token1, + [77551] = 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(1536), 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, + [77592] = 7, 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(1574), 2, + ACTIONS(1429), 1, + anon_sym_LPAREN, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, + STATE(1537), 2, sym_comment, sym_include, - ACTIONS(1601), 25, + ACTIONS(75), 22, + 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, - 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, - [81573] = 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, + [77637] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1575), 2, + ACTIONS(145), 2, + sym__or_operator, + sym__and_operator, + STATE(1538), 2, sym_comment, sym_include, - ACTIONS(1877), 26, + ACTIONS(143), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [81615] = 5, + 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, + [77678] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1576), 2, + ACTIONS(197), 2, + sym__or_operator, + sym__and_operator, + STATE(1539), 2, sym_comment, sym_include, - ACTIONS(1797), 26, + ACTIONS(195), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [81657] = 5, + 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, + [77719] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1577), 2, + ACTIONS(1429), 1, + anon_sym_LPAREN, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(1540), 2, sym_comment, sym_include, - ACTIONS(2183), 26, + ACTIONS(63), 22, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [81699] = 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, + [77764] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1578), 2, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(1541), 2, sym_comment, sym_include, - ACTIONS(1801), 26, + ACTIONS(63), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [81741] = 5, + 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, + [77805] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1579), 2, + ACTIONS(141), 2, + sym__or_operator, + sym__and_operator, + STATE(1542), 2, sym_comment, sym_include, - ACTIONS(1805), 26, + ACTIONS(139), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [81783] = 5, - ACTIONS(3), 1, + 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, + [77846] = 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(1580), 2, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(2286), 1, + aux_sym_variable_definition_token2, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1543), 2, sym_comment, sym_include, - ACTIONS(1873), 26, - sym_identifier, + ACTIONS(2284), 22, + sym__terminator, aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, aux_sym_variable_definition_token1, - 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, - [81825] = 5, + anon_sym_COMMA, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [77893] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1581), 2, + ACTIONS(181), 2, + sym__or_operator, + sym__and_operator, + STATE(1544), 2, sym_comment, sym_include, - ACTIONS(2173), 26, + ACTIONS(179), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [81867] = 5, + 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, + [77934] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1582), 2, + ACTIONS(111), 2, + sym__or_operator, + sym__and_operator, + STATE(1545), 2, sym_comment, sym_include, - ACTIONS(1869), 26, + ACTIONS(109), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [81909] = 5, + 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, + [77975] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1583), 2, + ACTIONS(137), 2, + sym__or_operator, + sym__and_operator, + STATE(1546), 2, sym_comment, sym_include, - ACTIONS(1865), 26, + ACTIONS(135), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [81951] = 5, + 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, + [78016] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1584), 2, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, + STATE(1547), 2, sym_comment, sym_include, - ACTIONS(1861), 26, + ACTIONS(75), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [81993] = 5, + 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, + [78057] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1585), 2, + ACTIONS(133), 2, + sym__or_operator, + sym__and_operator, + STATE(1548), 2, sym_comment, sym_include, - ACTIONS(1857), 26, + ACTIONS(131), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [82035] = 5, + 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, + [78098] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1586), 2, + ACTIONS(125), 2, + sym__or_operator, + sym__and_operator, + STATE(1549), 2, sym_comment, sym_include, - ACTIONS(1853), 26, + ACTIONS(123), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [82077] = 5, + 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, + [78139] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1587), 2, + ACTIONS(209), 2, + sym__or_operator, + sym__and_operator, + STATE(1550), 2, sym_comment, sym_include, - ACTIONS(1849), 26, + ACTIONS(207), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [82119] = 5, + 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, + [78180] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1588), 2, + STATE(1551), 2, sym_comment, sym_include, - ACTIONS(1845), 26, + ACTIONS(93), 3, + sym__namedot, + sym__or_operator, + sym__and_operator, + ACTIONS(91), 22, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [82161] = 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, + [78223] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1589), 2, + ACTIONS(189), 2, + sym__or_operator, + sym__and_operator, + STATE(1552), 2, sym_comment, sym_include, - ACTIONS(1841), 26, + ACTIONS(187), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [82203] = 5, + 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, + [78264] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1590), 2, + ACTIONS(185), 2, + sym__or_operator, + sym__and_operator, + STATE(1553), 2, sym_comment, sym_include, - ACTIONS(2177), 26, + ACTIONS(183), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, + 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, + [78305] = 24, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2140), 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, - [82245] = 5, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1656), 1, + sym_of, + STATE(1693), 1, + sym__pre_tuning, + STATE(1784), 1, + sym_where_clause, + STATE(1786), 1, + aux_sym_for_phrase_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(2142), 1, + aux_sym_for_phrase_repeat2, + STATE(2676), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2997), 1, + sym_on_quit_phrase, + STATE(3514), 1, + sym_on_stop_phrase, + ACTIONS(2288), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1554), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [78384] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1591), 2, + ACTIONS(173), 2, + sym__or_operator, + sym__and_operator, + STATE(1555), 2, sym_comment, sym_include, - ACTIONS(1809), 26, + ACTIONS(171), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [82287] = 5, + 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, + [78425] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1592), 2, + ACTIONS(193), 2, + sym__or_operator, + sym__and_operator, + STATE(1556), 2, sym_comment, sym_include, - ACTIONS(1813), 26, + ACTIONS(191), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [82329] = 5, + 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, + [78466] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1593), 2, + ACTIONS(129), 2, + sym__or_operator, + sym__and_operator, + STATE(1557), 2, sym_comment, sym_include, - ACTIONS(2231), 26, + ACTIONS(127), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [82371] = 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, + [78507] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1887), 1, - ts_builtin_sym_end, - STATE(1594), 2, + ACTIONS(161), 2, + sym__or_operator, + sym__and_operator, + STATE(1558), 2, sym_comment, sym_include, - ACTIONS(1889), 25, + ACTIONS(159), 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, - [82415] = 5, + 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, + [78548] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1595), 2, + ACTIONS(157), 2, + sym__or_operator, + sym__and_operator, + STATE(1559), 2, sym_comment, sym_include, - ACTIONS(2227), 26, + ACTIONS(155), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_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, - [82457] = 5, + 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, + [78589] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1596), 2, + ACTIONS(2290), 1, + anon_sym_NO_DASHERROR, + ACTIONS(173), 2, + sym__or_operator, + sym__and_operator, + STATE(1560), 2, sym_comment, sym_include, - ACTIONS(1817), 26, + ACTIONS(171), 21, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [82499] = 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, + [78633] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1597), 2, + ACTIONS(137), 2, + sym__or_operator, + sym__and_operator, + STATE(1561), 2, sym_comment, sym_include, - ACTIONS(1833), 26, + ACTIONS(135), 22, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [82541] = 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, + [78675] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1598), 2, + ACTIONS(149), 2, + sym__or_operator, + sym__and_operator, + STATE(1562), 2, sym_comment, sym_include, - ACTIONS(1829), 26, + ACTIONS(147), 22, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [82583] = 6, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_NO_DASHERROR, + [78717] = 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(1599), 2, + ACTIONS(145), 2, + sym__or_operator, + sym__and_operator, + STATE(1563), 2, sym_comment, sym_include, - ACTIONS(1993), 25, + ACTIONS(143), 22, + 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, - 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, - [82627] = 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, + [78759] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1600), 2, + ACTIONS(141), 2, + sym__or_operator, + sym__and_operator, + STATE(1564), 2, sym_comment, sym_include, - ACTIONS(2071), 26, + ACTIONS(139), 22, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [82669] = 5, - ACTIONS(3), 1, + 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, + [78801] = 24, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1601), 2, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2280), 1, + anon_sym_COLON, + STATE(1622), 1, + sym_of, + STATE(1658), 1, + sym__pre_tuning, + STATE(1743), 1, + sym_where_clause, + STATE(1752), 1, + aux_sym_for_phrase_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(2058), 1, + aux_sym_for_phrase_repeat2, + STATE(2612), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2793), 1, + sym_on_quit_phrase, + STATE(3457), 1, + aux_sym_for_statement_repeat1, + STATE(3464), 1, + sym_on_stop_phrase, + STATE(1565), 2, sym_comment, sym_include, - ACTIONS(2075), 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(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [78879] = 24, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 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, - [82711] = 5, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2276), 1, + anon_sym_COLON, + STATE(1645), 1, + sym_of, + STATE(1654), 1, + sym__pre_tuning, + STATE(1711), 1, + sym_where_clause, + STATE(1719), 1, + aux_sym_for_phrase_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(2094), 1, + aux_sym_for_phrase_repeat2, + STATE(2605), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2822), 1, + sym_on_quit_phrase, + STATE(3441), 1, + aux_sym_for_statement_repeat1, + STATE(3443), 1, + sym_on_stop_phrase, + STATE(1566), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [78957] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1602), 2, + ACTIONS(2292), 1, + anon_sym_NO_DASHERROR, + ACTIONS(455), 2, + sym__or_operator, + sym__and_operator, + STATE(1567), 2, sym_comment, sym_include, - ACTIONS(2079), 26, + ACTIONS(453), 21, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [82753] = 5, - ACTIONS(3), 1, + 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, + [79001] = 24, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1603), 2, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2138), 1, + anon_sym_COLON, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + STATE(1611), 1, + sym_of, + STATE(1664), 1, + sym__pre_tuning, + STATE(1764), 1, + sym_where_clause, + STATE(1777), 1, + aux_sym_for_phrase_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(2062), 1, + aux_sym_for_phrase_repeat2, + STATE(2633), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2741), 1, + sym_on_quit_phrase, + STATE(3360), 1, + aux_sym_for_statement_repeat1, + STATE(3412), 1, + sym_on_stop_phrase, + STATE(1568), 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, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [79079] = 24, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 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, - [82795] = 5, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2252), 1, + anon_sym_COLON, + STATE(1640), 1, + sym_of, + STATE(1650), 1, + sym__pre_tuning, + STATE(1708), 1, + aux_sym_for_phrase_repeat1, + STATE(1745), 1, + sym_where_clause, + STATE(1915), 1, + sym_query_tuning, + STATE(2045), 1, + aux_sym_for_phrase_repeat2, + STATE(2553), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2839), 1, + sym_on_quit_phrase, + STATE(3345), 1, + aux_sym_for_statement_repeat1, + STATE(3349), 1, + sym_on_stop_phrase, + STATE(1569), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [79157] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1604), 2, + ACTIONS(217), 2, + sym__or_operator, + sym__and_operator, + STATE(1570), 2, sym_comment, sym_include, - ACTIONS(2083), 26, + ACTIONS(215), 22, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, + 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, + [79199] = 24, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 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, - [82837] = 5, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2154), 1, + anon_sym_COLON, + STATE(1620), 1, + sym_of, + STATE(1661), 1, + sym__pre_tuning, + STATE(1738), 1, + aux_sym_for_phrase_repeat1, + STATE(1741), 1, + sym_where_clause, + STATE(1915), 1, + sym_query_tuning, + STATE(2069), 1, + aux_sym_for_phrase_repeat2, + STATE(2573), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2725), 1, + sym_on_quit_phrase, + STATE(3145), 1, + aux_sym_for_statement_repeat1, + STATE(3149), 1, + sym_on_stop_phrase, + STATE(1571), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [79277] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1605), 2, + ACTIONS(165), 2, + sym__or_operator, + sym__and_operator, + STATE(1572), 2, sym_comment, sym_include, - ACTIONS(1825), 26, + ACTIONS(163), 22, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [82879] = 6, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_NO_DASHERROR, + [79319] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1883), 1, - ts_builtin_sym_end, - STATE(1606), 2, + ACTIONS(121), 2, + sym__or_operator, + sym__and_operator, + STATE(1573), 2, sym_comment, sym_include, - ACTIONS(1885), 25, + ACTIONS(119), 22, + 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, - 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, - [82923] = 6, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_NO_DASHERROR, + [79361] = 6, 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(1607), 2, + ACTIONS(129), 2, + sym__or_operator, + sym__and_operator, + STATE(1574), 2, sym_comment, sym_include, - ACTIONS(1999), 25, + ACTIONS(127), 22, + 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, - 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, - [82967] = 6, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_NO_DASHERROR, + [79403] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, - ts_builtin_sym_end, - STATE(1608), 2, + ACTIONS(169), 2, + sym__or_operator, + sym__and_operator, + STATE(1575), 2, sym_comment, sym_include, - ACTIONS(1881), 25, + ACTIONS(167), 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, + [79445] = 19, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2294), 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, + ACTIONS(2296), 1, + aux_sym_variable_definition_token3, + ACTIONS(2298), 1, + aux_sym_variable_definition_token4, + ACTIONS(2300), 1, + aux_sym_buffer_definition_token1, + ACTIONS(2302), 1, + aux_sym_buffer_definition_token3, + ACTIONS(2304), 1, + aux_sym_query_definition_token1, + ACTIONS(2308), 1, + aux_sym_stream_definition_token1, + STATE(1827), 1, + aux_sym_variable_definition_repeat1, + STATE(1941), 1, + aux_sym_buffer_definition_repeat1, + STATE(1971), 1, + sym_serialization_tuning, + ACTIONS(1324), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1576), 2, + sym_comment, + sym_include, + STATE(1877), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2306), 3, aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, + aux_sym_argument_mode_token2, 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, - [83011] = 5, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [79513] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1609), 2, + ACTIONS(177), 2, + sym__or_operator, + sym__and_operator, + STATE(1577), 2, sym_comment, sym_include, - ACTIONS(1821), 26, + ACTIONS(175), 22, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [83053] = 24, + 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, + [79555] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1578), 2, + sym_comment, + sym_include, + 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, + [79597] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2145), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1681), 1, + ACTIONS(2164), 1, + anon_sym_COLON, + STATE(1634), 1, sym_of, - STATE(1696), 1, + STATE(1652), 1, sym__pre_tuning, - STATE(1805), 1, + STATE(1765), 1, aux_sym_for_phrase_repeat1, - STATE(1806), 1, + STATE(1770), 1, sym_where_clause, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(2130), 1, + STATE(2032), 1, aux_sym_for_phrase_repeat2, - STATE(2730), 1, + STATE(2564), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2992), 1, + STATE(2734), 1, sym_on_quit_phrase, - STATE(4022), 1, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3168), 1, sym_on_stop_phrase, - ACTIONS(2299), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1610), 2, + STATE(1579), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [83132] = 24, + [79675] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(133), 2, + sym__or_operator, + sym__and_operator, + STATE(1580), 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, + [79717] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(201), 2, + sym__or_operator, + sym__and_operator, + STATE(1581), 2, + sym_comment, + sym_include, + ACTIONS(199), 22, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_NO_DASHERROR, + [79759] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2279), 1, + ACTIONS(2248), 1, anon_sym_COLON, - STATE(1636), 1, + STATE(1631), 1, sym_of, - STATE(1683), 1, + STATE(1653), 1, sym__pre_tuning, - STATE(1768), 1, - aux_sym_for_phrase_repeat1, - STATE(1787), 1, + STATE(1767), 1, sym_where_clause, - STATE(1933), 1, + STATE(1775), 1, + aux_sym_for_phrase_repeat1, + STATE(1915), 1, sym_query_tuning, - STATE(2073), 1, + STATE(2021), 1, aux_sym_for_phrase_repeat2, - STATE(2633), 1, + STATE(2545), 1, sym_on_error_phrase, - STATE(2760), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3220), 1, + STATE(2828), 1, + sym_on_quit_phrase, + STATE(3326), 1, aux_sym_for_statement_repeat1, - STATE(3223), 1, + STATE(3328), 1, sym_on_stop_phrase, - STATE(1611), 2, + STATE(1582), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [83210] = 24, + [79837] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2219), 1, + ACTIONS(2240), 1, anon_sym_COLON, - STATE(1658), 1, + STATE(1643), 1, sym_of, - STATE(1686), 1, + STATE(1669), 1, sym__pre_tuning, - STATE(1749), 1, + STATE(1709), 1, aux_sym_for_phrase_repeat1, - STATE(1775), 1, + STATE(1759), 1, sym_where_clause, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(2014), 1, + STATE(1994), 1, aux_sym_for_phrase_repeat2, - STATE(2638), 1, + STATE(2630), 1, sym_on_error_phrase, - STATE(2751), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3343), 1, + STATE(2708), 1, + sym_on_quit_phrase, + STATE(3040), 1, aux_sym_for_statement_repeat1, - STATE(3350), 1, + STATE(3134), 1, sym_on_stop_phrase, - STATE(1612), 2, + STATE(1583), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [83288] = 24, + [79915] = 18, ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1318), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1340), 1, + aux_sym_property_tuning_token1, + ACTIONS(1406), 1, + aux_sym_function_parameter_token1, + ACTIONS(1408), 1, + aux_sym_property_definition_token1, + ACTIONS(1410), 1, + aux_sym_event_definition_token1, + STATE(1857), 1, + sym_property_tuning, + STATE(2352), 1, + aux_sym_property_definition_repeat1, + STATE(2363), 1, + aux_sym_property_definition_repeat2, + STATE(2698), 1, + sym_property_type, + STATE(4117), 1, + sym_serialization_tuning, + ACTIONS(1316), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + ACTIONS(1338), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + ACTIONS(1397), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1584), 2, + sym_comment, + sym_include, + ACTIONS(1400), 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, + [79981] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(205), 2, + sym__or_operator, + sym__and_operator, + STATE(1585), 2, + sym_comment, + sym_include, + ACTIONS(203), 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, + [80023] = 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(1586), 2, + sym_comment, + sym_include, + ACTIONS(123), 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, + [80065] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(193), 2, + sym__or_operator, + sym__and_operator, + STATE(1587), 2, + sym_comment, + sym_include, + ACTIONS(191), 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, + [80107] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(213), 2, + sym__or_operator, + sym__and_operator, + STATE(1588), 2, + sym_comment, + sym_include, + ACTIONS(211), 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, + [80149] = 6, + 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(1589), 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, + [80191] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(197), 2, + sym__or_operator, + sym__and_operator, + STATE(1590), 2, + sym_comment, + sym_include, + ACTIONS(195), 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, + [80233] = 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(1591), 2, + sym_comment, + sym_include, + 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, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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, + [80275] = 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(1592), 2, + sym_comment, + sym_include, + ACTIONS(179), 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, + [80317] = 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(1593), 2, + sym_comment, + sym_include, + ACTIONS(109), 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, + [80359] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(153), 2, + sym__or_operator, + sym__and_operator, + STATE(1594), 2, + sym_comment, + sym_include, + ACTIONS(151), 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, + [80401] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2143), 1, - anon_sym_COLON, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - STATE(1644), 1, - sym_of, - STATE(1685), 1, - sym__pre_tuning, - STATE(1757), 1, - sym_where_clause, - STATE(1783), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2040), 1, - aux_sym_for_phrase_repeat2, - STATE(2645), 1, - sym_on_error_phrase, - STATE(2799), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3313), 1, - aux_sym_for_statement_repeat1, - STATE(3315), 1, - sym_on_stop_phrase, - STATE(1613), 2, + ACTIONS(161), 2, + sym__or_operator, + sym__and_operator, + STATE(1595), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [83366] = 24, - ACTIONS(59), 1, + ACTIONS(159), 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, + [80443] = 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(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2241), 1, - anon_sym_COLON, - STATE(1639), 1, - sym_of, - STATE(1688), 1, - sym__pre_tuning, - STATE(1765), 1, - sym_where_clause, - STATE(1781), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2028), 1, - aux_sym_for_phrase_repeat2, - STATE(2570), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2855), 1, - sym_on_quit_phrase, - STATE(3165), 1, - sym_on_stop_phrase, - STATE(3179), 1, - aux_sym_for_statement_repeat1, - STATE(1614), 2, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, + STATE(1596), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [83444] = 24, + ACTIONS(75), 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, + [80485] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2249), 1, + ACTIONS(2198), 1, anon_sym_COLON, - STATE(1668), 1, + STATE(1617), 1, sym_of, - STATE(1671), 1, + STATE(1665), 1, sym__pre_tuning, - STATE(1727), 1, + STATE(1736), 1, sym_where_clause, - STATE(1780), 1, + STATE(1747), 1, aux_sym_for_phrase_repeat1, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(2031), 1, + STATE(2057), 1, aux_sym_for_phrase_repeat2, - STATE(2641), 1, + STATE(2522), 1, sym_on_error_phrase, - STATE(2735), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, + STATE(2775), 1, + sym_on_quit_phrase, STATE(3238), 1, aux_sym_for_statement_repeat1, STATE(3244), 1, sym_on_stop_phrase, - STATE(1615), 2, + STATE(1597), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [83522] = 24, + [80563] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2243), 1, + ACTIONS(2224), 1, anon_sym_COLON, - STATE(1650), 1, + STATE(1619), 1, sym_of, - STATE(1679), 1, + STATE(1663), 1, sym__pre_tuning, - STATE(1739), 1, + STATE(1748), 1, aux_sym_for_phrase_repeat1, - STATE(1758), 1, + STATE(1760), 1, sym_where_clause, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(2085), 1, + STATE(2051), 1, aux_sym_for_phrase_repeat2, - STATE(2580), 1, + STATE(2508), 1, sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2861), 1, + STATE(2665), 1, sym_on_quit_phrase, - STATE(3470), 1, - aux_sym_for_statement_repeat1, - STATE(3472), 1, - sym_on_stop_phrase, - STATE(1616), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [83600] = 24, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2269), 1, - anon_sym_COLON, - STATE(1646), 1, - sym_of, - STATE(1684), 1, - sym__pre_tuning, - STATE(1753), 1, - sym_where_clause, - STATE(1756), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2084), 1, - aux_sym_for_phrase_repeat2, - STATE(2562), 1, - sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2886), 1, - sym_on_quit_phrase, - STATE(3126), 1, + STATE(3256), 1, aux_sym_for_statement_repeat1, - STATE(3130), 1, + STATE(3260), 1, sym_on_stop_phrase, - STATE(1617), 2, + STATE(1598), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [83678] = 19, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2301), 1, - aux_sym_input_expression_token1, - ACTIONS(2303), 1, - aux_sym_variable_definition_token3, - ACTIONS(2305), 1, - aux_sym_variable_definition_token4, - ACTIONS(2307), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2309), 1, - aux_sym_buffer_definition_token3, - ACTIONS(2311), 1, - aux_sym_query_definition_token1, - ACTIONS(2315), 1, - aux_sym_stream_definition_token1, - STATE(1834), 1, - aux_sym_variable_definition_repeat1, - STATE(1948), 1, - sym_serialization_tuning, - STATE(1966), 1, - aux_sym_buffer_definition_repeat1, - ACTIONS(1377), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1618), 2, - sym_comment, - sym_include, - STATE(1896), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2313), 3, - aux_sym_argument_mode_token1, - aux_sym_argument_mode_token2, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [83746] = 24, - ACTIONS(59), 1, + [80641] = 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(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2179), 1, - anon_sym_COLON, - STATE(1630), 1, - sym_of, - STATE(1689), 1, - sym__pre_tuning, - STATE(1732), 1, - aux_sym_for_phrase_repeat1, - STATE(1738), 1, - sym_where_clause, - STATE(1933), 1, - sym_query_tuning, - STATE(2098), 1, - aux_sym_for_phrase_repeat2, - STATE(2574), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2866), 1, - sym_on_quit_phrase, - STATE(3152), 1, - aux_sym_for_statement_repeat1, - STATE(3155), 1, - sym_on_stop_phrase, - STATE(1619), 2, + ACTIONS(173), 2, + sym__or_operator, + sym__and_operator, + STATE(1599), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [83824] = 18, - ACTIONS(59), 1, + ACTIONS(171), 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, + [80683] = 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(1371), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1393), 1, - aux_sym_property_tuning_token1, - ACTIONS(1556), 1, - aux_sym_function_parameter_token1, - ACTIONS(1558), 1, - aux_sym_property_definition_token1, - ACTIONS(1560), 1, - aux_sym_event_definition_token1, - STATE(1857), 1, - sym_property_tuning, - STATE(2345), 1, - aux_sym_property_definition_repeat1, - STATE(2462), 1, - aux_sym_property_definition_repeat2, - STATE(2714), 1, - sym_property_type, - STATE(4299), 1, - sym_serialization_tuning, - ACTIONS(1369), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - ACTIONS(1391), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - ACTIONS(1547), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1620), 2, + ACTIONS(185), 2, + sym__or_operator, + sym__and_operator, + STATE(1600), 2, sym_comment, sym_include, - ACTIONS(1550), 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, - [83890] = 19, - ACTIONS(59), 1, + ACTIONS(183), 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, + [80725] = 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(2317), 1, - aux_sym_input_expression_token1, - ACTIONS(2319), 1, - aux_sym_variable_definition_token3, - ACTIONS(2321), 1, - aux_sym_variable_definition_token4, - ACTIONS(2323), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2325), 1, - aux_sym_buffer_definition_token3, - ACTIONS(2327), 1, - aux_sym_query_definition_token1, - ACTIONS(2331), 1, - aux_sym_stream_definition_token1, - STATE(1829), 1, - aux_sym_variable_definition_repeat1, - STATE(1948), 1, - sym_serialization_tuning, - STATE(1979), 1, - aux_sym_buffer_definition_repeat1, - ACTIONS(1377), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1621), 2, + ACTIONS(209), 2, + sym__or_operator, + sym__and_operator, + STATE(1601), 2, sym_comment, sym_include, - STATE(1896), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2329), 3, - aux_sym_argument_mode_token1, - aux_sym_argument_mode_token2, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [83958] = 24, - ACTIONS(59), 1, + ACTIONS(207), 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, + [80767] = 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(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2169), 1, - anon_sym_COLON, - STATE(1643), 1, - sym_of, - STATE(1675), 1, - sym__pre_tuning, - STATE(1791), 1, - sym_where_clause, - STATE(1795), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2058), 1, - aux_sym_for_phrase_repeat2, - STATE(2587), 1, - sym_on_error_phrase, - STATE(2839), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3460), 1, - aux_sym_for_statement_repeat1, - STATE(3468), 1, - sym_on_stop_phrase, - STATE(1622), 2, + ACTIONS(189), 2, + sym__or_operator, + sym__and_operator, + STATE(1602), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [84036] = 24, - ACTIONS(59), 1, + ACTIONS(187), 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, + [80809] = 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(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2285), 1, - anon_sym_COLON, - STATE(1645), 1, - sym_of, - STATE(1672), 1, - sym__pre_tuning, - STATE(1760), 1, - sym_where_clause, - STATE(1790), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2016), 1, - aux_sym_for_phrase_repeat2, - STATE(2566), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2872), 1, - sym_on_quit_phrase, - STATE(3486), 1, - aux_sym_for_statement_repeat1, - STATE(3489), 1, - sym_on_stop_phrase, - STATE(1623), 2, + ACTIONS(157), 2, + sym__or_operator, + sym__and_operator, + STATE(1603), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [84114] = 22, + ACTIONS(155), 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, + [80851] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - STATE(1681), 1, - sym_of, - STATE(1696), 1, - sym__pre_tuning, - STATE(1805), 1, - aux_sym_for_phrase_repeat1, - STATE(1806), 1, - sym_where_clause, - STATE(1933), 1, - sym_query_tuning, - STATE(2130), 1, - aux_sym_for_phrase_repeat2, - STATE(2730), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2992), 1, - sym_on_quit_phrase, - STATE(4022), 1, - sym_on_stop_phrase, - ACTIONS(2299), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1624), 2, + ACTIONS(2310), 1, + aux_sym_input_expression_token1, + ACTIONS(2312), 1, + aux_sym_variable_definition_token3, + ACTIONS(2314), 1, + aux_sym_variable_definition_token4, + ACTIONS(2316), 1, + aux_sym_buffer_definition_token1, + ACTIONS(2318), 1, + aux_sym_buffer_definition_token3, + ACTIONS(2320), 1, + aux_sym_query_definition_token1, + ACTIONS(2324), 1, + aux_sym_stream_definition_token1, + STATE(1823), 1, + aux_sym_variable_definition_repeat1, + STATE(1928), 1, + aux_sym_buffer_definition_repeat1, + STATE(1971), 1, + sym_serialization_tuning, + ACTIONS(1324), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1604), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [84187] = 6, + STATE(1877), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2322), 3, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [80919] = 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(2286), 1, aux_sym_variable_definition_token2, - STATE(1625), 2, + STATE(1605), 2, sym_comment, sym_include, - ACTIONS(2333), 22, + ACTIONS(2284), 22, sym__terminator, aux_sym__block_terminator_token1, anon_sym_LPAREN, @@ -117458,19 +113544,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [84228] = 6, + [80960] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2339), 1, + ACTIONS(2328), 1, aux_sym_variable_definition_token2, - STATE(1626), 2, + STATE(1606), 2, sym_comment, sym_include, - ACTIONS(2337), 22, + ACTIONS(2326), 22, sym__terminator, aux_sym__block_terminator_token1, anon_sym_LPAREN, @@ -117493,218 +113579,306 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [84269] = 4, - ACTIONS(3), 1, + [81001] = 22, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - STATE(1627), 2, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + STATE(1656), 1, + sym_of, + STATE(1693), 1, + sym__pre_tuning, + STATE(1784), 1, + sym_where_clause, + STATE(1786), 1, + aux_sym_for_phrase_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(2142), 1, + aux_sym_for_phrase_repeat2, + STATE(2676), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2997), 1, + sym_on_quit_phrase, + STATE(3514), 1, + sym_on_stop_phrase, + ACTIONS(2288), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1607), 2, sym_comment, sym_include, - ACTIONS(2341), 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, - [84305] = 4, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [81074] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1628), 2, - sym_comment, - sym_include, - ACTIONS(2343), 23, + ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(2330), 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, - [84341] = 4, + ACTIONS(2334), 1, + aux_sym_primitive_type_token19, + STATE(1606), 1, + sym_qualified_name, + STATE(1706), 1, + sym_primitive_type, + STATE(1608), 2, + sym_comment, + sym_include, + ACTIONS(2332), 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, + [81120] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1629), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2330), 1, + sym_identifier, + ACTIONS(2334), 1, + aux_sym_primitive_type_token19, + STATE(1606), 1, + sym_qualified_name, + STATE(2210), 1, + sym_primitive_type, + STATE(1609), 2, sym_comment, sym_include, - ACTIONS(2345), 23, + ACTIONS(2332), 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, + [81166] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(2330), 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, - [84377] = 22, + ACTIONS(2334), 1, + aux_sym_primitive_type_token19, + STATE(1606), 1, + sym_qualified_name, + STATE(2268), 1, + sym_primitive_type, + STATE(1610), 2, + sym_comment, + sym_include, + ACTIONS(2332), 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, + [81212] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2347), 1, + ACTIONS(2336), 1, anon_sym_COLON, - STATE(1676), 1, + STATE(1667), 1, sym__pre_tuning, - STATE(1740), 1, + STATE(1735), 1, sym_where_clause, - STATE(1767), 1, + STATE(1739), 1, aux_sym_for_phrase_repeat1, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(2003), 1, + STATE(2020), 1, aux_sym_for_phrase_repeat2, - STATE(2564), 1, + STATE(2631), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2877), 1, + STATE(2702), 1, sym_on_quit_phrase, - STATE(3141), 1, + STATE(3138), 1, aux_sym_for_statement_repeat1, - STATE(3142), 1, + STATE(3140), 1, sym_on_stop_phrase, - STATE(1630), 2, + STATE(1611), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [84449] = 19, - ACTIONS(59), 1, + [81284] = 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(1192), 1, - sym__namedot, - ACTIONS(1371), 1, - aux_sym_variable_tuning_token6, - ACTIONS(2353), 1, - aux_sym_variable_definition_token2, - ACTIONS(2355), 1, - aux_sym_property_tuning_token1, - ACTIONS(2357), 1, - aux_sym_getter_token1, - ACTIONS(2359), 1, - aux_sym_setter_token1, - STATE(621), 1, - aux_sym_qualified_name_repeat1, - STATE(1707), 1, - aux_sym_property_definition_repeat2, - STATE(1857), 1, - sym_property_tuning, - STATE(1925), 1, - aux_sym_property_definition_repeat3, - STATE(3828), 1, - sym_access_tuning, - ACTIONS(2351), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1631), 2, + ACTIONS(2330), 1, + sym_identifier, + ACTIONS(2334), 1, + aux_sym_primitive_type_token19, + STATE(1606), 1, + sym_qualified_name, + STATE(4565), 1, + sym_primitive_type, + STATE(1612), 2, sym_comment, sym_include, - STATE(2162), 2, - sym_getter, - sym_setter, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2349), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [84515] = 9, + ACTIONS(2332), 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, + [81330] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1613), 2, + sym_comment, + sym_include, + ACTIONS(2338), 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, + [81366] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(2325), 1, + STATE(2285), 1, sym_primitive_type, - STATE(1632), 2, + STATE(1614), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -117723,25 +113897,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [84561] = 9, + [81412] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2210), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2214), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, - sym_qualified_name, - STATE(3621), 1, + STATE(4033), 1, sym_primitive_type, - STATE(1633), 2, + STATE(4569), 1, + sym_qualified_name, + STATE(1615), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2212), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -117760,15 +113934,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [84607] = 4, + [81458] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1634), 2, + STATE(1616), 2, sym_comment, sym_include, - ACTIONS(2367), 23, + ACTIONS(2340), 23, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -117792,25 +113966,222 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [84643] = 9, + [81494] = 22, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2342), 1, + anon_sym_COLON, + STATE(1660), 1, + sym__pre_tuning, + STATE(1761), 1, + aux_sym_for_phrase_repeat1, + STATE(1766), 1, + sym_where_clause, + STATE(1915), 1, + sym_query_tuning, + STATE(2079), 1, + aux_sym_for_phrase_repeat2, + STATE(2529), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2766), 1, + sym_on_quit_phrase, + STATE(3227), 1, + aux_sym_for_statement_repeat1, + STATE(3228), 1, + sym_on_stop_phrase, + STATE(1617), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [81566] = 19, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1318), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1340), 1, + aux_sym_property_tuning_token1, + ACTIONS(2348), 1, + aux_sym_variable_definition_token2, + ACTIONS(2350), 1, + aux_sym_getter_token1, + ACTIONS(2352), 1, + aux_sym_setter_token1, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1692), 1, + aux_sym_property_definition_repeat2, + STATE(1857), 1, + sym_property_tuning, + STATE(1888), 1, + aux_sym_property_definition_repeat3, + STATE(3501), 1, + sym_access_tuning, + ACTIONS(2346), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1618), 2, + sym_comment, + sym_include, + STATE(2183), 2, + sym_getter, + sym_setter, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2344), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [81632] = 22, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2354), 1, + anon_sym_COLON, + STATE(1670), 1, + sym__pre_tuning, + STATE(1712), 1, + aux_sym_for_phrase_repeat1, + STATE(1730), 1, + sym_where_clause, + STATE(1915), 1, + sym_query_tuning, + STATE(1998), 1, + aux_sym_for_phrase_repeat2, + STATE(2513), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2778), 1, + sym_on_quit_phrase, + STATE(3249), 1, + aux_sym_for_statement_repeat1, + STATE(3250), 1, + sym_on_stop_phrase, + STATE(1619), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [81704] = 22, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2356), 1, + anon_sym_COLON, + STATE(1666), 1, + sym__pre_tuning, + STATE(1725), 1, + sym_where_clause, + STATE(1731), 1, + aux_sym_for_phrase_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(1988), 1, + aux_sym_for_phrase_repeat2, + STATE(2576), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2717), 1, + sym_on_quit_phrase, + STATE(3131), 1, + aux_sym_for_statement_repeat1, + STATE(3135), 1, + sym_on_stop_phrase, + STATE(1620), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [81776] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2207), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2211), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(4145), 1, - sym_primitive_type, - STATE(4312), 1, + STATE(1606), 1, sym_qualified_name, - STATE(1635), 2, + STATE(2251), 1, + sym_primitive_type, + STATE(1621), 2, sym_comment, sym_include, - ACTIONS(2209), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -117829,75 +114200,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [84689] = 22, + [81822] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2369), 1, + ACTIONS(2358), 1, anon_sym_COLON, - STATE(1670), 1, + STATE(1662), 1, sym__pre_tuning, - STATE(1731), 1, - aux_sym_for_phrase_repeat1, - STATE(1778), 1, + STATE(1746), 1, sym_where_clause, - STATE(1933), 1, + STATE(1751), 1, + aux_sym_for_phrase_repeat1, + STATE(1915), 1, sym_query_tuning, - STATE(2099), 1, + STATE(2077), 1, aux_sym_for_phrase_repeat2, - STATE(2628), 1, + STATE(2608), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3215), 1, + STATE(2804), 1, + sym_on_quit_phrase, + STATE(3450), 1, aux_sym_for_statement_repeat1, - STATE(3216), 1, + STATE(3451), 1, sym_on_stop_phrase, - STATE(1636), 2, + STATE(1622), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [84761] = 9, + [81894] = 19, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1318), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1340), 1, + aux_sym_property_tuning_token1, + ACTIONS(2350), 1, + aux_sym_getter_token1, + ACTIONS(2352), 1, + aux_sym_setter_token1, + ACTIONS(2362), 1, + aux_sym_variable_definition_token2, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1705), 1, + aux_sym_property_definition_repeat2, + STATE(1857), 1, + sym_property_tuning, + STATE(1910), 1, + aux_sym_property_definition_repeat3, + STATE(3501), 1, + sym_access_tuning, + ACTIONS(2346), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1623), 2, + sym_comment, + sym_include, + STATE(2183), 2, + sym_getter, + sym_setter, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2360), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [81960] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(2277), 1, + STATE(3874), 1, sym_primitive_type, - STATE(1637), 2, + STATE(1624), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -117916,25 +114334,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [84807] = 9, + [82006] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(2261), 1, + STATE(2222), 1, sym_primitive_type, - STATE(1638), 2, + STATE(1625), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -117953,75 +114371,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [84853] = 22, - ACTIONS(59), 1, + [82052] = 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(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2371), 1, - anon_sym_COLON, - STATE(1673), 1, - sym__pre_tuning, - STATE(1745), 1, - sym_where_clause, - STATE(1759), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2082), 1, - aux_sym_for_phrase_repeat2, - STATE(2560), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2880), 1, - sym_on_quit_phrase, - STATE(3495), 1, - aux_sym_for_statement_repeat1, - STATE(3496), 1, - sym_on_stop_phrase, - STATE(1639), 2, + ACTIONS(2330), 1, + sym_identifier, + ACTIONS(2334), 1, + aux_sym_primitive_type_token19, + STATE(1606), 1, + sym_qualified_name, + STATE(1702), 1, + sym_primitive_type, + STATE(1626), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [84925] = 9, + ACTIONS(2332), 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, + [82098] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1627), 2, + sym_comment, + sym_include, + ACTIONS(2364), 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, + [82134] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(4567), 1, + STATE(4602), 1, sym_primitive_type, - STATE(1640), 2, + STATE(1628), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -118040,25 +114477,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [84971] = 9, + [82180] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(4105), 1, + STATE(3638), 1, sym_primitive_type, - STATE(1641), 2, + STATE(1629), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -118077,25 +114514,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [85017] = 9, + [82226] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2373), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2375), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(1709), 1, + STATE(2300), 1, sym_primitive_type, - STATE(1642), 2, + STATE(1630), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -118114,225 +114551,204 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [85063] = 22, + [82272] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2377), 1, + ACTIONS(2366), 1, anon_sym_COLON, - STATE(1674), 1, + STATE(1655), 1, sym__pre_tuning, - STATE(1761), 1, + STATE(1717), 1, sym_where_clause, - STATE(1762), 1, + STATE(1742), 1, aux_sym_for_phrase_repeat1, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(2023), 1, + STATE(2006), 1, aux_sym_for_phrase_repeat2, - STATE(2595), 1, + STATE(2543), 1, sym_on_error_phrase, - STATE(2825), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3447), 1, + STATE(2821), 1, + sym_on_quit_phrase, + STATE(3319), 1, aux_sym_for_statement_repeat1, - STATE(3449), 1, + STATE(3321), 1, sym_on_stop_phrase, - STATE(1643), 2, + STATE(1631), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [85135] = 22, + [82344] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2379), 1, - anon_sym_COLON, - STATE(1678), 1, - sym__pre_tuning, - STATE(1744), 1, - sym_where_clause, - STATE(1746), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2059), 1, - aux_sym_for_phrase_repeat2, - STATE(2651), 1, - sym_on_error_phrase, - STATE(2728), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3301), 1, - aux_sym_for_statement_repeat1, - STATE(3303), 1, - sym_on_stop_phrase, - STATE(1644), 2, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1318), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1340), 1, + aux_sym_property_tuning_token1, + ACTIONS(2350), 1, + aux_sym_getter_token1, + ACTIONS(2352), 1, + aux_sym_setter_token1, + ACTIONS(2370), 1, + aux_sym_variable_definition_token2, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1676), 1, + aux_sym_property_definition_repeat2, + STATE(1857), 1, + sym_property_tuning, + STATE(1879), 1, + aux_sym_property_definition_repeat3, + STATE(3501), 1, + sym_access_tuning, + ACTIONS(2346), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1632), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [85207] = 22, - ACTIONS(59), 1, + STATE(2183), 2, + sym_getter, + sym_setter, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2368), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [82410] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2381), 1, - anon_sym_COLON, - STATE(1687), 1, - sym__pre_tuning, - STATE(1763), 1, - sym_where_clause, - STATE(1766), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2069), 1, - aux_sym_for_phrase_repeat2, - STATE(2579), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2862), 1, - sym_on_quit_phrase, - STATE(3475), 1, - aux_sym_for_statement_repeat1, - STATE(3477), 1, - sym_on_stop_phrase, - STATE(1645), 2, + STATE(1633), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [85279] = 22, + ACTIONS(2372), 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, + [82446] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2383), 1, + ACTIONS(2374), 1, anon_sym_COLON, - STATE(1669), 1, + STATE(1657), 1, sym__pre_tuning, - STATE(1794), 1, + STATE(1744), 1, sym_where_clause, - STATE(1796), 1, + STATE(1753), 1, aux_sym_for_phrase_repeat1, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(2018), 1, + STATE(2063), 1, aux_sym_for_phrase_repeat2, - STATE(2554), 1, + STATE(2565), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2881), 1, + STATE(2727), 1, sym_on_quit_phrase, - STATE(3121), 1, + STATE(3157), 1, aux_sym_for_statement_repeat1, - STATE(3122), 1, + STATE(3158), 1, sym_on_stop_phrase, - STATE(1646), 2, + STATE(1634), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [85351] = 9, + [82518] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(3773), 1, + STATE(1686), 1, sym_primitive_type, - STATE(1647), 2, + STATE(1635), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -118351,25 +114767,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [85397] = 9, + [82564] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(2268), 1, + STATE(2194), 1, sym_primitive_type, - STATE(1648), 2, + STATE(1636), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -118388,25 +114804,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [85443] = 9, + [82610] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(2250), 1, + STATE(2229), 1, sym_primitive_type, - STATE(1649), 2, + STATE(1637), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -118425,75 +114841,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [85489] = 22, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2385), 1, - anon_sym_COLON, - STATE(1677), 1, - sym__pre_tuning, - STATE(1741), 1, - aux_sym_for_phrase_repeat1, - STATE(1747), 1, - sym_where_clause, - STATE(1933), 1, - sym_query_tuning, - STATE(2077), 1, - aux_sym_for_phrase_repeat2, - STATE(2669), 1, - sym_on_error_phrase, - STATE(2701), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3254), 1, - aux_sym_for_statement_repeat1, - STATE(3255), 1, - sym_on_stop_phrase, - STATE(1650), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [85561] = 9, + [82656] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(2216), 1, + STATE(2308), 1, sym_primitive_type, - STATE(1651), 2, + STATE(1638), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -118512,25 +114878,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [85607] = 9, + [82702] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(2253), 1, + STATE(1681), 1, sym_primitive_type, - STATE(1652), 2, + STATE(1639), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -118549,146 +114915,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [85653] = 19, + [82748] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1192), 1, - sym__namedot, - ACTIONS(1371), 1, - aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, - aux_sym_property_tuning_token1, - ACTIONS(2357), 1, - aux_sym_getter_token1, - ACTIONS(2359), 1, - aux_sym_setter_token1, - ACTIONS(2389), 1, - aux_sym_variable_definition_token2, - STATE(621), 1, - aux_sym_qualified_name_repeat1, - STATE(1711), 1, - aux_sym_property_definition_repeat2, - STATE(1857), 1, - sym_property_tuning, - STATE(1916), 1, - aux_sym_property_definition_repeat3, - STATE(3828), 1, - sym_access_tuning, - ACTIONS(2351), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1653), 2, - sym_comment, - sym_include, - STATE(2162), 2, - sym_getter, - sym_setter, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2387), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [85719] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2373), 1, - sym_identifier, - ACTIONS(2375), 1, - aux_sym_primitive_type_token19, - STATE(1626), 1, - sym_qualified_name, - STATE(1724), 1, - sym_primitive_type, - STATE(1654), 2, - sym_comment, - sym_include, - ACTIONS(2363), 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, - [85765] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2361), 1, - sym_identifier, - ACTIONS(2365), 1, - aux_sym_primitive_type_token19, - STATE(1626), 1, - sym_qualified_name, - STATE(2037), 1, - sym_primitive_type, - STATE(1655), 2, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2376), 1, + anon_sym_COLON, + STATE(1651), 1, + sym__pre_tuning, + STATE(1762), 1, + aux_sym_for_phrase_repeat1, + STATE(1763), 1, + sym_where_clause, + STATE(1915), 1, + sym_query_tuning, + STATE(2034), 1, + aux_sym_for_phrase_repeat2, + STATE(2549), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2831), 1, + sym_on_quit_phrase, + STATE(3336), 1, + aux_sym_for_statement_repeat1, + STATE(3337), 1, + sym_on_stop_phrase, + STATE(1640), 2, sym_comment, sym_include, - ACTIONS(2363), 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, - [85811] = 9, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [82820] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(2226), 1, + STATE(2197), 1, sym_primitive_type, - STATE(1656), 2, + STATE(1641), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -118707,122 +115002,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [85857] = 19, + [82866] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1192), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(1371), 1, + ACTIONS(1318), 1, aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, + ACTIONS(1340), 1, aux_sym_property_tuning_token1, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2393), 1, + ACTIONS(2380), 1, aux_sym_variable_definition_token2, - STATE(621), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(1715), 1, + STATE(1682), 1, aux_sym_property_definition_repeat2, STATE(1857), 1, sym_property_tuning, - STATE(1912), 1, + STATE(1905), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, - ACTIONS(2351), 2, + ACTIONS(2346), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1657), 2, + STATE(1642), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2391), 4, + ACTIONS(2378), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [85923] = 22, + [82932] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2395), 1, + ACTIONS(2382), 1, anon_sym_COLON, - STATE(1682), 1, + STATE(1659), 1, sym__pre_tuning, - STATE(1736), 1, - aux_sym_for_phrase_repeat1, - STATE(1737), 1, + STATE(1715), 1, sym_where_clause, - STATE(1933), 1, + STATE(1716), 1, + aux_sym_for_phrase_repeat1, + STATE(1915), 1, sym_query_tuning, - STATE(2013), 1, + STATE(1987), 1, aux_sym_for_phrase_repeat2, - STATE(2644), 1, + STATE(2648), 1, sym_on_error_phrase, - STATE(2712), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3326), 1, - aux_sym_for_statement_repeat1, - STATE(3328), 1, + STATE(2724), 1, + sym_on_quit_phrase, + STATE(3320), 1, sym_on_stop_phrase, - STATE(1658), 2, + STATE(3322), 1, + aux_sym_for_statement_repeat1, + STATE(1643), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [85995] = 9, + [83004] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2373), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2375), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(1702), 1, + STATE(2274), 1, sym_primitive_type, - STATE(1659), 2, + STATE(1644), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -118841,62 +115136,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [86041] = 9, - ACTIONS(3), 1, + [83050] = 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(2373), 1, - sym_identifier, - ACTIONS(2375), 1, - aux_sym_primitive_type_token19, - STATE(1626), 1, - sym_qualified_name, - STATE(1693), 1, - sym_primitive_type, - STATE(1660), 2, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2384), 1, + anon_sym_COLON, + STATE(1668), 1, + sym__pre_tuning, + STATE(1723), 1, + aux_sym_for_phrase_repeat1, + STATE(1724), 1, + sym_where_clause, + STATE(1915), 1, + sym_query_tuning, + STATE(2096), 1, + aux_sym_for_phrase_repeat2, + STATE(2664), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2847), 1, + sym_on_quit_phrase, + STATE(3431), 1, + aux_sym_for_statement_repeat1, + STATE(3432), 1, + sym_on_stop_phrase, + STATE(1645), 2, sym_comment, sym_include, - ACTIONS(2363), 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, - [86087] = 9, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [83122] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(2293), 1, + STATE(2095), 1, sym_primitive_type, - STATE(1661), 2, + STATE(1646), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -118915,99 +115223,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [86133] = 9, + [83168] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2361), 1, - sym_identifier, - ACTIONS(2365), 1, - aux_sym_primitive_type_token19, - STATE(1626), 1, - sym_qualified_name, - STATE(2331), 1, - sym_primitive_type, - STATE(1662), 2, + STATE(1647), 2, sym_comment, sym_include, - ACTIONS(2363), 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, - [86179] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(2386), 23, anon_sym_LBRACE, - ACTIONS(2361), 1, sym_identifier, - ACTIONS(2365), 1, - aux_sym_primitive_type_token19, - STATE(1626), 1, - sym_qualified_name, - STATE(2249), 1, - sym_primitive_type, - STATE(1663), 2, - sym_comment, - sym_include, - ACTIONS(2363), 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, - [86225] = 9, + 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, + [83204] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(2218), 1, + STATE(2288), 1, sym_primitive_type, - STATE(1664), 2, + STATE(1648), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -119026,25 +115292,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [86271] = 9, + [83250] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2330), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2334), 1, aux_sym_primitive_type_token19, - STATE(1626), 1, + STATE(1606), 1, sym_qualified_name, - STATE(3890), 1, + STATE(3633), 1, sym_primitive_type, - STATE(1665), 2, + STATE(1649), 2, sym_comment, sym_include, - ACTIONS(2363), 18, + ACTIONS(2332), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -119063,1252 +115329,1037 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [86317] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1666), 2, - sym_comment, - sym_include, - ACTIONS(2397), 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, - [86353] = 19, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1192), 1, - sym__namedot, - ACTIONS(1371), 1, - aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, - aux_sym_property_tuning_token1, - ACTIONS(2357), 1, - aux_sym_getter_token1, - ACTIONS(2359), 1, - aux_sym_setter_token1, - ACTIONS(2401), 1, - aux_sym_variable_definition_token2, - STATE(621), 1, - aux_sym_qualified_name_repeat1, - STATE(1719), 1, - aux_sym_property_definition_repeat2, - STATE(1857), 1, - sym_property_tuning, - STATE(1908), 1, - aux_sym_property_definition_repeat3, - STATE(3828), 1, - sym_access_tuning, - ACTIONS(2351), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1667), 2, - sym_comment, - sym_include, - STATE(2162), 2, - sym_getter, - sym_setter, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2399), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [86419] = 22, + [83296] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2403), 1, + ACTIONS(2376), 1, anon_sym_COLON, - STATE(1680), 1, - sym__pre_tuning, - STATE(1789), 1, + STATE(1762), 1, aux_sym_for_phrase_repeat1, - STATE(1792), 1, + STATE(1763), 1, sym_where_clause, - STATE(1933), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2015), 1, + STATE(2034), 1, aux_sym_for_phrase_repeat2, - STATE(2634), 1, + STATE(2549), 1, sym_on_error_phrase, - STATE(2753), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3229), 1, + STATE(2831), 1, + sym_on_quit_phrase, + STATE(3336), 1, aux_sym_for_statement_repeat1, - STATE(3230), 1, + STATE(3337), 1, sym_on_stop_phrase, - STATE(1668), 2, + STATE(1650), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [86491] = 21, + [83365] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2405), 1, + ACTIONS(2388), 1, anon_sym_COLON, - STATE(1726), 1, - aux_sym_for_phrase_repeat1, - STATE(1782), 1, + STATE(1750), 1, sym_where_clause, - STATE(2001), 1, - sym_query_tuning, - STATE(2007), 1, - aux_sym_for_phrase_repeat2, - STATE(2541), 1, - sym_on_error_phrase, - STATE(2848), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3111), 1, - sym_on_stop_phrase, - STATE(3112), 1, - aux_sym_for_statement_repeat1, - STATE(1669), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [86560] = 21, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2407), 1, - anon_sym_COLON, - STATE(1784), 1, + STATE(1768), 1, aux_sym_for_phrase_repeat1, - STATE(1785), 1, - sym_where_clause, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2045), 1, + STATE(2017), 1, aux_sym_for_phrase_repeat2, - STATE(2614), 1, + STATE(2544), 1, sym_on_error_phrase, - STATE(2797), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3207), 1, + STATE(2825), 1, + sym_on_quit_phrase, + STATE(3324), 1, sym_on_stop_phrase, - STATE(3208), 1, + STATE(3325), 1, aux_sym_for_statement_repeat1, - STATE(1670), 2, + STATE(1651), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [86629] = 21, + [83434] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2403), 1, + ACTIONS(2374), 1, anon_sym_COLON, - STATE(1789), 1, - aux_sym_for_phrase_repeat1, - STATE(1792), 1, + STATE(1744), 1, sym_where_clause, - STATE(2001), 1, + STATE(1753), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, sym_query_tuning, - STATE(2015), 1, + STATE(2063), 1, aux_sym_for_phrase_repeat2, - STATE(2634), 1, + STATE(2565), 1, sym_on_error_phrase, - STATE(2753), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3229), 1, + STATE(2727), 1, + sym_on_quit_phrase, + STATE(3157), 1, aux_sym_for_statement_repeat1, - STATE(3230), 1, + STATE(3158), 1, sym_on_stop_phrase, - STATE(1671), 2, + STATE(1652), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [86698] = 21, + [83503] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2381), 1, + ACTIONS(2366), 1, anon_sym_COLON, - STATE(1763), 1, + STATE(1717), 1, sym_where_clause, - STATE(1766), 1, + STATE(1742), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2069), 1, + STATE(2006), 1, aux_sym_for_phrase_repeat2, - STATE(2579), 1, + STATE(2543), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2862), 1, + STATE(2821), 1, sym_on_quit_phrase, - STATE(3475), 1, + STATE(3319), 1, aux_sym_for_statement_repeat1, - STATE(3477), 1, + STATE(3321), 1, sym_on_stop_phrase, - STATE(1672), 2, + STATE(1653), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [86767] = 21, + [83572] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2409), 1, + ACTIONS(2384), 1, anon_sym_COLON, - STATE(1742), 1, - sym_where_clause, - STATE(1743), 1, + STATE(1723), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1724), 1, + sym_where_clause, + STATE(1967), 1, sym_query_tuning, - STATE(2064), 1, + STATE(2096), 1, aux_sym_for_phrase_repeat2, - STATE(2513), 1, + STATE(2664), 1, sym_on_error_phrase, STATE(2696), 1, - sym_on_quit_phrase, - STATE(2851), 1, sym_sort_clause, - STATE(3297), 1, - sym_on_stop_phrase, - STATE(3298), 1, + STATE(2847), 1, + sym_on_quit_phrase, + STATE(3431), 1, aux_sym_for_statement_repeat1, - STATE(1673), 2, + STATE(3432), 1, + sym_on_stop_phrase, + STATE(1654), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [86836] = 21, + [83641] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2411), 1, + ACTIONS(2390), 1, anon_sym_COLON, - STATE(1750), 1, - sym_where_clause, - STATE(1751), 1, + STATE(1733), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1740), 1, + sym_where_clause, + STATE(1967), 1, sym_query_tuning, - STATE(2048), 1, + STATE(1997), 1, aux_sym_for_phrase_repeat2, - STATE(2602), 1, + STATE(2497), 1, sym_on_error_phrase, - STATE(2818), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3432), 1, + STATE(2817), 1, + sym_on_quit_phrase, + STATE(3312), 1, sym_on_stop_phrase, - STATE(3433), 1, + STATE(3313), 1, aux_sym_for_statement_repeat1, - STATE(1674), 2, + STATE(1655), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [86905] = 21, + [83710] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2377), 1, - anon_sym_COLON, - STATE(1761), 1, + STATE(1679), 1, + sym__pre_tuning, + STATE(1787), 1, sym_where_clause, - STATE(1762), 1, + STATE(1792), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1915), 1, sym_query_tuning, - STATE(2023), 1, + STATE(2103), 1, aux_sym_for_phrase_repeat2, - STATE(2595), 1, + STATE(2696), 1, + sym_sort_clause, + STATE(2783), 1, sym_on_error_phrase, - STATE(2825), 1, + STATE(2904), 1, sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3447), 1, - aux_sym_for_statement_repeat1, - STATE(3449), 1, + STATE(3580), 1, sym_on_stop_phrase, - STATE(1675), 2, + ACTIONS(2392), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1656), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [86974] = 21, + [83777] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2413), 1, + ACTIONS(2394), 1, anon_sym_COLON, - STATE(1777), 1, - aux_sym_for_phrase_repeat1, - STATE(1779), 1, + STATE(1732), 1, sym_where_clause, - STATE(2001), 1, + STATE(1734), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, sym_query_tuning, - STATE(2004), 1, + STATE(2078), 1, aux_sym_for_phrase_repeat2, - STATE(2557), 1, + STATE(2575), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2876), 1, + STATE(2720), 1, sym_on_quit_phrase, - STATE(3124), 1, + STATE(3141), 1, sym_on_stop_phrase, - STATE(3125), 1, + STATE(3142), 1, aux_sym_for_statement_repeat1, - STATE(1676), 2, + STATE(1657), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [87043] = 21, + [83846] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2415), 1, + ACTIONS(2358), 1, anon_sym_COLON, - STATE(1769), 1, + STATE(1746), 1, sym_where_clause, - STATE(1772), 1, + STATE(1751), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2067), 1, + STATE(2077), 1, aux_sym_for_phrase_repeat2, - STATE(2632), 1, + STATE(2608), 1, sym_on_error_phrase, - STATE(2761), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3221), 1, - sym_on_stop_phrase, - STATE(3222), 1, + STATE(2804), 1, + sym_on_quit_phrase, + STATE(3450), 1, aux_sym_for_statement_repeat1, - STATE(1677), 2, + STATE(3451), 1, + sym_on_stop_phrase, + STATE(1658), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [87112] = 21, + [83915] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2417), 1, + ACTIONS(2396), 1, anon_sym_COLON, - STATE(1734), 1, + STATE(1707), 1, sym_where_clause, - STATE(1735), 1, + STATE(1771), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2095), 1, + STATE(2026), 1, aux_sym_for_phrase_repeat2, - STATE(2659), 1, + STATE(2496), 1, sym_on_error_phrase, - STATE(2720), 1, + STATE(2690), 1, sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3287), 1, + STATE(3114), 1, sym_on_stop_phrase, - STATE(3288), 1, + STATE(3116), 1, aux_sym_for_statement_repeat1, - STATE(1678), 2, + STATE(1659), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [87181] = 21, + [83984] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2385), 1, + ACTIONS(2398), 1, anon_sym_COLON, - STATE(1741), 1, + STATE(1773), 1, aux_sym_for_phrase_repeat1, - STATE(1747), 1, + STATE(1774), 1, sym_where_clause, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2077), 1, + STATE(2048), 1, aux_sym_for_phrase_repeat2, - STATE(2669), 1, + STATE(2531), 1, sym_on_error_phrase, - STATE(2701), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3254), 1, - aux_sym_for_statement_repeat1, - STATE(3255), 1, + STATE(2761), 1, + sym_on_quit_phrase, + STATE(3216), 1, sym_on_stop_phrase, - STATE(1679), 2, + STATE(3217), 1, + aux_sym_for_statement_repeat1, + STATE(1660), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [87250] = 21, + [84053] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2419), 1, + ACTIONS(2356), 1, anon_sym_COLON, - STATE(1733), 1, - aux_sym_for_phrase_repeat1, - STATE(1786), 1, + STATE(1725), 1, sym_where_clause, - STATE(2001), 1, + STATE(1731), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, sym_query_tuning, - STATE(2091), 1, + STATE(1988), 1, aux_sym_for_phrase_repeat2, - STATE(2630), 1, + STATE(2576), 1, sym_on_error_phrase, - STATE(2773), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3218), 1, - sym_on_stop_phrase, - STATE(3219), 1, + STATE(2717), 1, + sym_on_quit_phrase, + STATE(3131), 1, aux_sym_for_statement_repeat1, - STATE(1680), 2, + STATE(3135), 1, + sym_on_stop_phrase, + STATE(1661), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [87319] = 20, + [84122] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2145), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - STATE(1704), 1, - sym__pre_tuning, - STATE(1797), 1, + ACTIONS(2400), 1, + anon_sym_COLON, + STATE(1721), 1, aux_sym_for_phrase_repeat1, - STATE(1799), 1, + STATE(1722), 1, sym_where_clause, - STATE(1933), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2153), 1, + STATE(2097), 1, aux_sym_for_phrase_repeat2, - STATE(2804), 1, + STATE(2603), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2933), 1, + STATE(2836), 1, sym_on_quit_phrase, - STATE(3926), 1, + STATE(3438), 1, sym_on_stop_phrase, - ACTIONS(2421), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1681), 2, + STATE(3440), 1, + aux_sym_for_statement_repeat1, + STATE(1662), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [87386] = 21, + [84191] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2423), 1, + ACTIONS(2354), 1, anon_sym_COLON, - STATE(1754), 1, - sym_where_clause, - STATE(1755), 1, + STATE(1712), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1730), 1, + sym_where_clause, + STATE(1967), 1, sym_query_tuning, - STATE(2042), 1, + STATE(1998), 1, aux_sym_for_phrase_repeat2, - STATE(2650), 1, + STATE(2513), 1, sym_on_error_phrase, - STATE(2692), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3310), 1, - sym_on_stop_phrase, - STATE(3311), 1, + STATE(2778), 1, + sym_on_quit_phrase, + STATE(3249), 1, aux_sym_for_statement_repeat1, - STATE(1682), 2, + STATE(3250), 1, + sym_on_stop_phrase, + STATE(1663), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [87455] = 21, + [84260] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2369), 1, + ACTIONS(2336), 1, anon_sym_COLON, - STATE(1731), 1, - aux_sym_for_phrase_repeat1, - STATE(1778), 1, + STATE(1735), 1, sym_where_clause, - STATE(2001), 1, + STATE(1739), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, sym_query_tuning, - STATE(2099), 1, + STATE(2020), 1, aux_sym_for_phrase_repeat2, - STATE(2628), 1, + STATE(2631), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3215), 1, + STATE(2702), 1, + sym_on_quit_phrase, + STATE(3138), 1, aux_sym_for_statement_repeat1, - STATE(3216), 1, + STATE(3140), 1, sym_on_stop_phrase, - STATE(1683), 2, + STATE(1664), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [87524] = 21, + [84329] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2383), 1, + ACTIONS(2342), 1, anon_sym_COLON, - STATE(1794), 1, - sym_where_clause, - STATE(1796), 1, + STATE(1761), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1766), 1, + sym_where_clause, + STATE(1967), 1, sym_query_tuning, - STATE(2018), 1, + STATE(2079), 1, aux_sym_for_phrase_repeat2, - STATE(2554), 1, + STATE(2529), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2881), 1, + STATE(2766), 1, sym_on_quit_phrase, - STATE(3121), 1, + STATE(3227), 1, aux_sym_for_statement_repeat1, - STATE(3122), 1, + STATE(3228), 1, sym_on_stop_phrase, - STATE(1684), 2, + STATE(1665), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [87593] = 21, + [84398] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2379), 1, + ACTIONS(2402), 1, anon_sym_COLON, - STATE(1744), 1, + STATE(1713), 1, sym_where_clause, - STATE(1746), 1, + STATE(1714), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2059), 1, + STATE(2084), 1, aux_sym_for_phrase_repeat2, - STATE(2651), 1, + STATE(2580), 1, sym_on_error_phrase, - STATE(2728), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3301), 1, - aux_sym_for_statement_repeat1, - STATE(3303), 1, + STATE(2713), 1, + sym_on_quit_phrase, + STATE(3120), 1, sym_on_stop_phrase, - STATE(1685), 2, + STATE(3121), 1, + aux_sym_for_statement_repeat1, + STATE(1666), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [87662] = 21, + [84467] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2395), 1, + ACTIONS(2404), 1, anon_sym_COLON, - STATE(1736), 1, - aux_sym_for_phrase_repeat1, - STATE(1737), 1, + STATE(1755), 1, sym_where_clause, - STATE(2001), 1, + STATE(1757), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, sym_query_tuning, - STATE(2013), 1, + STATE(2050), 1, aux_sym_for_phrase_repeat2, - STATE(2644), 1, + STATE(2623), 1, sym_on_error_phrase, - STATE(2712), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3326), 1, + STATE(2722), 1, + sym_on_quit_phrase, + STATE(3268), 1, aux_sym_for_statement_repeat1, - STATE(3328), 1, + STATE(3269), 1, sym_on_stop_phrase, - STATE(1686), 2, + STATE(1667), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [87731] = 21, + [84536] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2425), 1, + ACTIONS(2406), 1, anon_sym_COLON, - STATE(1764), 1, - sym_where_clause, - STATE(1770), 1, + STATE(1727), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1728), 1, + sym_where_clause, + STATE(1967), 1, sym_query_tuning, - STATE(2054), 1, + STATE(2091), 1, aux_sym_for_phrase_repeat2, - STATE(2552), 1, + STATE(2572), 1, sym_on_error_phrase, - STATE(2828), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3456), 1, + STATE(2869), 1, + sym_on_quit_phrase, + STATE(3420), 1, sym_on_stop_phrase, - STATE(3457), 1, + STATE(3421), 1, aux_sym_for_statement_repeat1, - STATE(1687), 2, + STATE(1668), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [87800] = 21, + [84605] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2371), 1, + ACTIONS(2382), 1, anon_sym_COLON, - STATE(1745), 1, + STATE(1715), 1, sym_where_clause, - STATE(1759), 1, + STATE(1716), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2082), 1, + STATE(1987), 1, aux_sym_for_phrase_repeat2, - STATE(2560), 1, + STATE(2648), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2880), 1, + STATE(2724), 1, sym_on_quit_phrase, - STATE(3495), 1, - aux_sym_for_statement_repeat1, - STATE(3496), 1, + STATE(3320), 1, sym_on_stop_phrase, - STATE(1688), 2, + STATE(3322), 1, + aux_sym_for_statement_repeat1, + STATE(1669), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [87869] = 21, + [84674] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2347), 1, + ACTIONS(2408), 1, anon_sym_COLON, - STATE(1740), 1, - sym_where_clause, - STATE(1767), 1, + STATE(1756), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1758), 1, + sym_where_clause, + STATE(1967), 1, sym_query_tuning, - STATE(2003), 1, + STATE(2075), 1, aux_sym_for_phrase_repeat2, - STATE(2564), 1, + STATE(2526), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2877), 1, + STATE(2770), 1, sym_on_quit_phrase, - STATE(3141), 1, - aux_sym_for_statement_repeat1, - STATE(3142), 1, + STATE(3231), 1, sym_on_stop_phrase, - STATE(1689), 2, + STATE(3232), 1, + aux_sym_for_statement_repeat1, + STATE(1670), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [87938] = 17, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1371), 1, - aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, - aux_sym_property_tuning_token1, - ACTIONS(2357), 1, - aux_sym_getter_token1, - ACTIONS(2359), 1, - aux_sym_setter_token1, - ACTIONS(2401), 1, - aux_sym_variable_definition_token2, - STATE(1719), 1, - aux_sym_property_definition_repeat2, - STATE(1857), 1, - sym_property_tuning, - STATE(1908), 1, - aux_sym_property_definition_repeat3, - STATE(3828), 1, - sym_access_tuning, - ACTIONS(2351), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1690), 2, - sym_comment, - sym_include, - STATE(2162), 2, - sym_getter, - sym_setter, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2399), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [87998] = 17, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1371), 1, - aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, - aux_sym_property_tuning_token1, - ACTIONS(2357), 1, - aux_sym_getter_token1, - ACTIONS(2359), 1, - aux_sym_setter_token1, - ACTIONS(2389), 1, - aux_sym_variable_definition_token2, - STATE(1711), 1, - aux_sym_property_definition_repeat2, - STATE(1857), 1, - sym_property_tuning, - STATE(1916), 1, - aux_sym_property_definition_repeat3, - STATE(3828), 1, - sym_access_tuning, - ACTIONS(2351), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1691), 2, - sym_comment, - sym_include, - STATE(2162), 2, - sym_getter, - sym_setter, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2387), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [88058] = 10, + [84743] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(962), 1, + ACTIONS(1133), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2427), 1, + ACTIONS(2410), 1, sym__terminator, - STATE(1721), 1, + STATE(1695), 1, aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, + STATE(1783), 1, sym_output_stream_tuning, - STATE(1692), 2, + STATE(1671), 2, sym_comment, sym_include, - ACTIONS(958), 4, + ACTIONS(1129), 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(960), 12, + ACTIONS(1131), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -120321,197 +116372,116 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - [88104] = 17, + [84789] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, - aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, - aux_sym_property_tuning_token1, - ACTIONS(2357), 1, - aux_sym_getter_token1, - ACTIONS(2359), 1, - aux_sym_setter_token1, - ACTIONS(2431), 1, - aux_sym_variable_definition_token2, - STATE(1713), 1, - aux_sym_property_definition_repeat2, - STATE(1857), 1, - sym_property_tuning, - STATE(1892), 1, - aux_sym_property_definition_repeat3, - STATE(3828), 1, - sym_access_tuning, - ACTIONS(2351), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1693), 2, + ACTIONS(2412), 1, + aux_sym_variable_definition_token3, + ACTIONS(2414), 1, + aux_sym_variable_definition_token4, + ACTIONS(2416), 1, + aux_sym_buffer_definition_token1, + ACTIONS(2418), 1, + aux_sym_buffer_definition_token3, + ACTIONS(2420), 1, + aux_sym_query_definition_token1, + ACTIONS(2422), 1, + aux_sym_stream_definition_token1, + STATE(1808), 1, + aux_sym_variable_definition_repeat1, + STATE(1937), 1, + aux_sym_buffer_definition_repeat1, + STATE(1971), 1, + sym_serialization_tuning, + ACTIONS(1324), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1672), 2, sym_comment, sym_include, - STATE(2162), 2, - sym_getter, - sym_setter, - ACTIONS(1375), 3, + STATE(1877), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2429), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [88164] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(962), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2433), 1, - sym__terminator, - STATE(1721), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - STATE(1694), 2, - sym_comment, - sym_include, - ACTIONS(958), 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(960), 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, - [88210] = 17, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [84849] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2303), 1, + ACTIONS(2312), 1, aux_sym_variable_definition_token3, - ACTIONS(2305), 1, + ACTIONS(2314), 1, aux_sym_variable_definition_token4, - ACTIONS(2307), 1, + ACTIONS(2316), 1, aux_sym_buffer_definition_token1, - ACTIONS(2309), 1, + ACTIONS(2318), 1, aux_sym_buffer_definition_token3, - ACTIONS(2311), 1, + ACTIONS(2320), 1, aux_sym_query_definition_token1, - ACTIONS(2315), 1, + ACTIONS(2324), 1, aux_sym_stream_definition_token1, - STATE(1834), 1, + STATE(1823), 1, aux_sym_variable_definition_repeat1, - STATE(1948), 1, - sym_serialization_tuning, - STATE(1966), 1, + STATE(1928), 1, aux_sym_buffer_definition_repeat1, - ACTIONS(1377), 2, + STATE(1971), 1, + sym_serialization_tuning, + ACTIONS(1324), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1695), 2, + STATE(1673), 2, sym_comment, sym_include, - STATE(1896), 2, + STATE(1877), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(1373), 4, + ACTIONS(1320), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [88270] = 19, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, - aux_sym_where_clause_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - STATE(1797), 1, - aux_sym_for_phrase_repeat1, - STATE(1799), 1, - sym_where_clause, - STATE(2001), 1, - sym_query_tuning, - STATE(2153), 1, - aux_sym_for_phrase_repeat2, - STATE(2804), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2933), 1, - sym_on_quit_phrase, - STATE(3926), 1, - sym_on_stop_phrase, - ACTIONS(2421), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1696), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [88334] = 10, + [84909] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(962), 1, + ACTIONS(1133), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2435), 1, + ACTIONS(2424), 1, sym__terminator, - STATE(1721), 1, + STATE(1695), 1, aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, + STATE(1783), 1, sym_output_stream_tuning, - STATE(1697), 2, + STATE(1674), 2, sym_comment, sym_include, - ACTIONS(958), 4, + ACTIONS(1129), 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(960), 12, + ACTIONS(1131), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -120524,343 +116494,237 @@ 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, - [88380] = 10, + [84955] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(962), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2437), 1, - sym__terminator, - STATE(1721), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - STATE(1698), 2, + ACTIONS(1318), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1340), 1, + aux_sym_property_tuning_token1, + ACTIONS(2350), 1, + aux_sym_getter_token1, + ACTIONS(2352), 1, + aux_sym_setter_token1, + ACTIONS(2428), 1, + aux_sym_variable_definition_token2, + STATE(1810), 1, + aux_sym_property_definition_repeat2, + STATE(1857), 1, + sym_property_tuning, + STATE(1911), 1, + aux_sym_property_definition_repeat3, + STATE(3501), 1, + sym_access_tuning, + ACTIONS(2346), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1675), 2, sym_comment, sym_include, - ACTIONS(958), 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(960), 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, - [88426] = 17, + STATE(2183), 2, + sym_getter, + sym_setter, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2426), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [85015] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2439), 1, - aux_sym_variable_definition_token3, - ACTIONS(2441), 1, - aux_sym_variable_definition_token4, - ACTIONS(2443), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2445), 1, - aux_sym_buffer_definition_token3, - ACTIONS(2447), 1, - aux_sym_query_definition_token1, - ACTIONS(2449), 1, - aux_sym_stream_definition_token1, - STATE(1841), 1, - aux_sym_variable_definition_repeat1, - STATE(1948), 1, - sym_serialization_tuning, - STATE(1991), 1, - aux_sym_buffer_definition_repeat1, - ACTIONS(1377), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1699), 2, + ACTIONS(1318), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1340), 1, + aux_sym_property_tuning_token1, + ACTIONS(2350), 1, + aux_sym_getter_token1, + ACTIONS(2352), 1, + aux_sym_setter_token1, + ACTIONS(2432), 1, + aux_sym_variable_definition_token2, + STATE(1810), 1, + aux_sym_property_definition_repeat2, + STATE(1857), 1, + sym_property_tuning, + STATE(1914), 1, + aux_sym_property_definition_repeat3, + STATE(3501), 1, + sym_access_tuning, + ACTIONS(2346), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1676), 2, sym_comment, sym_include, - STATE(1896), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1375), 3, + STATE(2183), 2, + sym_getter, + sym_setter, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [88486] = 10, + ACTIONS(2430), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [85075] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(962), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2451), 1, - sym__terminator, - STATE(1721), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - STATE(1700), 2, + ACTIONS(2436), 1, + aux_sym_input_stream_tuning_token10, + ACTIONS(2438), 1, + aux_sym_input_stream_tuning_token11, + STATE(1677), 2, sym_comment, sym_include, - ACTIONS(958), 4, + ACTIONS(2434), 18, + sym__terminator, 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(960), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - aux_sym_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, - [88532] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(962), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2453), 1, - sym__terminator, - STATE(1721), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - STATE(1701), 2, - sym_comment, - sym_include, - ACTIONS(958), 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(960), 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, - [88578] = 17, + aux_sym_output_stream_tuning_token8, + [85115] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, + ACTIONS(1318), 1, aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, + ACTIONS(1340), 1, aux_sym_property_tuning_token1, - ACTIONS(2357), 1, + ACTIONS(2348), 1, + aux_sym_variable_definition_token2, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2457), 1, - aux_sym_variable_definition_token2, - STATE(1720), 1, + STATE(1692), 1, aux_sym_property_definition_repeat2, STATE(1857), 1, sym_property_tuning, - STATE(1904), 1, + STATE(1888), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, - ACTIONS(2351), 2, + ACTIONS(2346), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1702), 2, + STATE(1678), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2455), 4, + ACTIONS(2344), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [88638] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1703), 2, - sym_comment, - sym_include, - ACTIONS(2247), 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, - [88674] = 19, + [85175] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2147), 1, + ACTIONS(2142), 1, aux_sym_where_clause_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - STATE(1801), 1, + STATE(1788), 1, sym_where_clause, - STATE(1802), 1, + STATE(1790), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2157), 1, + STATE(2144), 1, aux_sym_for_phrase_repeat2, - STATE(2851), 1, - sym_sort_clause, - STATE(2868), 1, + STATE(2689), 1, sym_on_error_phrase, - STATE(2903), 1, + STATE(2696), 1, + sym_sort_clause, + STATE(2978), 1, sym_on_quit_phrase, - STATE(3778), 1, + STATE(3593), 1, sym_on_stop_phrase, - ACTIONS(2459), 2, + ACTIONS(2440), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1704), 2, + STATE(1679), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [88738] = 17, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2461), 1, - aux_sym_variable_definition_token3, - ACTIONS(2463), 1, - aux_sym_variable_definition_token4, - ACTIONS(2465), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2467), 1, - aux_sym_buffer_definition_token3, - ACTIONS(2469), 1, - aux_sym_query_definition_token1, - ACTIONS(2471), 1, - aux_sym_stream_definition_token1, - STATE(1833), 1, - aux_sym_variable_definition_repeat1, - STATE(1948), 1, - sym_serialization_tuning, - STATE(1987), 1, - aux_sym_buffer_definition_repeat1, - ACTIONS(1377), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1705), 2, - sym_comment, - sym_include, - STATE(1896), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [88798] = 10, + [85239] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(962), 1, + ACTIONS(1133), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2473), 1, + ACTIONS(2442), 1, sym__terminator, - STATE(1721), 1, + STATE(1695), 1, aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, + STATE(1783), 1, sym_output_stream_tuning, - STATE(1706), 2, + STATE(1680), 2, sym_comment, sym_include, - ACTIONS(958), 4, + ACTIONS(1129), 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(960), 12, + ACTIONS(1131), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -120873,493 +116737,744 @@ 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, - [88844] = 17, + [85285] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, + ACTIONS(1318), 1, aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, + ACTIONS(1340), 1, aux_sym_property_tuning_token1, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2477), 1, + ACTIONS(2446), 1, aux_sym_variable_definition_token2, - STATE(1835), 1, + STATE(1691), 1, aux_sym_property_definition_repeat2, STATE(1857), 1, sym_property_tuning, - STATE(1920), 1, + STATE(1893), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, - ACTIONS(2351), 2, + ACTIONS(2346), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1707), 2, + STATE(1681), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2475), 4, + ACTIONS(2444), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [88904] = 17, + [85345] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, + ACTIONS(1318), 1, aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, + ACTIONS(1340), 1, aux_sym_property_tuning_token1, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2393), 1, + ACTIONS(2450), 1, aux_sym_variable_definition_token2, - STATE(1715), 1, + STATE(1810), 1, aux_sym_property_definition_repeat2, STATE(1857), 1, sym_property_tuning, - STATE(1912), 1, + STATE(1892), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, - ACTIONS(2351), 2, + ACTIONS(2346), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1708), 2, + STATE(1682), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2391), 4, + ACTIONS(2448), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [88964] = 17, + [85405] = 17, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2452), 1, + aux_sym_variable_definition_token3, + ACTIONS(2454), 1, + aux_sym_variable_definition_token4, + ACTIONS(2456), 1, + aux_sym_buffer_definition_token1, + ACTIONS(2458), 1, + aux_sym_buffer_definition_token3, + ACTIONS(2460), 1, + aux_sym_query_definition_token1, + ACTIONS(2462), 1, + aux_sym_stream_definition_token1, + STATE(1832), 1, + aux_sym_variable_definition_repeat1, + STATE(1960), 1, + aux_sym_buffer_definition_repeat1, + STATE(1971), 1, + sym_serialization_tuning, + ACTIONS(1324), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1683), 2, + sym_comment, + sym_include, + STATE(1877), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [85465] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, + ACTIONS(1318), 1, aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, + ACTIONS(1340), 1, aux_sym_property_tuning_token1, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2481), 1, + ACTIONS(2446), 1, aux_sym_variable_definition_token2, - STATE(1716), 1, + STATE(1810), 1, aux_sym_property_definition_repeat2, STATE(1857), 1, sym_property_tuning, - STATE(1907), 1, + STATE(1893), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, - ACTIONS(2351), 2, + ACTIONS(2346), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1709), 2, + STATE(1684), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2479), 4, + ACTIONS(2444), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [89024] = 7, + [85525] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_input_stream_tuning_token10, - ACTIONS(2487), 1, - aux_sym_input_stream_tuning_token11, - STATE(1710), 2, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2464), 1, + sym__terminator, + STATE(1695), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + STATE(1685), 2, sym_comment, sym_include, - ACTIONS(2483), 18, - sym__terminator, + ACTIONS(1129), 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(1131), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token5, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - aux_sym_input_stream_tuning_token9, - aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token2, aux_sym_output_stream_tuning_token3, aux_sym_output_stream_tuning_token4, aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - aux_sym_output_stream_tuning_token8, - [89064] = 17, + [85571] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, + ACTIONS(1318), 1, aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, + ACTIONS(1340), 1, aux_sym_property_tuning_token1, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2491), 1, + ACTIONS(2428), 1, aux_sym_variable_definition_token2, - STATE(1835), 1, + STATE(1700), 1, aux_sym_property_definition_repeat2, STATE(1857), 1, sym_property_tuning, STATE(1911), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, - ACTIONS(2351), 2, + ACTIONS(2346), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1711), 2, + STATE(1686), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, + sym_getter, + sym_setter, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2426), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [85631] = 17, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1318), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1340), 1, + aux_sym_property_tuning_token1, + ACTIONS(2350), 1, + aux_sym_getter_token1, + ACTIONS(2352), 1, + aux_sym_setter_token1, + ACTIONS(2362), 1, + aux_sym_variable_definition_token2, + STATE(1705), 1, + aux_sym_property_definition_repeat2, + STATE(1857), 1, + sym_property_tuning, + STATE(1910), 1, + aux_sym_property_definition_repeat3, + STATE(3501), 1, + sym_access_tuning, + ACTIONS(2346), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1687), 2, + sym_comment, + sym_include, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2489), 4, + ACTIONS(2360), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [89124] = 17, + [85691] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2466), 1, + sym__terminator, + STATE(1695), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + STATE(1688), 2, + sym_comment, + sym_include, + ACTIONS(1129), 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(1131), 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, + [85737] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2468), 1, + sym__terminator, + STATE(1695), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + STATE(1689), 2, + sym_comment, + sym_include, + ACTIONS(1129), 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(1131), 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, + [85783] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1379), 1, + ACTIONS(2296), 1, aux_sym_variable_definition_token3, - ACTIONS(1381), 1, + ACTIONS(2298), 1, aux_sym_variable_definition_token4, - ACTIONS(1383), 1, + ACTIONS(2300), 1, aux_sym_buffer_definition_token1, - ACTIONS(1385), 1, + ACTIONS(2302), 1, aux_sym_buffer_definition_token3, - ACTIONS(1387), 1, + ACTIONS(2304), 1, aux_sym_query_definition_token1, - ACTIONS(2493), 1, + ACTIONS(2308), 1, aux_sym_stream_definition_token1, - STATE(1825), 1, + STATE(1827), 1, aux_sym_variable_definition_repeat1, - STATE(1948), 1, - sym_serialization_tuning, - STATE(1983), 1, + STATE(1941), 1, aux_sym_buffer_definition_repeat1, - ACTIONS(1377), 2, + STATE(1971), 1, + sym_serialization_tuning, + ACTIONS(1324), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1712), 2, + STATE(1690), 2, sym_comment, sym_include, - STATE(1896), 2, + STATE(1877), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(1373), 4, + ACTIONS(1320), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [89184] = 17, + [85843] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, + ACTIONS(1318), 1, aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, + ACTIONS(1340), 1, aux_sym_property_tuning_token1, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2481), 1, + ACTIONS(2472), 1, aux_sym_variable_definition_token2, - STATE(1835), 1, + STATE(1810), 1, aux_sym_property_definition_repeat2, STATE(1857), 1, sym_property_tuning, - STATE(1907), 1, + STATE(1902), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, - ACTIONS(2351), 2, + ACTIONS(2346), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1713), 2, + STATE(1691), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2479), 4, + ACTIONS(2470), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [89244] = 17, + [85903] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, + ACTIONS(1318), 1, aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, + ACTIONS(1340), 1, aux_sym_property_tuning_token1, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2431), 1, + ACTIONS(2476), 1, aux_sym_variable_definition_token2, - STATE(1835), 1, + STATE(1810), 1, aux_sym_property_definition_repeat2, STATE(1857), 1, sym_property_tuning, - STATE(1892), 1, + STATE(1907), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, - ACTIONS(2351), 2, + ACTIONS(2346), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1714), 2, + STATE(1692), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2429), 4, + ACTIONS(2474), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [89304] = 17, + [85963] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, - aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, - aux_sym_property_tuning_token1, - ACTIONS(2357), 1, - aux_sym_getter_token1, - ACTIONS(2359), 1, - aux_sym_setter_token1, - ACTIONS(2497), 1, - aux_sym_variable_definition_token2, - STATE(1835), 1, - aux_sym_property_definition_repeat2, - STATE(1857), 1, - sym_property_tuning, - STATE(1905), 1, - aux_sym_property_definition_repeat3, - STATE(3828), 1, - sym_access_tuning, - ACTIONS(2351), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1715), 2, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2142), 1, + aux_sym_where_clause_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + STATE(1787), 1, + sym_where_clause, + STATE(1792), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2103), 1, + aux_sym_for_phrase_repeat2, + STATE(2696), 1, + sym_sort_clause, + STATE(2783), 1, + sym_on_error_phrase, + STATE(2904), 1, + sym_on_quit_phrase, + STATE(3580), 1, + sym_on_stop_phrase, + ACTIONS(2392), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1693), 2, sym_comment, sym_include, - STATE(2162), 2, - sym_getter, - sym_setter, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2495), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [89364] = 17, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [86027] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1694), 2, + sym_comment, + sym_include, + ACTIONS(2158), 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, + [86063] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, - aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, - aux_sym_property_tuning_token1, - ACTIONS(2357), 1, - aux_sym_getter_token1, - ACTIONS(2359), 1, - aux_sym_setter_token1, - ACTIONS(2457), 1, - aux_sym_variable_definition_token2, - STATE(1835), 1, - aux_sym_property_definition_repeat2, - STATE(1857), 1, - sym_property_tuning, - STATE(1904), 1, - aux_sym_property_definition_repeat3, - STATE(3828), 1, - sym_access_tuning, - ACTIONS(2351), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1716), 2, + ACTIONS(2478), 1, + sym__terminator, + ACTIONS(2486), 1, + aux_sym_input_stream_tuning_token9, + STATE(1783), 1, + sym_output_stream_tuning, + STATE(1695), 3, sym_comment, sym_include, - STATE(2162), 2, - sym_getter, - sym_setter, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2455), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [89424] = 17, + aux_sym_output_stream_statement_repeat1, + ACTIONS(2480), 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(2483), 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, + [86107] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2319), 1, - aux_sym_variable_definition_token3, - ACTIONS(2321), 1, - aux_sym_variable_definition_token4, - ACTIONS(2323), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2325), 1, - aux_sym_buffer_definition_token3, - ACTIONS(2327), 1, - aux_sym_query_definition_token1, - ACTIONS(2331), 1, - aux_sym_stream_definition_token1, - STATE(1829), 1, - aux_sym_variable_definition_repeat1, - STATE(1948), 1, - sym_serialization_tuning, - STATE(1979), 1, - aux_sym_buffer_definition_repeat1, - ACTIONS(1377), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1717), 2, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2489), 1, + sym__terminator, + STATE(1695), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + STATE(1696), 2, sym_comment, sym_include, - STATE(1896), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [89484] = 10, + ACTIONS(1129), 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(1131), 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, + [86153] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(962), 1, + ACTIONS(1133), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2499), 1, + ACTIONS(2491), 1, sym__terminator, - STATE(1721), 1, + STATE(1695), 1, aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, + STATE(1783), 1, sym_output_stream_tuning, - STATE(1718), 2, + STATE(1697), 2, + sym_comment, + sym_include, + ACTIONS(1129), 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(1131), 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, + [86199] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2493), 1, + sym__terminator, + STATE(1695), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + STATE(1698), 2, + sym_comment, + sym_include, + ACTIONS(1129), 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(1131), 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, + [86245] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1133), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2495), 1, + sym__terminator, + STATE(1695), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1783), 1, + sym_output_stream_tuning, + STATE(1699), 2, sym_comment, sym_include, - ACTIONS(958), 4, + ACTIONS(1129), 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(960), 12, + ACTIONS(1131), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -121372,3458 +117487,3586 @@ 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, - [89530] = 17, + [86291] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, + ACTIONS(1318), 1, aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, + ACTIONS(1340), 1, aux_sym_property_tuning_token1, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2503), 1, + ACTIONS(2499), 1, aux_sym_variable_definition_token2, - STATE(1835), 1, + STATE(1810), 1, aux_sym_property_definition_repeat2, STATE(1857), 1, sym_property_tuning, - STATE(1894), 1, + STATE(1912), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, - ACTIONS(2351), 2, + ACTIONS(2346), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1719), 2, + STATE(1700), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, + sym_getter, + sym_setter, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2497), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [86351] = 17, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1318), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1340), 1, + aux_sym_property_tuning_token1, + ACTIONS(2350), 1, + aux_sym_getter_token1, + ACTIONS(2352), 1, + aux_sym_setter_token1, + ACTIONS(2370), 1, + aux_sym_variable_definition_token2, + STATE(1676), 1, + aux_sym_property_definition_repeat2, + STATE(1857), 1, + sym_property_tuning, + STATE(1879), 1, + aux_sym_property_definition_repeat3, + STATE(3501), 1, + sym_access_tuning, + ACTIONS(2346), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1701), 2, + sym_comment, + sym_include, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2501), 4, + ACTIONS(2368), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [89590] = 17, + [86411] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, + ACTIONS(1318), 1, aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, + ACTIONS(1340), 1, aux_sym_property_tuning_token1, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2507), 1, + ACTIONS(2499), 1, aux_sym_variable_definition_token2, - STATE(1835), 1, + STATE(1684), 1, aux_sym_property_definition_repeat2, STATE(1857), 1, sym_property_tuning, - STATE(1893), 1, + STATE(1912), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, - ACTIONS(2351), 2, + ACTIONS(2346), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1720), 2, + STATE(1702), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2505), 4, + ACTIONS(2497), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [89650] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - sym__terminator, - ACTIONS(2517), 1, - aux_sym_input_stream_tuning_token9, - STATE(1798), 1, - sym_output_stream_tuning, - STATE(1721), 3, - sym_comment, - sym_include, - aux_sym_output_stream_statement_repeat1, - ACTIONS(2511), 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(2514), 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, - [89694] = 10, + [86471] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(962), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2520), 1, - sym__terminator, - STATE(1721), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - STATE(1722), 2, + ACTIONS(1326), 1, + aux_sym_variable_definition_token3, + ACTIONS(1328), 1, + aux_sym_variable_definition_token4, + ACTIONS(1330), 1, + aux_sym_buffer_definition_token1, + ACTIONS(1332), 1, + aux_sym_buffer_definition_token3, + ACTIONS(1334), 1, + aux_sym_query_definition_token1, + ACTIONS(2501), 1, + aux_sym_stream_definition_token1, + STATE(1818), 1, + aux_sym_variable_definition_repeat1, + STATE(1938), 1, + aux_sym_buffer_definition_repeat1, + STATE(1971), 1, + sym_serialization_tuning, + ACTIONS(1324), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1703), 2, sym_comment, sym_include, - ACTIONS(958), 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(960), 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, - [89740] = 10, + STATE(1877), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [86531] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(962), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2522), 1, - sym__terminator, - STATE(1721), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1798), 1, - sym_output_stream_tuning, - STATE(1723), 2, + ACTIONS(1318), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1340), 1, + aux_sym_property_tuning_token1, + ACTIONS(2350), 1, + aux_sym_getter_token1, + ACTIONS(2352), 1, + aux_sym_setter_token1, + ACTIONS(2380), 1, + aux_sym_variable_definition_token2, + STATE(1682), 1, + aux_sym_property_definition_repeat2, + STATE(1857), 1, + sym_property_tuning, + STATE(1905), 1, + aux_sym_property_definition_repeat3, + STATE(3501), 1, + sym_access_tuning, + ACTIONS(2346), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1704), 2, sym_comment, sym_include, - ACTIONS(958), 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(960), 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, - [89786] = 17, + STATE(2183), 2, + sym_getter, + sym_setter, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2378), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [86591] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, + ACTIONS(1318), 1, aux_sym_variable_tuning_token6, - ACTIONS(2355), 1, + ACTIONS(1340), 1, aux_sym_property_tuning_token1, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2526), 1, + ACTIONS(2505), 1, aux_sym_variable_definition_token2, - STATE(1714), 1, + STATE(1810), 1, aux_sym_property_definition_repeat2, STATE(1857), 1, sym_property_tuning, - STATE(1924), 1, + STATE(1908), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, - ACTIONS(2351), 2, + ACTIONS(2346), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1724), 2, + STATE(1705), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2524), 4, + ACTIONS(2503), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [89846] = 17, + [86651] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, + ACTIONS(1318), 1, aux_sym_variable_tuning_token6, - ACTIONS(2353), 1, - aux_sym_variable_definition_token2, - ACTIONS(2355), 1, + ACTIONS(1340), 1, aux_sym_property_tuning_token1, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - STATE(1707), 1, + ACTIONS(2509), 1, + aux_sym_variable_definition_token2, + STATE(1675), 1, aux_sym_property_definition_repeat2, STATE(1857), 1, sym_property_tuning, - STATE(1925), 1, + STATE(1878), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, - ACTIONS(2351), 2, + ACTIONS(2346), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1725), 2, + STATE(1706), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2349), 4, + ACTIONS(2507), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [89906] = 19, + [86711] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2528), 1, + ACTIONS(2511), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1737), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2034), 1, + STATE(1993), 1, aux_sym_for_phrase_repeat2, - STATE(2539), 1, + STATE(2509), 1, sym_on_error_phrase, - STATE(2837), 1, + STATE(2679), 1, sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3105), 1, - sym_on_stop_phrase, - STATE(3107), 1, + STATE(3027), 1, aux_sym_for_statement_repeat1, - STATE(1726), 2, + STATE(3032), 1, + sym_on_stop_phrase, + STATE(1707), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [89969] = 19, + [86774] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2403), 1, + ACTIONS(2376), 1, anon_sym_COLON, - STATE(1789), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2015), 1, + STATE(2034), 1, aux_sym_for_phrase_repeat2, - STATE(2634), 1, + STATE(2549), 1, sym_on_error_phrase, - STATE(2753), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3229), 1, + STATE(2831), 1, + sym_on_quit_phrase, + STATE(3336), 1, aux_sym_for_statement_repeat1, - STATE(3230), 1, + STATE(3337), 1, sym_on_stop_phrase, - STATE(1727), 2, + STATE(1708), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [90032] = 19, + [86837] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2530), 1, + ACTIONS(2382), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2109), 1, + STATE(1987), 1, aux_sym_for_phrase_repeat2, - STATE(2660), 1, + STATE(2648), 1, sym_on_error_phrase, - STATE(2727), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3282), 1, - sym_on_stop_phrase, - STATE(3283), 1, - aux_sym_for_statement_repeat1, - STATE(1728), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [90095] = 19, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2532), 1, - anon_sym_COLON, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, - sym_query_tuning, - STATE(2041), 1, - aux_sym_for_phrase_repeat2, - STATE(2605), 1, - sym_on_error_phrase, - STATE(2811), 1, + STATE(2724), 1, sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3202), 1, + STATE(3320), 1, sym_on_stop_phrase, - STATE(3203), 1, + STATE(3322), 1, aux_sym_for_statement_repeat1, - STATE(1729), 2, + STATE(1709), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [90158] = 16, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1379), 1, - aux_sym_variable_definition_token3, - ACTIONS(1381), 1, - aux_sym_variable_definition_token4, - ACTIONS(1383), 1, - aux_sym_buffer_definition_token1, - ACTIONS(1385), 1, - aux_sym_buffer_definition_token3, - ACTIONS(1387), 1, - aux_sym_query_definition_token1, - STATE(1825), 1, - aux_sym_variable_definition_repeat1, - STATE(1948), 1, - sym_serialization_tuning, - STATE(1983), 1, - aux_sym_buffer_definition_repeat1, - ACTIONS(1377), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1730), 2, - sym_comment, - sym_include, - STATE(1896), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [90215] = 19, + [86900] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2407), 1, + ACTIONS(2513), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2045), 1, + STATE(2067), 1, aux_sym_for_phrase_repeat2, - STATE(2614), 1, + STATE(2592), 1, sym_on_error_phrase, - STATE(2797), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3207), 1, + STATE(2705), 1, + sym_on_quit_phrase, + STATE(3105), 1, sym_on_stop_phrase, - STATE(3208), 1, + STATE(3106), 1, aux_sym_for_statement_repeat1, - STATE(1731), 2, + STATE(1710), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [90278] = 19, + [86963] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2347), 1, + ACTIONS(2384), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1723), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2003), 1, + STATE(2096), 1, aux_sym_for_phrase_repeat2, - STATE(2564), 1, + STATE(2664), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2877), 1, + STATE(2847), 1, sym_on_quit_phrase, - STATE(3141), 1, + STATE(3431), 1, aux_sym_for_statement_repeat1, - STATE(3142), 1, + STATE(3432), 1, sym_on_stop_phrase, - STATE(1732), 2, + STATE(1711), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [90341] = 19, + [87026] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2534), 1, + ACTIONS(2408), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2102), 1, + STATE(2075), 1, aux_sym_for_phrase_repeat2, - STATE(2627), 1, + STATE(2526), 1, sym_on_error_phrase, - STATE(2787), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3211), 1, + STATE(2770), 1, + sym_on_quit_phrase, + STATE(3231), 1, sym_on_stop_phrase, - STATE(3212), 1, + STATE(3232), 1, aux_sym_for_statement_repeat1, - STATE(1733), 2, + STATE(1712), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [90404] = 19, + [87089] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2536), 1, + ACTIONS(2515), 1, anon_sym_COLON, - STATE(1771), 1, + STATE(1710), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2112), 1, + STATE(2080), 1, aux_sym_for_phrase_repeat2, - STATE(2663), 1, + STATE(2582), 1, sym_on_error_phrase, - STATE(2729), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3279), 1, + STATE(2709), 1, + sym_on_quit_phrase, + STATE(3112), 1, sym_on_stop_phrase, - STATE(3280), 1, + STATE(3113), 1, aux_sym_for_statement_repeat1, - STATE(1734), 2, + STATE(1713), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [90467] = 19, + [87152] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2536), 1, + ACTIONS(2515), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2112), 1, + STATE(2080), 1, aux_sym_for_phrase_repeat2, - STATE(2663), 1, + STATE(2582), 1, sym_on_error_phrase, - STATE(2729), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3279), 1, + STATE(2709), 1, + sym_on_quit_phrase, + STATE(3112), 1, sym_on_stop_phrase, - STATE(3280), 1, + STATE(3113), 1, aux_sym_for_statement_repeat1, - STATE(1735), 2, + STATE(1714), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [90530] = 19, + [87215] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1771), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2042), 1, + STATE(2026), 1, aux_sym_for_phrase_repeat2, - STATE(2650), 1, + STATE(2496), 1, sym_on_error_phrase, - STATE(2692), 1, + STATE(2690), 1, sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3310), 1, + STATE(3114), 1, sym_on_stop_phrase, - STATE(3311), 1, + STATE(3116), 1, aux_sym_for_statement_repeat1, - STATE(1736), 2, + STATE(1715), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [90593] = 19, + [87278] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2423), 1, + ACTIONS(2396), 1, anon_sym_COLON, - STATE(1755), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2042), 1, + STATE(2026), 1, aux_sym_for_phrase_repeat2, - STATE(2650), 1, + STATE(2496), 1, sym_on_error_phrase, - STATE(2692), 1, + STATE(2690), 1, sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3310), 1, + STATE(3114), 1, sym_on_stop_phrase, - STATE(3311), 1, + STATE(3116), 1, aux_sym_for_statement_repeat1, - STATE(1737), 2, + STATE(1716), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [90656] = 19, + [87341] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2347), 1, + ACTIONS(2390), 1, anon_sym_COLON, - STATE(1767), 1, + STATE(1733), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2003), 1, + STATE(1997), 1, aux_sym_for_phrase_repeat2, - STATE(2564), 1, + STATE(2497), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2877), 1, + STATE(2817), 1, sym_on_quit_phrase, - STATE(3141), 1, - aux_sym_for_statement_repeat1, - STATE(3142), 1, + STATE(3312), 1, sym_on_stop_phrase, - STATE(1738), 2, + STATE(3313), 1, + aux_sym_for_statement_repeat1, + STATE(1717), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [90719] = 19, + [87404] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2385), 1, + ACTIONS(2517), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2077), 1, + STATE(1992), 1, aux_sym_for_phrase_repeat2, - STATE(2669), 1, + STATE(2501), 1, sym_on_error_phrase, - STATE(2701), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3254), 1, - aux_sym_for_statement_repeat1, - STATE(3255), 1, + STATE(2815), 1, + sym_on_quit_phrase, + STATE(3306), 1, sym_on_stop_phrase, - STATE(1739), 2, + STATE(3307), 1, + aux_sym_for_statement_repeat1, + STATE(1718), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [90782] = 19, + [87467] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2413), 1, + ACTIONS(2384), 1, anon_sym_COLON, - STATE(1777), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2004), 1, + STATE(2096), 1, aux_sym_for_phrase_repeat2, - STATE(2557), 1, + STATE(2664), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2876), 1, + STATE(2847), 1, sym_on_quit_phrase, - STATE(3124), 1, - sym_on_stop_phrase, - STATE(3125), 1, + STATE(3431), 1, aux_sym_for_statement_repeat1, - STATE(1740), 2, + STATE(3432), 1, + sym_on_stop_phrase, + STATE(1719), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [90845] = 19, + [87530] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2415), 1, + ACTIONS(2519), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2067), 1, + STATE(2081), 1, aux_sym_for_phrase_repeat2, - STATE(2632), 1, + STATE(2581), 1, sym_on_error_phrase, - STATE(2761), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3221), 1, + STATE(2711), 1, + sym_on_quit_phrase, + STATE(3117), 1, sym_on_stop_phrase, - STATE(3222), 1, + STATE(3118), 1, aux_sym_for_statement_repeat1, - STATE(1741), 2, + STATE(1720), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [90908] = 19, + [87593] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2538), 1, + ACTIONS(2521), 1, anon_sym_COLON, - STATE(1774), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2046), 1, + STATE(2093), 1, aux_sym_for_phrase_repeat2, - STATE(2640), 1, + STATE(2586), 1, sym_on_error_phrase, - STATE(2734), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3243), 1, + STATE(2857), 1, + sym_on_quit_phrase, + STATE(3424), 1, sym_on_stop_phrase, - STATE(3245), 1, + STATE(3426), 1, aux_sym_for_statement_repeat1, - STATE(1742), 2, + STATE(1721), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [90971] = 19, + [87656] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2538), 1, + ACTIONS(2521), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1726), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2046), 1, + STATE(2093), 1, aux_sym_for_phrase_repeat2, - STATE(2640), 1, + STATE(2586), 1, sym_on_error_phrase, - STATE(2734), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3243), 1, + STATE(2857), 1, + sym_on_quit_phrase, + STATE(3424), 1, sym_on_stop_phrase, - STATE(3245), 1, + STATE(3426), 1, aux_sym_for_statement_repeat1, - STATE(1743), 2, + STATE(1722), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91034] = 19, + [87719] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2417), 1, + ACTIONS(2406), 1, anon_sym_COLON, - STATE(1735), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2095), 1, + STATE(2091), 1, aux_sym_for_phrase_repeat2, - STATE(2659), 1, + STATE(2572), 1, sym_on_error_phrase, - STATE(2720), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3287), 1, + STATE(2869), 1, + sym_on_quit_phrase, + STATE(3420), 1, sym_on_stop_phrase, - STATE(3288), 1, + STATE(3421), 1, aux_sym_for_statement_repeat1, - STATE(1744), 2, + STATE(1723), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91097] = 19, + [87782] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2409), 1, + ACTIONS(2406), 1, anon_sym_COLON, - STATE(1743), 1, + STATE(1727), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2064), 1, + STATE(2091), 1, aux_sym_for_phrase_repeat2, - STATE(2513), 1, + STATE(2572), 1, sym_on_error_phrase, STATE(2696), 1, - sym_on_quit_phrase, - STATE(2851), 1, sym_sort_clause, - STATE(3297), 1, + STATE(2869), 1, + sym_on_quit_phrase, + STATE(3420), 1, sym_on_stop_phrase, - STATE(3298), 1, + STATE(3421), 1, aux_sym_for_statement_repeat1, - STATE(1745), 2, + STATE(1724), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91160] = 19, + [87845] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2417), 1, + ACTIONS(2402), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1714), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2095), 1, + STATE(2084), 1, aux_sym_for_phrase_repeat2, - STATE(2659), 1, + STATE(2580), 1, sym_on_error_phrase, - STATE(2720), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3287), 1, + STATE(2713), 1, + sym_on_quit_phrase, + STATE(3120), 1, sym_on_stop_phrase, - STATE(3288), 1, + STATE(3121), 1, aux_sym_for_statement_repeat1, - STATE(1746), 2, + STATE(1725), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91223] = 19, + [87908] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2415), 1, + ACTIONS(2523), 1, anon_sym_COLON, - STATE(1772), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2067), 1, + STATE(2088), 1, aux_sym_for_phrase_repeat2, - STATE(2632), 1, + STATE(2571), 1, sym_on_error_phrase, - STATE(2761), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3221), 1, + STATE(2867), 1, + sym_on_quit_phrase, + STATE(3416), 1, sym_on_stop_phrase, - STATE(3222), 1, + STATE(3418), 1, aux_sym_for_statement_repeat1, - STATE(1747), 2, + STATE(1726), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91286] = 19, + [87971] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2540), 1, + ACTIONS(2525), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2074), 1, + STATE(2087), 1, aux_sym_for_phrase_repeat2, - STATE(2612), 1, + STATE(2570), 1, sym_on_error_phrase, - STATE(2808), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3414), 1, + STATE(2866), 1, + sym_on_quit_phrase, + STATE(3406), 1, sym_on_stop_phrase, - STATE(3415), 1, + STATE(3408), 1, aux_sym_for_statement_repeat1, - STATE(1748), 2, + STATE(1727), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91349] = 19, + [88034] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2395), 1, + ACTIONS(2525), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1729), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2013), 1, + STATE(2087), 1, aux_sym_for_phrase_repeat2, - STATE(2644), 1, + STATE(2570), 1, sym_on_error_phrase, - STATE(2712), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3326), 1, - aux_sym_for_statement_repeat1, - STATE(3328), 1, + STATE(2866), 1, + sym_on_quit_phrase, + STATE(3406), 1, sym_on_stop_phrase, - STATE(1749), 2, + STATE(3408), 1, + aux_sym_for_statement_repeat1, + STATE(1728), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91412] = 19, + [88097] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2542), 1, + ACTIONS(2527), 1, anon_sym_COLON, - STATE(1748), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2061), 1, + STATE(2085), 1, aux_sym_for_phrase_repeat2, - STATE(2606), 1, + STATE(2560), 1, sym_on_error_phrase, - STATE(2814), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3421), 1, + STATE(2862), 1, + sym_on_quit_phrase, + STATE(3397), 1, sym_on_stop_phrase, - STATE(3422), 1, + STATE(3398), 1, aux_sym_for_statement_repeat1, - STATE(1750), 2, + STATE(1729), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91475] = 19, + [88160] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2542), 1, + ACTIONS(2408), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1756), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2061), 1, + STATE(2075), 1, aux_sym_for_phrase_repeat2, - STATE(2606), 1, + STATE(2526), 1, sym_on_error_phrase, - STATE(2814), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3421), 1, + STATE(2770), 1, + sym_on_quit_phrase, + STATE(3231), 1, sym_on_stop_phrase, - STATE(3422), 1, + STATE(3232), 1, aux_sym_for_statement_repeat1, - STATE(1751), 2, + STATE(1730), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91538] = 19, + [88223] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2544), 1, + ACTIONS(2402), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2053), 1, + STATE(2084), 1, aux_sym_for_phrase_repeat2, - STATE(2604), 1, + STATE(2580), 1, sym_on_error_phrase, - STATE(2816), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3427), 1, + STATE(2713), 1, + sym_on_quit_phrase, + STATE(3120), 1, sym_on_stop_phrase, - STATE(3428), 1, + STATE(3121), 1, aux_sym_for_statement_repeat1, - STATE(1752), 2, + STATE(1731), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91601] = 19, + [88286] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2383), 1, + ACTIONS(2529), 1, anon_sym_COLON, - STATE(1796), 1, + STATE(1720), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2018), 1, + STATE(2086), 1, aux_sym_for_phrase_repeat2, - STATE(2554), 1, + STATE(2578), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2881), 1, + STATE(2714), 1, sym_on_quit_phrase, - STATE(3121), 1, - aux_sym_for_statement_repeat1, - STATE(3122), 1, + STATE(3126), 1, sym_on_stop_phrase, - STATE(1753), 2, + STATE(3127), 1, + aux_sym_for_statement_repeat1, + STATE(1732), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91664] = 19, + [88349] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2546), 1, + ACTIONS(2531), 1, anon_sym_COLON, - STATE(1728), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2086), 1, + STATE(1989), 1, aux_sym_for_phrase_repeat2, - STATE(2658), 1, + STATE(2502), 1, sym_on_error_phrase, - STATE(2710), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3294), 1, + STATE(2814), 1, + sym_on_quit_phrase, + STATE(3304), 1, sym_on_stop_phrase, - STATE(3295), 1, + STATE(3305), 1, aux_sym_for_statement_repeat1, - STATE(1754), 2, + STATE(1733), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91727] = 19, + [88412] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2546), 1, + ACTIONS(2529), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, STATE(2086), 1, aux_sym_for_phrase_repeat2, - STATE(2658), 1, + STATE(2578), 1, sym_on_error_phrase, - STATE(2710), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3294), 1, + STATE(2714), 1, + sym_on_quit_phrase, + STATE(3126), 1, sym_on_stop_phrase, - STATE(3295), 1, + STATE(3127), 1, aux_sym_for_statement_repeat1, - STATE(1755), 2, + STATE(1734), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91790] = 19, + [88475] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2383), 1, + ACTIONS(2404), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1757), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2018), 1, + STATE(2050), 1, aux_sym_for_phrase_repeat2, - STATE(2554), 1, + STATE(2623), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2881), 1, + STATE(2722), 1, sym_on_quit_phrase, - STATE(3121), 1, + STATE(3268), 1, aux_sym_for_statement_repeat1, - STATE(3122), 1, + STATE(3269), 1, sym_on_stop_phrase, - STATE(1756), 2, + STATE(1735), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91853] = 19, + [88538] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2379), 1, + ACTIONS(2342), 1, anon_sym_COLON, - STATE(1746), 1, + STATE(1761), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2059), 1, + STATE(2079), 1, aux_sym_for_phrase_repeat2, - STATE(2651), 1, + STATE(2529), 1, sym_on_error_phrase, - STATE(2728), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3301), 1, + STATE(2766), 1, + sym_on_quit_phrase, + STATE(3227), 1, aux_sym_for_statement_repeat1, - STATE(3303), 1, + STATE(3228), 1, sym_on_stop_phrase, - STATE(1757), 2, + STATE(1736), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91916] = 19, + [88601] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2385), 1, + ACTIONS(2533), 1, anon_sym_COLON, - STATE(1741), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2077), 1, + STATE(2054), 1, aux_sym_for_phrase_repeat2, - STATE(2669), 1, + STATE(2610), 1, sym_on_error_phrase, - STATE(2701), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3254), 1, - aux_sym_for_statement_repeat1, - STATE(3255), 1, + STATE(2792), 1, + sym_on_quit_phrase, + STATE(3467), 1, sym_on_stop_phrase, - STATE(1758), 2, + STATE(3468), 1, + aux_sym_for_statement_repeat1, + STATE(1737), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [91979] = 19, + [88664] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2409), 1, + ACTIONS(2356), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2064), 1, + STATE(1988), 1, aux_sym_for_phrase_repeat2, - STATE(2513), 1, + STATE(2576), 1, sym_on_error_phrase, STATE(2696), 1, - sym_on_quit_phrase, - STATE(2851), 1, sym_sort_clause, - STATE(3297), 1, - sym_on_stop_phrase, - STATE(3298), 1, + STATE(2717), 1, + sym_on_quit_phrase, + STATE(3131), 1, aux_sym_for_statement_repeat1, - STATE(1759), 2, + STATE(3135), 1, + sym_on_stop_phrase, + STATE(1738), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92042] = 19, + [88727] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2381), 1, + ACTIONS(2404), 1, anon_sym_COLON, - STATE(1766), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2069), 1, + STATE(2050), 1, aux_sym_for_phrase_repeat2, - STATE(2579), 1, + STATE(2623), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2862), 1, + STATE(2722), 1, sym_on_quit_phrase, - STATE(3475), 1, + STATE(3268), 1, aux_sym_for_statement_repeat1, - STATE(3477), 1, + STATE(3269), 1, sym_on_stop_phrase, - STATE(1760), 2, + STATE(1739), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92105] = 19, + [88790] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2411), 1, + ACTIONS(2531), 1, anon_sym_COLON, - STATE(1751), 1, + STATE(1772), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2048), 1, + STATE(1989), 1, aux_sym_for_phrase_repeat2, - STATE(2602), 1, + STATE(2502), 1, sym_on_error_phrase, - STATE(2818), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3432), 1, + STATE(2814), 1, + sym_on_quit_phrase, + STATE(3304), 1, sym_on_stop_phrase, - STATE(3433), 1, + STATE(3305), 1, aux_sym_for_statement_repeat1, - STATE(1761), 2, + STATE(1740), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92168] = 19, + [88853] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2411), 1, + ACTIONS(2356), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1731), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2048), 1, + STATE(1988), 1, aux_sym_for_phrase_repeat2, - STATE(2602), 1, + STATE(2576), 1, sym_on_error_phrase, - STATE(2818), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3432), 1, - sym_on_stop_phrase, - STATE(3433), 1, + STATE(2717), 1, + sym_on_quit_phrase, + STATE(3131), 1, aux_sym_for_statement_repeat1, - STATE(1762), 2, + STATE(3135), 1, + sym_on_stop_phrase, + STATE(1741), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92231] = 19, + [88916] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2425), 1, + ACTIONS(2390), 1, anon_sym_COLON, - STATE(1770), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2054), 1, + STATE(1997), 1, aux_sym_for_phrase_repeat2, - STATE(2552), 1, + STATE(2497), 1, sym_on_error_phrase, - STATE(2828), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3456), 1, + STATE(2817), 1, + sym_on_quit_phrase, + STATE(3312), 1, sym_on_stop_phrase, - STATE(3457), 1, + STATE(3313), 1, aux_sym_for_statement_repeat1, - STATE(1763), 2, + STATE(1742), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92294] = 19, + [88979] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2548), 1, + ACTIONS(2358), 1, anon_sym_COLON, - STATE(1752), 1, + STATE(1751), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2033), 1, + STATE(2077), 1, aux_sym_for_phrase_repeat2, - STATE(2600), 1, + STATE(2608), 1, sym_on_error_phrase, - STATE(2822), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3440), 1, - sym_on_stop_phrase, - STATE(3441), 1, + STATE(2804), 1, + sym_on_quit_phrase, + STATE(3450), 1, aux_sym_for_statement_repeat1, - STATE(1764), 2, + STATE(3451), 1, + sym_on_stop_phrase, + STATE(1743), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92357] = 19, + [89042] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2371), 1, + ACTIONS(2394), 1, anon_sym_COLON, - STATE(1759), 1, + STATE(1734), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2082), 1, + STATE(2078), 1, aux_sym_for_phrase_repeat2, - STATE(2560), 1, + STATE(2575), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2880), 1, + STATE(2720), 1, sym_on_quit_phrase, - STATE(3495), 1, - aux_sym_for_statement_repeat1, - STATE(3496), 1, + STATE(3141), 1, sym_on_stop_phrase, - STATE(1765), 2, + STATE(3142), 1, + aux_sym_for_statement_repeat1, + STATE(1744), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92420] = 19, + [89105] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2425), 1, + ACTIONS(2376), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1762), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2054), 1, + STATE(2034), 1, aux_sym_for_phrase_repeat2, - STATE(2552), 1, + STATE(2549), 1, sym_on_error_phrase, - STATE(2828), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3456), 1, - sym_on_stop_phrase, - STATE(3457), 1, + STATE(2831), 1, + sym_on_quit_phrase, + STATE(3336), 1, aux_sym_for_statement_repeat1, - STATE(1766), 2, + STATE(3337), 1, + sym_on_stop_phrase, + STATE(1745), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92483] = 19, + [89168] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2413), 1, + ACTIONS(2400), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1721), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2004), 1, + STATE(2097), 1, aux_sym_for_phrase_repeat2, - STATE(2557), 1, + STATE(2603), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2876), 1, + STATE(2836), 1, sym_on_quit_phrase, - STATE(3124), 1, + STATE(3438), 1, sym_on_stop_phrase, - STATE(3125), 1, + STATE(3440), 1, aux_sym_for_statement_repeat1, - STATE(1767), 2, + STATE(1746), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92546] = 19, + [89231] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2369), 1, + ACTIONS(2342), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2099), 1, + STATE(2079), 1, aux_sym_for_phrase_repeat2, - STATE(2628), 1, + STATE(2529), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3215), 1, + STATE(2766), 1, + sym_on_quit_phrase, + STATE(3227), 1, aux_sym_for_statement_repeat1, - STATE(3216), 1, + STATE(3228), 1, sym_on_stop_phrase, - STATE(1768), 2, + STATE(1747), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92609] = 19, + [89294] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2550), 1, + ACTIONS(2354), 1, anon_sym_COLON, - STATE(1773), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2019), 1, + STATE(1998), 1, aux_sym_for_phrase_repeat2, - STATE(2588), 1, + STATE(2513), 1, sym_on_error_phrase, - STATE(2831), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3174), 1, - sym_on_stop_phrase, - STATE(3176), 1, + STATE(2778), 1, + sym_on_quit_phrase, + STATE(3249), 1, aux_sym_for_statement_repeat1, - STATE(1769), 2, + STATE(3250), 1, + sym_on_stop_phrase, + STATE(1748), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92672] = 19, + [89357] = 16, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + aux_sym_variable_definition_token3, + ACTIONS(1328), 1, + aux_sym_variable_definition_token4, + ACTIONS(1330), 1, + aux_sym_buffer_definition_token1, + ACTIONS(1332), 1, + aux_sym_buffer_definition_token3, + ACTIONS(1334), 1, + aux_sym_query_definition_token1, + STATE(1818), 1, + aux_sym_variable_definition_repeat1, + STATE(1938), 1, + aux_sym_buffer_definition_repeat1, + STATE(1971), 1, + sym_serialization_tuning, + ACTIONS(1324), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1749), 2, + sym_comment, + sym_include, + STATE(1877), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [89414] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2548), 1, + ACTIONS(2535), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1718), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2033), 1, + STATE(2065), 1, aux_sym_for_phrase_repeat2, - STATE(2600), 1, + STATE(2541), 1, sym_on_error_phrase, - STATE(2822), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3440), 1, + STATE(2818), 1, + sym_on_quit_phrase, + STATE(3314), 1, sym_on_stop_phrase, - STATE(3441), 1, + STATE(3315), 1, aux_sym_for_statement_repeat1, - STATE(1770), 2, + STATE(1750), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92735] = 19, + [89477] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2552), 1, + ACTIONS(2400), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2101), 1, + STATE(2097), 1, aux_sym_for_phrase_repeat2, - STATE(2666), 1, + STATE(2603), 1, sym_on_error_phrase, - STATE(2690), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3274), 1, + STATE(2836), 1, + sym_on_quit_phrase, + STATE(3438), 1, sym_on_stop_phrase, - STATE(3275), 1, + STATE(3440), 1, aux_sym_for_statement_repeat1, - STATE(1771), 2, + STATE(1751), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92798] = 19, + [89540] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2550), 1, + ACTIONS(2358), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2019), 1, + STATE(2077), 1, aux_sym_for_phrase_repeat2, - STATE(2588), 1, + STATE(2608), 1, sym_on_error_phrase, - STATE(2831), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3174), 1, - sym_on_stop_phrase, - STATE(3176), 1, + STATE(2804), 1, + sym_on_quit_phrase, + STATE(3450), 1, aux_sym_for_statement_repeat1, - STATE(1772), 2, + STATE(3451), 1, + sym_on_stop_phrase, + STATE(1752), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92861] = 19, + [89603] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2554), 1, + ACTIONS(2394), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2089), 1, + STATE(2078), 1, aux_sym_for_phrase_repeat2, - STATE(2563), 1, + STATE(2575), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2883), 1, + STATE(2720), 1, sym_on_quit_phrase, - STATE(3131), 1, + STATE(3141), 1, sym_on_stop_phrase, - STATE(3135), 1, + STATE(3142), 1, aux_sym_for_statement_repeat1, - STATE(1773), 2, + STATE(1753), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92924] = 19, + [89666] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2556), 1, + ACTIONS(2537), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2044), 1, + STATE(2073), 1, aux_sym_for_phrase_repeat2, - STATE(2607), 1, + STATE(2600), 1, sym_on_error_phrase, - STATE(2807), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3204), 1, - aux_sym_for_statement_repeat1, - STATE(3217), 1, + STATE(2699), 1, + sym_on_quit_phrase, + STATE(3074), 1, sym_on_stop_phrase, - STATE(1774), 2, + STATE(3160), 1, + aux_sym_for_statement_repeat1, + STATE(1754), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [92987] = 19, + [89729] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2395), 1, + ACTIONS(2539), 1, anon_sym_COLON, - STATE(1736), 1, + STATE(1754), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2013), 1, + STATE(2039), 1, aux_sym_for_phrase_repeat2, - STATE(2644), 1, + STATE(2607), 1, sym_on_error_phrase, - STATE(2712), 1, + STATE(2695), 1, sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3326), 1, - aux_sym_for_statement_repeat1, - STATE(3328), 1, + STATE(3043), 1, sym_on_stop_phrase, - STATE(1775), 2, + STATE(3161), 1, + aux_sym_for_statement_repeat1, + STATE(1755), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93050] = 19, + [89792] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2558), 1, + ACTIONS(2541), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2055), 1, + STATE(2059), 1, aux_sym_for_phrase_repeat2, - STATE(2532), 1, + STATE(2530), 1, sym_on_error_phrase, - STATE(2809), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3099), 1, + STATE(2763), 1, + sym_on_quit_phrase, + STATE(3220), 1, sym_on_stop_phrase, - STATE(3100), 1, + STATE(3222), 1, aux_sym_for_statement_repeat1, - STATE(1776), 2, + STATE(1756), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93113] = 19, + [89855] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2560), 1, + ACTIONS(2539), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2036), 1, + STATE(2039), 1, aux_sym_for_phrase_repeat2, - STATE(2542), 1, + STATE(2607), 1, sym_on_error_phrase, - STATE(2849), 1, + STATE(2695), 1, sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3115), 1, + STATE(3043), 1, sym_on_stop_phrase, - STATE(3116), 1, + STATE(3161), 1, aux_sym_for_statement_repeat1, - STATE(1777), 2, + STATE(1757), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93176] = 19, + [89918] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2407), 1, + ACTIONS(2541), 1, anon_sym_COLON, - STATE(1784), 1, + STATE(1769), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2045), 1, + STATE(2059), 1, aux_sym_for_phrase_repeat2, - STATE(2614), 1, + STATE(2530), 1, sym_on_error_phrase, - STATE(2797), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3207), 1, + STATE(2763), 1, + sym_on_quit_phrase, + STATE(3220), 1, sym_on_stop_phrase, - STATE(3208), 1, + STATE(3222), 1, aux_sym_for_statement_repeat1, - STATE(1778), 2, + STATE(1758), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93239] = 19, + [89981] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2560), 1, + ACTIONS(2382), 1, anon_sym_COLON, - STATE(1788), 1, + STATE(1716), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2036), 1, + STATE(1987), 1, aux_sym_for_phrase_repeat2, - STATE(2542), 1, + STATE(2648), 1, sym_on_error_phrase, - STATE(2849), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3115), 1, + STATE(2724), 1, + sym_on_quit_phrase, + STATE(3320), 1, sym_on_stop_phrase, - STATE(3116), 1, + STATE(3322), 1, aux_sym_for_statement_repeat1, - STATE(1779), 2, + STATE(1759), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93302] = 19, + [90044] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2403), 1, + ACTIONS(2354), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1712), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2015), 1, + STATE(1998), 1, aux_sym_for_phrase_repeat2, - STATE(2634), 1, + STATE(2513), 1, sym_on_error_phrase, - STATE(2753), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3229), 1, + STATE(2778), 1, + sym_on_quit_phrase, + STATE(3249), 1, aux_sym_for_statement_repeat1, - STATE(3230), 1, + STATE(3250), 1, sym_on_stop_phrase, - STATE(1780), 2, + STATE(1760), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93365] = 19, + [90107] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2371), 1, + ACTIONS(2398), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2082), 1, + STATE(2048), 1, aux_sym_for_phrase_repeat2, - STATE(2560), 1, + STATE(2531), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2880), 1, + STATE(2761), 1, sym_on_quit_phrase, - STATE(3495), 1, - aux_sym_for_statement_repeat1, - STATE(3496), 1, + STATE(3216), 1, sym_on_stop_phrase, - STATE(1781), 2, + STATE(3217), 1, + aux_sym_for_statement_repeat1, + STATE(1761), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93428] = 19, + [90170] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2528), 1, + ACTIONS(2388), 1, anon_sym_COLON, - STATE(1776), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2034), 1, + STATE(2017), 1, aux_sym_for_phrase_repeat2, - STATE(2539), 1, + STATE(2544), 1, sym_on_error_phrase, - STATE(2837), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3105), 1, + STATE(2825), 1, + sym_on_quit_phrase, + STATE(3324), 1, sym_on_stop_phrase, - STATE(3107), 1, + STATE(3325), 1, aux_sym_for_statement_repeat1, - STATE(1782), 2, + STATE(1762), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93491] = 19, + [90233] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2379), 1, + ACTIONS(2388), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1768), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2059), 1, + STATE(2017), 1, aux_sym_for_phrase_repeat2, - STATE(2651), 1, + STATE(2544), 1, sym_on_error_phrase, - STATE(2728), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3301), 1, - aux_sym_for_statement_repeat1, - STATE(3303), 1, + STATE(2825), 1, + sym_on_quit_phrase, + STATE(3324), 1, sym_on_stop_phrase, - STATE(1783), 2, + STATE(3325), 1, + aux_sym_for_statement_repeat1, + STATE(1763), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93554] = 19, + [90296] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2562), 1, + ACTIONS(2336), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1739), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2032), 1, + STATE(2020), 1, aux_sym_for_phrase_repeat2, - STATE(2603), 1, + STATE(2631), 1, sym_on_error_phrase, - STATE(2813), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3200), 1, - sym_on_stop_phrase, - STATE(3201), 1, + STATE(2702), 1, + sym_on_quit_phrase, + STATE(3138), 1, aux_sym_for_statement_repeat1, - STATE(1784), 2, + STATE(3140), 1, + sym_on_stop_phrase, + STATE(1764), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93617] = 19, + [90359] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2562), 1, + ACTIONS(2374), 1, anon_sym_COLON, - STATE(1793), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2032), 1, + STATE(2063), 1, aux_sym_for_phrase_repeat2, - STATE(2603), 1, + STATE(2565), 1, sym_on_error_phrase, - STATE(2813), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3200), 1, - sym_on_stop_phrase, - STATE(3201), 1, + STATE(2727), 1, + sym_on_quit_phrase, + STATE(3157), 1, aux_sym_for_statement_repeat1, - STATE(1785), 2, + STATE(3158), 1, + sym_on_stop_phrase, + STATE(1765), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93680] = 19, + [90422] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2534), 1, + ACTIONS(2398), 1, anon_sym_COLON, - STATE(1729), 1, + STATE(1773), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2102), 1, + STATE(2048), 1, aux_sym_for_phrase_repeat2, - STATE(2627), 1, + STATE(2531), 1, sym_on_error_phrase, - STATE(2787), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3211), 1, + STATE(2761), 1, + sym_on_quit_phrase, + STATE(3216), 1, sym_on_stop_phrase, - STATE(3212), 1, + STATE(3217), 1, aux_sym_for_statement_repeat1, - STATE(1786), 2, + STATE(1766), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93743] = 19, + [90485] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2369), 1, + ACTIONS(2366), 1, anon_sym_COLON, - STATE(1731), 1, + STATE(1742), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2099), 1, + STATE(2006), 1, aux_sym_for_phrase_repeat2, - STATE(2628), 1, + STATE(2543), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3215), 1, + STATE(2821), 1, + sym_on_quit_phrase, + STATE(3319), 1, aux_sym_for_statement_repeat1, - STATE(3216), 1, + STATE(3321), 1, sym_on_stop_phrase, - STATE(1787), 2, + STATE(1767), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93806] = 19, + [90548] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2564), 1, + ACTIONS(2535), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2021), 1, + STATE(2065), 1, aux_sym_for_phrase_repeat2, - STATE(2540), 1, + STATE(2541), 1, sym_on_error_phrase, - STATE(2843), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3109), 1, + STATE(2818), 1, + sym_on_quit_phrase, + STATE(3314), 1, sym_on_stop_phrase, - STATE(3110), 1, + STATE(3315), 1, aux_sym_for_statement_repeat1, - STATE(1788), 2, + STATE(1768), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93869] = 19, + [90611] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2419), 1, + ACTIONS(2543), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2091), 1, + STATE(2038), 1, aux_sym_for_phrase_repeat2, - STATE(2630), 1, + STATE(2532), 1, sym_on_error_phrase, - STATE(2773), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3218), 1, + STATE(2758), 1, + sym_on_quit_phrase, + STATE(3212), 1, sym_on_stop_phrase, - STATE(3219), 1, + STATE(3213), 1, aux_sym_for_statement_repeat1, - STATE(1789), 2, + STATE(1769), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93932] = 19, + [90674] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2381), 1, + ACTIONS(2374), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1753), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2069), 1, + STATE(2063), 1, aux_sym_for_phrase_repeat2, - STATE(2579), 1, + STATE(2565), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2862), 1, + STATE(2727), 1, sym_on_quit_phrase, - STATE(3475), 1, + STATE(3157), 1, aux_sym_for_statement_repeat1, - STATE(3477), 1, + STATE(3158), 1, sym_on_stop_phrase, - STATE(1790), 2, + STATE(1770), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [93995] = 19, + [90737] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2377), 1, + ACTIONS(2511), 1, anon_sym_COLON, - STATE(1762), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2023), 1, + STATE(1993), 1, aux_sym_for_phrase_repeat2, - STATE(2595), 1, + STATE(2509), 1, sym_on_error_phrase, - STATE(2825), 1, + STATE(2679), 1, sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3447), 1, + STATE(3027), 1, aux_sym_for_statement_repeat1, - STATE(3449), 1, + STATE(3032), 1, sym_on_stop_phrase, - STATE(1791), 2, + STATE(1771), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [94058] = 19, + [90800] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2419), 1, + ACTIONS(2545), 1, anon_sym_COLON, - STATE(1733), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2091), 1, + STATE(2033), 1, aux_sym_for_phrase_repeat2, - STATE(2630), 1, + STATE(2504), 1, sym_on_error_phrase, - STATE(2773), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3218), 1, + STATE(2811), 1, + sym_on_quit_phrase, + STATE(3298), 1, sym_on_stop_phrase, - STATE(3219), 1, + STATE(3299), 1, aux_sym_for_statement_repeat1, - STATE(1792), 2, + STATE(1772), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [94121] = 19, + [90863] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2566), 1, + ACTIONS(2547), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2011), 1, + STATE(2028), 1, aux_sym_for_phrase_repeat2, - STATE(2599), 1, + STATE(2534), 1, sym_on_error_phrase, - STATE(2817), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3193), 1, + STATE(2757), 1, + sym_on_quit_phrase, + STATE(3208), 1, sym_on_stop_phrase, - STATE(3194), 1, + STATE(3210), 1, aux_sym_for_statement_repeat1, - STATE(1793), 2, + STATE(1773), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [94184] = 19, + [90926] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2405), 1, + ACTIONS(2547), 1, anon_sym_COLON, - STATE(1726), 1, + STATE(1776), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2007), 1, + STATE(2028), 1, aux_sym_for_phrase_repeat2, - STATE(2541), 1, + STATE(2534), 1, sym_on_error_phrase, - STATE(2848), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3111), 1, + STATE(2757), 1, + sym_on_quit_phrase, + STATE(3208), 1, sym_on_stop_phrase, - STATE(3112), 1, + STATE(3210), 1, aux_sym_for_statement_repeat1, - STATE(1794), 2, + STATE(1774), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [94247] = 19, + [90989] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2377), 1, + ACTIONS(2366), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2023), 1, + STATE(2006), 1, aux_sym_for_phrase_repeat2, - STATE(2595), 1, + STATE(2543), 1, sym_on_error_phrase, - STATE(2825), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3447), 1, + STATE(2821), 1, + sym_on_quit_phrase, + STATE(3319), 1, aux_sym_for_statement_repeat1, - STATE(3449), 1, + STATE(3321), 1, sym_on_stop_phrase, - STATE(1795), 2, + STATE(1775), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [94310] = 19, + [91052] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2405), 1, + ACTIONS(2549), 1, anon_sym_COLON, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2007), 1, + STATE(2023), 1, aux_sym_for_phrase_repeat2, - STATE(2541), 1, + STATE(2589), 1, sym_on_error_phrase, - STATE(2848), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3111), 1, + STATE(2754), 1, + sym_on_quit_phrase, + STATE(3202), 1, sym_on_stop_phrase, - STATE(3112), 1, + STATE(3203), 1, aux_sym_for_statement_repeat1, - STATE(1796), 2, + STATE(1776), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [94373] = 17, + [91115] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2145), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - STATE(1930), 1, + ACTIONS(2336), 1, + anon_sym_COLON, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2157), 1, + STATE(2020), 1, aux_sym_for_phrase_repeat2, - STATE(2851), 1, - sym_sort_clause, - STATE(2868), 1, + STATE(2631), 1, sym_on_error_phrase, - STATE(2903), 1, + STATE(2696), 1, + sym_sort_clause, + STATE(2702), 1, sym_on_quit_phrase, - STATE(3778), 1, + STATE(3138), 1, + aux_sym_for_statement_repeat1, + STATE(3140), 1, sym_on_stop_phrase, - ACTIONS(2459), 2, + STATE(1777), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [91178] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(1778), 2, + sym_comment, + sym_include, + ACTIONS(129), 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, - STATE(1797), 2, + aux_sym_property_type_token1, + aux_sym_property_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + aux_sym_on_error_phrase_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [91212] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1779), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(2551), 16, + sym__terminator, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [94431] = 5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + [91250] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1798), 2, + STATE(1780), 2, + sym_comment, + sym_include, + ACTIONS(125), 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_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + aux_sym_on_error_phrase_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [91284] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(1781), 2, + sym_comment, + sym_include, + ACTIONS(189), 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_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + aux_sym_on_error_phrase_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [91318] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(1782), 2, + sym_comment, + sym_include, + ACTIONS(217), 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_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + aux_sym_on_error_phrase_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [91352] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(1783), 2, sym_comment, sym_include, - ACTIONS(2568), 18, + ACTIONS(2553), 18, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -124842,212 +121085,292 @@ 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, - [94465] = 17, + [91386] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - STATE(1802), 1, + STATE(1792), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2157), 1, + STATE(2103), 1, aux_sym_for_phrase_repeat2, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2868), 1, + STATE(2783), 1, sym_on_error_phrase, - STATE(2903), 1, + STATE(2904), 1, sym_on_quit_phrase, - STATE(3778), 1, + STATE(3580), 1, sym_on_stop_phrase, - ACTIONS(2459), 2, + ACTIONS(2392), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1799), 2, + STATE(1784), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [94523] = 17, + [91444] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(1785), 2, + sym_comment, + sym_include, + ACTIONS(133), 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_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + aux_sym_on_error_phrase_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [91478] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2142), 1, + STATE(2103), 1, + aux_sym_for_phrase_repeat2, + STATE(2696), 1, + sym_sort_clause, + STATE(2783), 1, + sym_on_error_phrase, + STATE(2904), 1, + sym_on_quit_phrase, + STATE(3580), 1, + sym_on_stop_phrase, + ACTIONS(2392), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1786), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [91536] = 17, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + STATE(1790), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2144), 1, aux_sym_for_phrase_repeat2, - STATE(2716), 1, + STATE(2689), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3001), 1, + STATE(2978), 1, + sym_on_quit_phrase, + STATE(3593), 1, + sym_on_stop_phrase, + ACTIONS(2440), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1787), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [91594] = 17, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + STATE(1789), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2173), 1, + aux_sym_for_phrase_repeat2, + STATE(2696), 1, + sym_sort_clause, + STATE(2736), 1, + sym_on_error_phrase, + STATE(2952), 1, sym_on_quit_phrase, - STATE(3530), 1, + STATE(3841), 1, sym_on_stop_phrase, - ACTIONS(2570), 2, + ACTIONS(2555), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1800), 2, + STATE(1788), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [94581] = 17, + [91652] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - STATE(1800), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2174), 1, + STATE(2140), 1, aux_sym_for_phrase_repeat2, - STATE(2832), 1, - sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2924), 1, + STATE(2784), 1, + sym_on_error_phrase, + STATE(2901), 1, sym_on_quit_phrase, - STATE(3690), 1, + STATE(3989), 1, sym_on_stop_phrase, - ACTIONS(2572), 2, + ACTIONS(2557), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1801), 2, + STATE(1789), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [94639] = 17, + [91710] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2174), 1, + STATE(2173), 1, aux_sym_for_phrase_repeat2, - STATE(2832), 1, - sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2924), 1, + STATE(2736), 1, + sym_on_error_phrase, + STATE(2952), 1, sym_on_quit_phrase, - STATE(3690), 1, + STATE(3841), 1, sym_on_stop_phrase, - ACTIONS(2572), 2, + ACTIONS(2555), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1802), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [94697] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1803), 2, + STATE(1790), 2, sym_comment, sym_include, - ACTIONS(2574), 16, - sym__terminator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_where_clause_token1, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - [94735] = 5, + [91768] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1804), 2, + STATE(1791), 2, sym_comment, sym_include, - ACTIONS(2483), 18, + ACTIONS(2434), 18, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -125066,113 +121389,142 @@ 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, - [94769] = 17, + [91802] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2153), 1, + STATE(2144), 1, aux_sym_for_phrase_repeat2, - STATE(2804), 1, + STATE(2689), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2933), 1, + STATE(2978), 1, sym_on_quit_phrase, - STATE(3926), 1, + STATE(3593), 1, sym_on_stop_phrase, - ACTIONS(2421), 2, + ACTIONS(2440), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1805), 2, + STATE(1792), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [94827] = 17, + [91860] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - STATE(1797), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, - sym_query_tuning, - STATE(2153), 1, - aux_sym_for_phrase_repeat2, - STATE(2804), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2933), 1, - sym_on_quit_phrase, - STATE(3926), 1, - sym_on_stop_phrase, - ACTIONS(2421), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1806), 2, + ACTIONS(2559), 1, + aux_sym__block_terminator_token1, + ACTIONS(2561), 1, + aux_sym_variable_definition_token1, + ACTIONS(2563), 1, + aux_sym_variable_definition_token2, + ACTIONS(2565), 1, + aux_sym_method_definition_token1, + ACTIONS(2567), 1, + aux_sym_constructor_definition_token1, + STATE(1819), 1, + aux_sym_class_body_repeat1, + STATE(4229), 1, + sym_class_body, + STATE(1793), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [94885] = 12, + STATE(2805), 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, + [91907] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, + ACTIONS(2561), 1, + aux_sym_variable_definition_token1, + ACTIONS(2563), 1, + aux_sym_variable_definition_token2, + ACTIONS(2565), 1, + aux_sym_method_definition_token1, + ACTIONS(2567), 1, + aux_sym_constructor_definition_token1, + ACTIONS(2569), 1, aux_sym__block_terminator_token1, - ACTIONS(2578), 1, + STATE(1819), 1, + aux_sym_class_body_repeat1, + STATE(4059), 1, + sym_class_body, + STATE(1794), 2, + sym_comment, + sym_include, + STATE(2805), 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, + [91954] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2561), 1, aux_sym_variable_definition_token1, - ACTIONS(2580), 1, + ACTIONS(2563), 1, aux_sym_variable_definition_token2, - ACTIONS(2582), 1, + ACTIONS(2565), 1, aux_sym_method_definition_token1, - ACTIONS(2584), 1, + ACTIONS(2567), 1, aux_sym_constructor_definition_token1, - STATE(1840), 1, + ACTIONS(2571), 1, + aux_sym__block_terminator_token1, + STATE(1819), 1, aux_sym_class_body_repeat1, - STATE(4231), 1, + STATE(4471), 1, sym_class_body, - STATE(1807), 2, + STATE(1795), 2, sym_comment, sym_include, - STATE(2724), 10, + STATE(2805), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -125183,66 +121535,66 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [94932] = 12, + [92001] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1552), 1, - aux_sym_variable_definition_token4, - ACTIONS(1556), 1, - aux_sym_function_parameter_token1, - ACTIONS(1562), 1, - aux_sym_data_source_definition_token1, - STATE(4307), 1, - sym_access_tuning, - ACTIONS(1554), 2, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - STATE(1808), 2, + ACTIONS(2561), 1, + aux_sym_variable_definition_token1, + ACTIONS(2563), 1, + aux_sym_variable_definition_token2, + ACTIONS(2565), 1, + aux_sym_method_definition_token1, + ACTIONS(2567), 1, + aux_sym_constructor_definition_token1, + ACTIONS(2573), 1, + aux_sym__block_terminator_token1, + STATE(1819), 1, + aux_sym_class_body_repeat1, + STATE(4256), 1, + sym_class_body, + STATE(1796), 2, sym_comment, sym_include, - ACTIONS(2586), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1544), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(1550), 4, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token3, - [94979] = 12, + STATE(2805), 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, + [92048] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2561), 1, aux_sym_variable_definition_token1, - ACTIONS(2580), 1, + ACTIONS(2563), 1, aux_sym_variable_definition_token2, - ACTIONS(2582), 1, + ACTIONS(2565), 1, aux_sym_method_definition_token1, - ACTIONS(2584), 1, + ACTIONS(2567), 1, aux_sym_constructor_definition_token1, - ACTIONS(2590), 1, + ACTIONS(2575), 1, aux_sym__block_terminator_token1, - STATE(1840), 1, + STATE(1819), 1, aux_sym_class_body_repeat1, - STATE(4569), 1, + STATE(4214), 1, sym_class_body, - STATE(1809), 2, + STATE(1797), 2, sym_comment, sym_include, - STATE(2724), 10, + STATE(2805), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -125253,31 +121605,31 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [95026] = 12, + [92095] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2561), 1, aux_sym_variable_definition_token1, - ACTIONS(2580), 1, + ACTIONS(2563), 1, aux_sym_variable_definition_token2, - ACTIONS(2582), 1, + ACTIONS(2565), 1, aux_sym_method_definition_token1, - ACTIONS(2584), 1, + ACTIONS(2567), 1, aux_sym_constructor_definition_token1, - ACTIONS(2592), 1, + ACTIONS(2577), 1, aux_sym__block_terminator_token1, - STATE(1840), 1, + STATE(1819), 1, aux_sym_class_body_repeat1, - STATE(4061), 1, + STATE(4139), 1, sym_class_body, - STATE(1810), 2, + STATE(1798), 2, sym_comment, sym_include, - STATE(2724), 10, + STATE(2805), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -125288,31 +121640,66 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [95073] = 12, + [92142] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1402), 1, + aux_sym_variable_definition_token4, + ACTIONS(1406), 1, + aux_sym_function_parameter_token1, + ACTIONS(1412), 1, + aux_sym_data_source_definition_token1, + STATE(4169), 1, + sym_access_tuning, + ACTIONS(1404), 2, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + STATE(1799), 2, + sym_comment, + sym_include, + ACTIONS(2579), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1394), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(1400), 4, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token3, + [92189] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2561), 1, aux_sym_variable_definition_token1, - ACTIONS(2580), 1, + ACTIONS(2563), 1, aux_sym_variable_definition_token2, - ACTIONS(2582), 1, + ACTIONS(2565), 1, aux_sym_method_definition_token1, - ACTIONS(2584), 1, + ACTIONS(2567), 1, aux_sym_constructor_definition_token1, - ACTIONS(2594), 1, + ACTIONS(2583), 1, aux_sym__block_terminator_token1, - STATE(1840), 1, + STATE(1819), 1, aux_sym_class_body_repeat1, - STATE(4264), 1, + STATE(4436), 1, sym_class_body, - STATE(1811), 2, + STATE(1800), 2, sym_comment, sym_include, - STATE(2724), 10, + STATE(2805), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -125323,31 +121710,31 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [95120] = 12, + [92236] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2561), 1, aux_sym_variable_definition_token1, - ACTIONS(2580), 1, + ACTIONS(2563), 1, aux_sym_variable_definition_token2, - ACTIONS(2582), 1, + ACTIONS(2565), 1, aux_sym_method_definition_token1, - ACTIONS(2584), 1, + ACTIONS(2567), 1, aux_sym_constructor_definition_token1, - ACTIONS(2596), 1, + ACTIONS(2585), 1, aux_sym__block_terminator_token1, - STATE(1840), 1, + STATE(1819), 1, aux_sym_class_body_repeat1, - STATE(4028), 1, + STATE(4060), 1, sym_class_body, - STATE(1812), 2, + STATE(1801), 2, sym_comment, sym_include, - STATE(2724), 10, + STATE(2805), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -125358,31 +121745,31 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [95167] = 12, + [92283] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2561), 1, aux_sym_variable_definition_token1, - ACTIONS(2580), 1, + ACTIONS(2563), 1, aux_sym_variable_definition_token2, - ACTIONS(2582), 1, + ACTIONS(2565), 1, aux_sym_method_definition_token1, - ACTIONS(2584), 1, + ACTIONS(2567), 1, aux_sym_constructor_definition_token1, - ACTIONS(2598), 1, + ACTIONS(2587), 1, aux_sym__block_terminator_token1, - STATE(1840), 1, + STATE(1819), 1, aux_sym_class_body_repeat1, - STATE(4404), 1, + STATE(4026), 1, sym_class_body, - STATE(1813), 2, + STATE(1802), 2, sym_comment, sym_include, - STATE(2724), 10, + STATE(2805), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -125393,31 +121780,31 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [95214] = 12, + [92330] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2561), 1, aux_sym_variable_definition_token1, - ACTIONS(2580), 1, + ACTIONS(2563), 1, aux_sym_variable_definition_token2, - ACTIONS(2582), 1, + ACTIONS(2565), 1, aux_sym_method_definition_token1, - ACTIONS(2584), 1, + ACTIONS(2567), 1, aux_sym_constructor_definition_token1, - ACTIONS(2600), 1, + ACTIONS(2589), 1, aux_sym__block_terminator_token1, - STATE(1840), 1, + STATE(1819), 1, aux_sym_class_body_repeat1, - STATE(4165), 1, + STATE(4262), 1, sym_class_body, - STATE(1814), 2, + STATE(1803), 2, sym_comment, sym_include, - STATE(2724), 10, + STATE(2805), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -125428,31 +121815,409 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [95261] = 12, + [92377] = 16, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2591), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(1947), 1, + sym_of, + STATE(2047), 1, + sym__pre_tuning, + STATE(2291), 1, + sym_where_clause, + STATE(2292), 1, + aux_sym_for_phrase_repeat1, + STATE(1804), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [92431] = 16, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2593), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(1973), 1, + sym_of, + STATE(1990), 1, + sym__pre_tuning, + STATE(2231), 1, + aux_sym_for_phrase_repeat1, + STATE(2232), 1, + sym_where_clause, + STATE(1805), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [92485] = 16, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2595), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(1976), 1, + sym_of, + STATE(2000), 1, + sym__pre_tuning, + STATE(2248), 1, + sym_where_clause, + STATE(2250), 1, + aux_sym_for_phrase_repeat1, + STATE(1806), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [92539] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(693), 1, + sym__namecolon, + ACTIONS(2599), 1, + anon_sym_LPAREN, + ACTIONS(2603), 1, + sym__namedot, + STATE(1946), 1, + aux_sym_qualified_name_repeat1, + STATE(2547), 1, + sym_sort_order, + STATE(3064), 1, + aux_sym_object_access_repeat1, + STATE(1807), 2, + sym_comment, + sym_include, + ACTIONS(2601), 4, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + ACTIONS(2597), 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, + [92585] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2605), 1, + aux_sym_variable_definition_token3, + ACTIONS(2607), 1, + aux_sym_variable_definition_token4, + ACTIONS(2609), 1, + aux_sym_buffer_definition_token3, + STATE(1826), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(1324), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1808), 2, + sym_comment, + sym_include, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(1971), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [92631] = 16, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2611), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(1930), 1, + sym_of, + STATE(2008), 1, + sym__pre_tuning, + STATE(2216), 1, + aux_sym_for_phrase_repeat1, + STATE(2218), 1, + sym_where_clause, + STATE(1809), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [92685] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2618), 1, + aux_sym_variable_tuning_token6, + ACTIONS(2621), 1, + aux_sym_variable_definition_token2, + ACTIONS(2623), 1, + aux_sym_property_tuning_token1, + STATE(1857), 1, + sym_property_tuning, + ACTIONS(2615), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1810), 3, + sym_comment, + sym_include, + aux_sym_property_definition_repeat2, + ACTIONS(2613), 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, + [92727] = 16, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2626), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(1953), 1, + sym_of, + STATE(2043), 1, + sym__pre_tuning, + STATE(2205), 1, + sym_where_clause, + STATE(2207), 1, + aux_sym_for_phrase_repeat1, + STATE(1811), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [92781] = 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(2551), 16, + sym__terminator, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + [92813] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(1813), 2, + sym_comment, + sym_include, + ACTIONS(2628), 16, + sym__terminator, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + [92845] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(2630), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2632), 1, + anon_sym_COLON, + ACTIONS(2634), 1, + aux_sym_property_type_token1, + ACTIONS(2636), 1, + aux_sym_inherits_token1, + ACTIONS(2638), 1, + aux_sym_implements_token1, + ACTIONS(2640), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2642), 1, + aux_sym_final_token1, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1898), 1, + aux_sym_class_statement_repeat1, + STATE(1814), 2, + sym_comment, + sym_include, + STATE(2453), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [92897] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2644), 1, + aux_sym__block_terminator_token1, + ACTIONS(2646), 1, aux_sym_variable_definition_token1, - ACTIONS(2580), 1, + ACTIONS(2649), 1, aux_sym_variable_definition_token2, - ACTIONS(2582), 1, + ACTIONS(2652), 1, aux_sym_method_definition_token1, - ACTIONS(2584), 1, + ACTIONS(2655), 1, aux_sym_constructor_definition_token1, - ACTIONS(2602), 1, - aux_sym__block_terminator_token1, - STATE(1840), 1, - aux_sym_class_body_repeat1, - STATE(4473), 1, - sym_class_body, - STATE(1815), 2, + STATE(1815), 3, sym_comment, sym_include, - STATE(2724), 10, + aux_sym_class_body_repeat1, + STATE(2805), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -125463,536 +122228,475 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [95308] = 12, + [92939] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, - aux_sym_variable_definition_token1, - ACTIONS(2580), 1, - aux_sym_variable_definition_token2, - ACTIONS(2582), 1, - aux_sym_method_definition_token1, - ACTIONS(2584), 1, - aux_sym_constructor_definition_token1, - ACTIONS(2604), 1, - aux_sym__block_terminator_token1, - STATE(1840), 1, - aux_sym_class_body_repeat1, - STATE(4200), 1, - sym_class_body, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2658), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(1954), 1, + sym_of, + STATE(2031), 1, + sym__pre_tuning, + STATE(2262), 1, + sym_where_clause, + STATE(2265), 1, + aux_sym_for_phrase_repeat1, STATE(1816), 2, sym_comment, sym_include, - STATE(2724), 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, - [95355] = 12, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [92993] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, - aux_sym_variable_definition_token1, - ACTIONS(2580), 1, - aux_sym_variable_definition_token2, - ACTIONS(2582), 1, - aux_sym_method_definition_token1, - ACTIONS(2584), 1, - aux_sym_constructor_definition_token1, - ACTIONS(2606), 1, - aux_sym__block_terminator_token1, - STATE(1840), 1, - aux_sym_class_body_repeat1, - STATE(4538), 1, - sym_class_body, STATE(1817), 2, sym_comment, sym_include, - STATE(2724), 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, - [95402] = 8, + ACTIONS(2660), 16, + sym__terminator, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + [93025] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1192), 1, - sym__namedot, - ACTIONS(2335), 1, - aux_sym_variable_definition_token2, - STATE(621), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(2662), 1, + aux_sym_variable_definition_token3, + ACTIONS(2664), 1, + aux_sym_variable_definition_token4, + ACTIONS(2666), 1, + aux_sym_buffer_definition_token3, + STATE(1826), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(1324), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, STATE(1818), 2, sym_comment, sym_include, - ACTIONS(2333), 13, - aux_sym__block_terminator_token1, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, + ACTIONS(1322), 3, 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, - [95440] = 16, + STATE(1971), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [93071] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2608), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(1989), 1, - sym_of, - STATE(2111), 1, - sym__pre_tuning, - STATE(2233), 1, - aux_sym_for_phrase_repeat1, - STATE(2246), 1, - sym_where_clause, + ACTIONS(2561), 1, + aux_sym_variable_definition_token1, + ACTIONS(2563), 1, + aux_sym_variable_definition_token2, + ACTIONS(2565), 1, + aux_sym_method_definition_token1, + ACTIONS(2567), 1, + aux_sym_constructor_definition_token1, + ACTIONS(2668), 1, + aux_sym__block_terminator_token1, + STATE(1815), 1, + aux_sym_class_body_repeat1, STATE(1819), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [95494] = 16, + STATE(2805), 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, + [93115] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2610), 1, - sym__terminator, - STATE(2), 1, + ACTIONS(2630), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2634), 1, + aux_sym_property_type_token1, + ACTIONS(2636), 1, + aux_sym_inherits_token1, + ACTIONS(2638), 1, + aux_sym_implements_token1, + ACTIONS(2640), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2642), 1, + aux_sym_final_token1, + ACTIONS(2670), 1, + anon_sym_COLON, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(1960), 1, - sym_of, - STATE(2043), 1, - sym__pre_tuning, - STATE(2228), 1, - aux_sym_for_phrase_repeat1, - STATE(2244), 1, - sym_where_clause, + STATE(1897), 1, + aux_sym_class_statement_repeat1, STATE(1820), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [95548] = 15, + STATE(2453), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [93167] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2612), 1, + ACTIONS(2630), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2614), 1, - anon_sym_COLON, - ACTIONS(2616), 1, + ACTIONS(2634), 1, aux_sym_property_type_token1, - ACTIONS(2618), 1, + ACTIONS(2636), 1, aux_sym_inherits_token1, - ACTIONS(2620), 1, + ACTIONS(2638), 1, aux_sym_implements_token1, - ACTIONS(2622), 1, + ACTIONS(2640), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2624), 1, + ACTIONS(2642), 1, aux_sym_final_token1, - STATE(2), 1, + ACTIONS(2672), 1, + anon_sym_COLON, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(1897), 1, + STATE(1903), 1, aux_sym_class_statement_repeat1, STATE(1821), 2, sym_comment, sym_include, - STATE(2426), 6, + STATE(2453), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [95600] = 15, + [93219] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2612), 1, + ACTIONS(2630), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2616), 1, + ACTIONS(2634), 1, aux_sym_property_type_token1, - ACTIONS(2618), 1, + ACTIONS(2636), 1, aux_sym_inherits_token1, - ACTIONS(2620), 1, + ACTIONS(2638), 1, aux_sym_implements_token1, - ACTIONS(2622), 1, + ACTIONS(2640), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2624), 1, + ACTIONS(2642), 1, aux_sym_final_token1, - ACTIONS(2626), 1, + ACTIONS(2674), 1, anon_sym_COLON, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(1901), 1, + STATE(1883), 1, aux_sym_class_statement_repeat1, STATE(1822), 2, sym_comment, sym_include, - STATE(2426), 6, + STATE(2453), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [95652] = 5, + [93271] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2676), 1, + aux_sym_variable_definition_token3, + ACTIONS(2678), 1, + aux_sym_variable_definition_token4, + ACTIONS(2680), 1, + aux_sym_buffer_definition_token3, + STATE(1826), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(1324), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, STATE(1823), 2, sym_comment, sym_include, - ACTIONS(2574), 16, - sym__terminator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - [95684] = 16, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(1971), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [93317] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2628), 1, + ACTIONS(2682), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(1981), 1, + STATE(1927), 1, sym_of, - STATE(2020), 1, + STATE(2089), 1, sym__pre_tuning, - STATE(2206), 1, + STATE(2215), 1, sym_where_clause, - STATE(2263), 1, + STATE(2219), 1, aux_sym_for_phrase_repeat1, STATE(1824), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [95738] = 12, - 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_token3, - ACTIONS(2632), 1, - aux_sym_variable_definition_token4, - ACTIONS(2634), 1, - aux_sym_buffer_definition_token3, - STATE(1837), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(1377), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1825), 2, - sym_comment, - sym_include, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1948), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [95784] = 15, + [93371] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2612), 1, + ACTIONS(2630), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2616), 1, + ACTIONS(2634), 1, aux_sym_property_type_token1, - ACTIONS(2618), 1, + ACTIONS(2636), 1, aux_sym_inherits_token1, - ACTIONS(2620), 1, + ACTIONS(2638), 1, aux_sym_implements_token1, - ACTIONS(2622), 1, + ACTIONS(2640), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2624), 1, + ACTIONS(2642), 1, aux_sym_final_token1, - ACTIONS(2636), 1, + ACTIONS(2684), 1, anon_sym_COLON, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(1895), 1, + STATE(1889), 1, aux_sym_class_statement_repeat1, - STATE(1826), 2, + STATE(1825), 2, sym_comment, sym_include, - STATE(2426), 6, + STATE(2453), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [95836] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2638), 1, - aux_sym__block_terminator_token1, - ACTIONS(2640), 1, - aux_sym_variable_definition_token1, - ACTIONS(2643), 1, - aux_sym_variable_definition_token2, - ACTIONS(2646), 1, - aux_sym_method_definition_token1, - ACTIONS(2649), 1, - aux_sym_constructor_definition_token1, - STATE(1827), 3, - sym_comment, - sym_include, - aux_sym_class_body_repeat1, - STATE(2724), 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, - [95878] = 5, + [93423] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1828), 2, + ACTIONS(2697), 1, + aux_sym_variable_definition_token4, + ACTIONS(2692), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(2695), 2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token3, + ACTIONS(2689), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(1826), 3, sym_comment, sym_include, - ACTIONS(2652), 16, - sym__terminator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - [95910] = 12, + aux_sym_variable_definition_repeat1, + STATE(1971), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(2686), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [93465] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2654), 1, + ACTIONS(2699), 1, aux_sym_variable_definition_token3, - ACTIONS(2656), 1, + ACTIONS(2701), 1, aux_sym_variable_definition_token4, - ACTIONS(2658), 1, + ACTIONS(2703), 1, aux_sym_buffer_definition_token3, - STATE(1837), 1, + STATE(1826), 1, aux_sym_variable_definition_repeat1, - ACTIONS(1377), 2, + ACTIONS(1324), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1829), 2, + STATE(1827), 2, sym_comment, sym_include, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - STATE(1948), 3, + STATE(1971), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - ACTIONS(1373), 4, + ACTIONS(1320), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [95956] = 16, + [93511] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2660), 1, + ACTIONS(2705), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(1967), 1, + STATE(1975), 1, sym_of, - STATE(2088), 1, + STATE(1996), 1, sym__pre_tuning, - STATE(2239), 1, + STATE(2243), 1, sym_where_clause, - STATE(2242), 1, + STATE(2244), 1, aux_sym_for_phrase_repeat1, - STATE(1830), 2, + STATE(1828), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [96010] = 6, + [93565] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2664), 1, + ACTIONS(2709), 1, aux_sym_variable_definition_token4, - STATE(1831), 2, + STATE(1829), 2, sym_comment, sym_include, - ACTIONS(2662), 15, + ACTIONS(2707), 15, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, @@ -126008,895 +122712,953 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_definition_token1, aux_sym_function_parameter_token1, aux_sym_data_source_definition_token1, - [96044] = 5, + [93599] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1832), 2, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2711), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(1936), 1, + sym_of, + STATE(2071), 1, + sym__pre_tuning, + STATE(2295), 1, + sym_where_clause, + STATE(2298), 1, + aux_sym_for_phrase_repeat1, + STATE(1830), 2, sym_comment, sym_include, - ACTIONS(2666), 16, - sym__terminator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_where_clause_token1, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - [96076] = 12, + [93653] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2668), 1, - aux_sym_variable_definition_token3, - ACTIONS(2670), 1, - aux_sym_variable_definition_token4, - ACTIONS(2672), 1, - aux_sym_buffer_definition_token3, - STATE(1837), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(1377), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1833), 2, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2713), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(1915), 1, + sym_query_tuning, + STATE(1935), 1, + sym_of, + STATE(2029), 1, + sym__pre_tuning, + STATE(2241), 1, + aux_sym_for_phrase_repeat1, + STATE(2242), 1, + sym_where_clause, + STATE(1831), 2, sym_comment, sym_include, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1948), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [96122] = 12, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [93707] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2674), 1, + ACTIONS(2715), 1, aux_sym_variable_definition_token3, - ACTIONS(2676), 1, + ACTIONS(2717), 1, aux_sym_variable_definition_token4, - ACTIONS(2678), 1, + ACTIONS(2719), 1, aux_sym_buffer_definition_token3, - STATE(1837), 1, + STATE(1826), 1, aux_sym_variable_definition_repeat1, - ACTIONS(1377), 2, + ACTIONS(1324), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1834), 2, + STATE(1832), 2, sym_comment, sym_include, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - STATE(1948), 3, + STATE(1971), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - ACTIONS(1373), 4, + ACTIONS(1320), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [96168] = 10, - ACTIONS(59), 1, + [93753] = 17, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2685), 1, - aux_sym_variable_tuning_token6, - ACTIONS(2688), 1, - aux_sym_variable_definition_token2, - ACTIONS(2690), 1, - aux_sym_property_tuning_token1, - STATE(1857), 1, - sym_property_tuning, - ACTIONS(2682), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1835), 3, + ACTIONS(2721), 1, + sym_identifier, + ACTIONS(2723), 1, + anon_sym_COLON, + ACTIONS(2725), 1, + aux_sym_while_phrase_token1, + ACTIONS(2727), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2729), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2731), 1, + aux_sym_do_tuning_token1, + STATE(1962), 1, + sym_to_phrase, + STATE(2154), 1, + sym_while_phrase, + STATE(2158), 1, + aux_sym_do_block_repeat1, + STATE(2749), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(4237), 1, + sym_assignment, + STATE(1833), 2, sym_comment, sym_include, - aux_sym_property_definition_repeat2, - ACTIONS(2680), 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, - [96210] = 15, + STATE(4543), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [93808] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(2612), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2616), 1, - aux_sym_property_type_token1, - ACTIONS(2618), 1, - aux_sym_inherits_token1, - ACTIONS(2620), 1, - aux_sym_implements_token1, - ACTIONS(2622), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2624), 1, - aux_sym_final_token1, - ACTIONS(2693), 1, - anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1903), 1, - aux_sym_class_statement_repeat1, - STATE(1836), 2, + ACTIONS(1169), 1, + aux_sym_using_statement_token1, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2733), 1, + anon_sym_RPAREN, + STATE(1855), 1, + aux_sym_can_find_expression_repeat2, + STATE(1916), 1, + sym__using_first, + STATE(1834), 2, sym_comment, sym_include, - STATE(2426), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [96262] = 10, + STATE(2125), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [93855] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2706), 1, - aux_sym_variable_definition_token4, - ACTIONS(2701), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(2704), 2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token3, - ACTIONS(2698), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1837), 3, + ACTIONS(1169), 1, + aux_sym_using_statement_token1, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2735), 1, + anon_sym_RPAREN, + STATE(1855), 1, + aux_sym_can_find_expression_repeat2, + STATE(1916), 1, + sym__using_first, + STATE(1835), 2, sym_comment, sym_include, - aux_sym_variable_definition_repeat1, - STATE(1948), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(2695), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [96304] = 16, + STATE(2125), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [93902] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1180), 1, + ACTIONS(1169), 1, + aux_sym_using_statement_token1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2708), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(1957), 1, - sym_of, - STATE(2039), 1, - sym__pre_tuning, - STATE(2313), 1, - aux_sym_for_phrase_repeat1, - STATE(2317), 1, - sym_where_clause, - STATE(1838), 2, + ACTIONS(2737), 1, + anon_sym_RPAREN, + STATE(1855), 1, + aux_sym_can_find_expression_repeat2, + STATE(1916), 1, + sym__using_first, + STATE(1836), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + STATE(2125), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [96358] = 15, + [93949] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(2612), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2616), 1, - aux_sym_property_type_token1, - ACTIONS(2618), 1, - aux_sym_inherits_token1, - ACTIONS(2620), 1, - aux_sym_implements_token1, - ACTIONS(2622), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2624), 1, - aux_sym_final_token1, - ACTIONS(2710), 1, + ACTIONS(1169), 1, + aux_sym_using_statement_token1, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2739), 1, + anon_sym_RPAREN, + STATE(1855), 1, + aux_sym_can_find_expression_repeat2, + STATE(1916), 1, + sym__using_first, + STATE(1837), 2, + sym_comment, + sym_include, + STATE(2125), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [93996] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2721), 1, + sym_identifier, + ACTIONS(2725), 1, + aux_sym_while_phrase_token1, + ACTIONS(2727), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2729), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2731), 1, + aux_sym_do_tuning_token1, + ACTIONS(2741), 1, anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1915), 1, - aux_sym_class_statement_repeat1, - STATE(1839), 2, + STATE(1961), 1, + sym_to_phrase, + STATE(2151), 1, + aux_sym_do_block_repeat1, + STATE(2153), 1, + sym_while_phrase, + STATE(2772), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(4237), 1, + sym_assignment, + STATE(1838), 2, sym_comment, sym_include, - STATE(2426), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [96410] = 11, + STATE(4526), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [94051] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, - aux_sym_variable_definition_token1, - ACTIONS(2580), 1, - aux_sym_variable_definition_token2, - ACTIONS(2582), 1, - aux_sym_method_definition_token1, - ACTIONS(2584), 1, - aux_sym_constructor_definition_token1, - ACTIONS(2712), 1, - aux_sym__block_terminator_token1, - STATE(1827), 1, - aux_sym_class_body_repeat1, - STATE(1840), 2, + ACTIONS(1169), 1, + aux_sym_using_statement_token1, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2743), 1, + anon_sym_RPAREN, + STATE(1855), 1, + aux_sym_can_find_expression_repeat2, + STATE(1916), 1, + sym__using_first, + STATE(1839), 2, sym_comment, sym_include, - STATE(2724), 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, - [96454] = 12, + STATE(2125), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [94098] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2714), 1, - aux_sym_variable_definition_token3, - ACTIONS(2716), 1, - aux_sym_variable_definition_token4, - ACTIONS(2718), 1, - aux_sym_buffer_definition_token3, - STATE(1837), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(1377), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1841), 2, + ACTIONS(1169), 1, + aux_sym_using_statement_token1, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2745), 1, + anon_sym_RPAREN, + STATE(1855), 1, + aux_sym_can_find_expression_repeat2, + STATE(1916), 1, + sym__using_first, + STATE(1840), 2, sym_comment, sym_include, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1948), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [96500] = 16, + STATE(2125), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [94145] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1180), 1, + ACTIONS(1169), 1, + aux_sym_using_statement_token1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2720), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(1946), 1, - sym_of, - STATE(2068), 1, - sym__pre_tuning, - STATE(2214), 1, - sym_where_clause, - STATE(2225), 1, - aux_sym_for_phrase_repeat1, - STATE(1842), 2, + ACTIONS(2747), 1, + anon_sym_RPAREN, + STATE(1855), 1, + aux_sym_can_find_expression_repeat2, + STATE(1916), 1, + sym__using_first, + STATE(1841), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + STATE(2125), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [96554] = 16, + [94192] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1180), 1, + ACTIONS(1169), 1, + aux_sym_using_statement_token1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2722), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(1982), 1, - sym_of, - STATE(2017), 1, - sym__pre_tuning, - STATE(2205), 1, - sym_where_clause, - STATE(2327), 1, - aux_sym_for_phrase_repeat1, - STATE(1843), 2, + ACTIONS(2749), 1, + anon_sym_RPAREN, + STATE(1855), 1, + aux_sym_can_find_expression_repeat2, + STATE(1916), 1, + sym__using_first, + STATE(1842), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + STATE(2125), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [96608] = 16, + [94239] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1180), 1, + ACTIONS(1169), 1, + aux_sym_using_statement_token1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2724), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(1941), 1, - sym_of, - STATE(2008), 1, - sym__pre_tuning, - STATE(2207), 1, - sym_where_clause, - STATE(2208), 1, - aux_sym_for_phrase_repeat1, - STATE(1844), 2, + ACTIONS(2751), 1, + anon_sym_RPAREN, + STATE(1855), 1, + aux_sym_can_find_expression_repeat2, + STATE(1916), 1, + sym__using_first, + STATE(1843), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + STATE(2125), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [96662] = 16, + [94286] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1180), 1, + ACTIONS(1169), 1, + aux_sym_using_statement_token1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2726), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(1943), 1, - sym_of, - STATE(2066), 1, - sym__pre_tuning, - STATE(2320), 1, - aux_sym_for_phrase_repeat1, - STATE(2330), 1, - sym_where_clause, - STATE(1845), 2, + ACTIONS(2753), 1, + anon_sym_RPAREN, + STATE(1855), 1, + aux_sym_can_find_expression_repeat2, + STATE(1916), 1, + sym__using_first, + STATE(1844), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + STATE(2125), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [96716] = 16, + [94333] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(1180), 1, + ACTIONS(1169), 1, + aux_sym_using_statement_token1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2728), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(1976), 1, - sym_of, - STATE(2012), 1, - sym__pre_tuning, - STATE(2302), 1, - aux_sym_for_phrase_repeat1, - STATE(2308), 1, - sym_where_clause, - STATE(1846), 2, + ACTIONS(2755), 1, + anon_sym_RPAREN, + STATE(1855), 1, + aux_sym_can_find_expression_repeat2, + STATE(1916), 1, + sym__using_first, + STATE(1845), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + STATE(2125), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [96770] = 12, + [94380] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(114), 1, - sym__namecolon, - ACTIONS(2732), 1, - anon_sym_LPAREN, - ACTIONS(2736), 1, - sym__namedot, - STATE(14), 1, - aux_sym_object_access_repeat1, - STATE(1996), 1, - aux_sym_qualified_name_repeat1, - STATE(2657), 1, - sym_sort_order, - STATE(1847), 2, - sym_comment, - sym_include, - ACTIONS(2734), 4, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - ACTIONS(2730), 6, + ACTIONS(2721), 1, sym_identifier, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2725), 1, + aux_sym_while_phrase_token1, + ACTIONS(2727), 1, aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [96816] = 13, + ACTIONS(2729), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2731), 1, + aux_sym_do_tuning_token1, + ACTIONS(2757), 1, + anon_sym_COLON, + STATE(1933), 1, + sym_to_phrase, + STATE(2117), 1, + sym_while_phrase, + STATE(2119), 1, + aux_sym_do_block_repeat1, + STATE(2788), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(4237), 1, + sym_assignment, + STATE(1846), 2, + sym_comment, + sym_include, + STATE(4017), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [94435] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2738), 1, + ACTIONS(2759), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - STATE(1848), 2, + STATE(1847), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [96863] = 13, + [94482] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2740), 1, + ACTIONS(2761), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - STATE(1849), 2, + STATE(1848), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [96910] = 13, + [94529] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2742), 1, + ACTIONS(2763), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - STATE(1850), 2, + STATE(1849), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [96957] = 17, + [94576] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(2746), 1, - anon_sym_COLON, - ACTIONS(2748), 1, + ACTIONS(2725), 1, aux_sym_while_phrase_token1, - ACTIONS(2750), 1, + ACTIONS(2727), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2752), 1, + ACTIONS(2729), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2754), 1, + ACTIONS(2731), 1, aux_sym_do_tuning_token1, - STATE(1970), 1, + ACTIONS(2765), 1, + anon_sym_COLON, + STATE(1925), 1, sym_to_phrase, - STATE(2143), 1, + STATE(2137), 1, sym_while_phrase, - STATE(2188), 1, + STATE(2160), 1, aux_sym_do_block_repeat1, - STATE(2798), 1, + STATE(2791), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(4377), 1, + STATE(4237), 1, sym_assignment, - STATE(1851), 2, + STATE(1850), 2, sym_comment, sym_include, - STATE(4084), 3, + STATE(4484), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [97012] = 13, + [94631] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2769), 1, + aux_sym_variable_definition_token2, + STATE(1851), 2, + sym_comment, + sym_include, + ACTIONS(2767), 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, + [94664] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2756), 1, + ACTIONS(2771), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, STATE(1852), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [97059] = 13, + [94711] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2758), 1, + ACTIONS(2773), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, STATE(1853), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [97106] = 13, + [94758] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2760), 1, + ACTIONS(2775), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, STATE(1854), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [97153] = 17, - ACTIONS(3), 1, + [94805] = 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(2744), 1, - sym_identifier, - ACTIONS(2748), 1, - aux_sym_while_phrase_token1, - ACTIONS(2750), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2752), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2754), 1, - aux_sym_do_tuning_token1, - ACTIONS(2762), 1, - anon_sym_COLON, - STATE(1972), 1, - sym_to_phrase, - STATE(2183), 1, - aux_sym_do_block_repeat1, - STATE(2184), 1, - sym_while_phrase, - STATE(2721), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(4377), 1, - sym_assignment, - STATE(1855), 2, + ACTIONS(2777), 1, + anon_sym_RPAREN, + ACTIONS(2779), 1, + aux_sym_using_statement_token1, + ACTIONS(2782), 1, + aux_sym_where_clause_token1, + ACTIONS(2788), 1, + aux_sym_query_tuning_token6, + ACTIONS(2791), 1, + aux_sym_of_token1, + STATE(1916), 1, + sym__using_first, + STATE(1855), 3, sym_comment, sym_include, - STATE(4038), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [97208] = 13, + aux_sym_can_find_expression_repeat2, + STATE(2125), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2785), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [94850] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2764), 1, + ACTIONS(2794), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, STATE(1856), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [97255] = 6, + [94897] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2768), 1, + ACTIONS(2798), 1, aux_sym_variable_definition_token2, STATE(1857), 2, sym_comment, sym_include, - ACTIONS(2766), 14, + ACTIONS(2796), 14, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -126911,2577 +123673,2717 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_event_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [97288] = 17, + [94930] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(2748), 1, + ACTIONS(2725), 1, aux_sym_while_phrase_token1, - ACTIONS(2750), 1, + ACTIONS(2727), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2752), 1, + ACTIONS(2729), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2754), 1, + ACTIONS(2731), 1, aux_sym_do_tuning_token1, - ACTIONS(2770), 1, + ACTIONS(2800), 1, anon_sym_COLON, - STATE(1961), 1, + STATE(1951), 1, sym_to_phrase, - STATE(2144), 1, - sym_while_phrase, - STATE(2145), 1, + STATE(2135), 1, aux_sym_do_block_repeat1, - STATE(2856), 1, + STATE(2139), 1, + sym_while_phrase, + STATE(2798), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(4377), 1, + STATE(4237), 1, sym_assignment, STATE(1858), 2, sym_comment, sym_include, - STATE(4222), 3, + STATE(4050), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [97343] = 13, + [94985] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2772), 1, + ACTIONS(2802), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, STATE(1859), 2, sym_comment, sym_include, - STATE(2196), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [97390] = 13, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1178), 1, - aux_sym_using_statement_token1, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2774), 1, - anon_sym_RPAREN, - STATE(1881), 1, - aux_sym_can_find_expression_repeat2, - STATE(1938), 1, - sym__using_first, - STATE(1860), 2, - sym_comment, - sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [97437] = 17, + [95032] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(2748), 1, + ACTIONS(2725), 1, aux_sym_while_phrase_token1, - ACTIONS(2750), 1, + ACTIONS(2727), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2752), 1, + ACTIONS(2729), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2754), 1, + ACTIONS(2731), 1, aux_sym_do_tuning_token1, - ACTIONS(2776), 1, + ACTIONS(2804), 1, anon_sym_COLON, - STATE(1986), 1, + STATE(1984), 1, sym_to_phrase, - STATE(2126), 1, - sym_while_phrase, - STATE(2131), 1, + STATE(2177), 1, aux_sym_do_block_repeat1, - STATE(2882), 1, + STATE(2179), 1, + sym_while_phrase, + STATE(2745), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(4377), 1, + STATE(4237), 1, sym_assignment, - STATE(1861), 2, + STATE(1860), 2, sym_comment, sym_include, - STATE(4489), 3, + STATE(4190), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [97492] = 17, + [95087] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(2748), 1, + ACTIONS(2725), 1, aux_sym_while_phrase_token1, - ACTIONS(2750), 1, + ACTIONS(2727), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2752), 1, + ACTIONS(2729), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2754), 1, + ACTIONS(2731), 1, aux_sym_do_tuning_token1, - ACTIONS(2778), 1, + ACTIONS(2806), 1, anon_sym_COLON, - STATE(1964), 1, + STATE(1969), 1, sym_to_phrase, - STATE(2150), 1, + STATE(2165), 1, sym_while_phrase, - STATE(2152), 1, + STATE(2169), 1, aux_sym_do_block_repeat1, - STATE(2709), 1, + STATE(2737), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(4377), 1, + STATE(4237), 1, sym_assignment, - STATE(1862), 2, + STATE(1861), 2, sym_comment, sym_include, - STATE(4072), 3, + STATE(4220), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [97547] = 13, + [95142] = 13, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1169), 1, + aux_sym_using_statement_token1, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2808), 1, + anon_sym_RPAREN, + STATE(1855), 1, + aux_sym_can_find_expression_repeat2, + STATE(1916), 1, + sym__using_first, + STATE(1862), 2, + sym_comment, + sym_include, + STATE(2125), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [95189] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2780), 1, + ACTIONS(2810), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, STATE(1863), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [97594] = 13, + [95236] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2782), 1, + ACTIONS(2812), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, STATE(1864), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [97641] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1222), 1, - aux_sym_variable_definition_token2, - STATE(1865), 2, - sym_comment, - sym_include, - ACTIONS(1220), 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, - [97674] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(1866), 2, - sym_comment, - sym_include, - ACTIONS(2333), 13, - sym__terminator, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - anon_sym_COMMA, - aux_sym_property_tuning_token1, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [97709] = 17, + [95283] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(2748), 1, + ACTIONS(2725), 1, aux_sym_while_phrase_token1, - ACTIONS(2750), 1, + ACTIONS(2727), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2752), 1, + ACTIONS(2729), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2754), 1, + ACTIONS(2731), 1, aux_sym_do_tuning_token1, - ACTIONS(2784), 1, + ACTIONS(2814), 1, anon_sym_COLON, - STATE(1975), 1, + STATE(1948), 1, sym_to_phrase, - STATE(2117), 1, - aux_sym_do_block_repeat1, - STATE(2123), 1, + STATE(2150), 1, sym_while_phrase, - STATE(2790), 1, + STATE(2184), 1, + aux_sym_do_block_repeat1, + STATE(2669), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(4377), 1, + STATE(4237), 1, sym_assignment, - STATE(1867), 2, + STATE(1865), 2, sym_comment, sym_include, - STATE(4235), 3, + STATE(4564), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [97764] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2788), 1, - aux_sym_variable_definition_token2, - STATE(1868), 2, - sym_comment, - sym_include, - ACTIONS(2786), 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, - [97797] = 13, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1178), 1, - aux_sym_using_statement_token1, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2790), 1, - anon_sym_RPAREN, - STATE(1881), 1, - aux_sym_can_find_expression_repeat2, - STATE(1938), 1, - sym__using_first, - STATE(1869), 2, - sym_comment, - sym_include, - STATE(2196), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [97844] = 17, + [95338] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(2748), 1, + ACTIONS(2725), 1, aux_sym_while_phrase_token1, - ACTIONS(2750), 1, + ACTIONS(2727), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2752), 1, + ACTIONS(2729), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2754), 1, + ACTIONS(2731), 1, aux_sym_do_tuning_token1, - ACTIONS(2792), 1, + ACTIONS(2816), 1, anon_sym_COLON, - STATE(1952), 1, + STATE(1932), 1, sym_to_phrase, - STATE(2160), 1, + STATE(2113), 1, aux_sym_do_block_repeat1, - STATE(2172), 1, + STATE(2115), 1, sym_while_phrase, - STATE(2841), 1, + STATE(2843), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(4377), 1, + STATE(4237), 1, sym_assignment, - STATE(1870), 2, + STATE(1866), 2, sym_comment, sym_include, - STATE(4192), 3, + STATE(4263), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [97899] = 13, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1178), 1, - aux_sym_using_statement_token1, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2794), 1, - anon_sym_RPAREN, - STATE(1881), 1, - aux_sym_can_find_expression_repeat2, - STATE(1938), 1, - sym__using_first, - STATE(1871), 2, - sym_comment, - sym_include, - STATE(2196), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [97946] = 13, + [95393] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2796), 1, + ACTIONS(2818), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - STATE(1872), 2, + STATE(1867), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [97993] = 17, + [95440] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(2748), 1, + ACTIONS(2725), 1, aux_sym_while_phrase_token1, - ACTIONS(2750), 1, + ACTIONS(2727), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2752), 1, + ACTIONS(2729), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2754), 1, + ACTIONS(2731), 1, aux_sym_do_tuning_token1, - ACTIONS(2798), 1, + ACTIONS(2820), 1, anon_sym_COLON, - STATE(1940), 1, + STATE(1929), 1, sym_to_phrase, - STATE(2116), 1, + STATE(2106), 1, sym_while_phrase, - STATE(2156), 1, + STATE(2110), 1, aux_sym_do_block_repeat1, - STATE(2871), 1, + STATE(2850), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(4377), 1, + STATE(4237), 1, sym_assignment, - STATE(1873), 2, + STATE(1868), 2, sym_comment, sym_include, - STATE(4543), 3, + STATE(4296), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [98048] = 13, + [95495] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2800), 1, + ACTIONS(2822), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - STATE(1874), 2, + STATE(1869), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [98095] = 13, + [95542] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2802), 1, + ACTIONS(2824), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - STATE(1875), 2, + STATE(1870), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [98142] = 13, + [95589] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2804), 1, + ACTIONS(2826), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - STATE(1876), 2, + STATE(1871), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [98189] = 13, + [95636] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2806), 1, + ACTIONS(2828), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - STATE(1877), 2, + STATE(1872), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [98236] = 13, + [95683] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, + ACTIONS(1169), 1, aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2808), 1, + ACTIONS(2830), 1, anon_sym_RPAREN, - STATE(1881), 1, + STATE(1855), 1, aux_sym_can_find_expression_repeat2, - STATE(1938), 1, + STATE(1916), 1, sym__using_first, - STATE(1878), 2, + STATE(1873), 2, sym_comment, sym_include, - STATE(2196), 3, + STATE(2125), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [98283] = 17, - ACTIONS(3), 1, + [95730] = 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(2744), 1, - sym_identifier, - ACTIONS(2748), 1, - aux_sym_while_phrase_token1, - ACTIONS(2750), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2752), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2754), 1, - aux_sym_do_tuning_token1, - ACTIONS(2810), 1, - anon_sym_COLON, - STATE(1977), 1, - sym_to_phrase, - STATE(2120), 1, - sym_while_phrase, - STATE(2200), 1, - aux_sym_do_block_repeat1, - STATE(2784), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(4377), 1, - sym_assignment, - STATE(1879), 2, + ACTIONS(1213), 1, + aux_sym_variable_definition_token2, + STATE(1874), 2, sym_comment, sym_include, - STATE(4099), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [98338] = 13, + ACTIONS(1211), 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, + [95763] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, - aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2812), 1, - anon_sym_RPAREN, - STATE(1881), 1, - aux_sym_can_find_expression_repeat2, - STATE(1938), 1, - sym__using_first, - STATE(1880), 2, - sym_comment, - sym_include, - STATE(2196), 3, - sym_where_clause, + ACTIONS(2626), 1, + sym__terminator, + STATE(1915), 1, sym_query_tuning, + STATE(1953), 1, sym_of, - ACTIONS(1182), 5, + STATE(2043), 1, + sym__pre_tuning, + STATE(2205), 1, + sym_where_clause, + STATE(2207), 1, + aux_sym_for_phrase_repeat1, + STATE(1875), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [98385] = 12, + [95811] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2814), 1, - anon_sym_RPAREN, - ACTIONS(2816), 1, - aux_sym_using_statement_token1, - ACTIONS(2819), 1, - aux_sym_where_clause_token1, - ACTIONS(2825), 1, - aux_sym_query_tuning_token6, - ACTIONS(2828), 1, - aux_sym_of_token1, - STATE(1938), 1, - sym__using_first, - STATE(1881), 3, + ACTIONS(2837), 1, + aux_sym_variable_definition_token2, + ACTIONS(2839), 1, + aux_sym_getter_token1, + ACTIONS(2842), 1, + aux_sym_setter_token1, + STATE(3501), 1, + sym_access_tuning, + STATE(2183), 2, + sym_getter, + sym_setter, + ACTIONS(2834), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(1876), 3, sym_comment, sym_include, - aux_sym_can_find_expression_repeat2, - STATE(2196), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2822), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [98430] = 13, + aux_sym_property_definition_repeat3, + ACTIONS(2832), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [95853] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, - aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1402), 1, + aux_sym_variable_definition_token4, + ACTIONS(1404), 2, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + STATE(1877), 2, + sym_comment, + sym_include, + ACTIONS(1400), 4, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token3, + ACTIONS(1394), 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, + [95889] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2350), 1, + aux_sym_getter_token1, + ACTIONS(2352), 1, + aux_sym_setter_token1, + ACTIONS(2428), 1, + aux_sym_variable_definition_token2, + STATE(1876), 1, + aux_sym_property_definition_repeat3, + STATE(3501), 1, + sym_access_tuning, + STATE(1878), 2, + sym_comment, + sym_include, + STATE(2183), 2, + sym_getter, + sym_setter, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2426), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [95933] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2350), 1, + aux_sym_getter_token1, + ACTIONS(2352), 1, + aux_sym_setter_token1, + ACTIONS(2432), 1, + aux_sym_variable_definition_token2, + STATE(1876), 1, + aux_sym_property_definition_repeat3, + STATE(3501), 1, + sym_access_tuning, + STATE(1879), 2, + sym_comment, + sym_include, + STATE(2183), 2, + sym_getter, + sym_setter, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2430), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [95977] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(693), 1, + sym__namecolon, + ACTIONS(2845), 1, + anon_sym_LPAREN, + ACTIONS(2849), 1, + sym__namedot, + STATE(2159), 1, + aux_sym_qualified_name_repeat1, + STATE(2934), 1, + sym_sort_order, + STATE(3064), 1, + aux_sym_object_access_repeat1, + STATE(1880), 2, + sym_comment, + sym_include, + ACTIONS(2597), 4, + sym_identifier, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(2847), 4, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + [96021] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1332), 1, + aux_sym_buffer_definition_token3, + STATE(1895), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(1324), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1881), 2, + sym_comment, + sym_include, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(1971), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [96061] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2831), 1, - anon_sym_RPAREN, - STATE(1881), 1, - aux_sym_can_find_expression_repeat2, - STATE(1938), 1, - sym__using_first, + ACTIONS(2713), 1, + sym__terminator, + STATE(1915), 1, + sym_query_tuning, + STATE(1935), 1, + sym_of, + STATE(2029), 1, + sym__pre_tuning, + STATE(2241), 1, + aux_sym_for_phrase_repeat1, + STATE(2242), 1, + sym_where_clause, STATE(1882), 2, sym_comment, sym_include, - STATE(2196), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [98477] = 13, + [96109] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, - aux_sym_using_statement_token1, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2833), 1, - anon_sym_RPAREN, - STATE(1881), 1, - aux_sym_can_find_expression_repeat2, - STATE(1938), 1, - sym__using_first, + ACTIONS(2630), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2634), 1, + aux_sym_property_type_token1, + ACTIONS(2636), 1, + aux_sym_inherits_token1, + ACTIONS(2638), 1, + aux_sym_implements_token1, + ACTIONS(2640), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2642), 1, + aux_sym_final_token1, + ACTIONS(2851), 1, + anon_sym_COLON, + STATE(1890), 1, + aux_sym_class_statement_repeat1, STATE(1883), 2, sym_comment, sym_include, - STATE(2196), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [98524] = 13, + STATE(2453), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [96155] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, - aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2835), 1, - anon_sym_RPAREN, - STATE(1881), 1, - aux_sym_can_find_expression_repeat2, - STATE(1938), 1, - sym__using_first, + ACTIONS(2595), 1, + sym__terminator, + STATE(1915), 1, + sym_query_tuning, + STATE(1976), 1, + sym_of, + STATE(2000), 1, + sym__pre_tuning, + STATE(2248), 1, + sym_where_clause, + STATE(2250), 1, + aux_sym_for_phrase_repeat1, STATE(1884), 2, sym_comment, sym_include, - STATE(2196), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [98571] = 13, + [96203] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, - aux_sym_using_statement_token1, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2837), 1, - anon_sym_RPAREN, - STATE(1881), 1, - aux_sym_can_find_expression_repeat2, - STATE(1938), 1, - sym__using_first, + ACTIONS(2630), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2634), 1, + aux_sym_property_type_token1, + ACTIONS(2636), 1, + aux_sym_inherits_token1, + ACTIONS(2638), 1, + aux_sym_implements_token1, + ACTIONS(2640), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2642), 1, + aux_sym_final_token1, + ACTIONS(2674), 1, + anon_sym_COLON, + STATE(1883), 1, + aux_sym_class_statement_repeat1, STATE(1885), 2, sym_comment, sym_include, - STATE(2196), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [98618] = 13, + STATE(2453), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [96249] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, - aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2839), 1, - anon_sym_RPAREN, - STATE(1881), 1, - aux_sym_can_find_expression_repeat2, - STATE(1938), 1, - sym__using_first, + ACTIONS(2705), 1, + sym__terminator, + STATE(1915), 1, + sym_query_tuning, + STATE(1975), 1, + sym_of, + STATE(1996), 1, + sym__pre_tuning, + STATE(2243), 1, + sym_where_clause, + STATE(2244), 1, + aux_sym_for_phrase_repeat1, STATE(1886), 2, sym_comment, sym_include, - STATE(2196), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [98665] = 13, + [96297] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, - aux_sym_using_statement_token1, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2841), 1, - anon_sym_RPAREN, - STATE(1881), 1, - aux_sym_can_find_expression_repeat2, - STATE(1938), 1, - sym__using_first, + ACTIONS(2611), 1, + sym__terminator, + STATE(1915), 1, + sym_query_tuning, + STATE(1930), 1, + sym_of, + STATE(2008), 1, + sym__pre_tuning, + STATE(2216), 1, + aux_sym_for_phrase_repeat1, + STATE(2218), 1, + sym_where_clause, STATE(1887), 2, sym_comment, sym_include, - STATE(2196), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [98712] = 13, + [96345] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, - aux_sym_using_statement_token1, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2843), 1, - anon_sym_RPAREN, - STATE(1881), 1, - aux_sym_can_find_expression_repeat2, - STATE(1938), 1, - sym__using_first, + ACTIONS(2350), 1, + aux_sym_getter_token1, + ACTIONS(2352), 1, + aux_sym_setter_token1, + ACTIONS(2476), 1, + aux_sym_variable_definition_token2, + STATE(1876), 1, + aux_sym_property_definition_repeat3, + STATE(3501), 1, + sym_access_tuning, STATE(1888), 2, sym_comment, sym_include, - STATE(2196), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [98759] = 17, - ACTIONS(3), 1, + STATE(2183), 2, + sym_getter, + sym_setter, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2474), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [96389] = 13, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, - sym_identifier, - ACTIONS(2748), 1, - aux_sym_while_phrase_token1, - ACTIONS(2750), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2752), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2754), 1, - aux_sym_do_tuning_token1, - ACTIONS(2845), 1, + ACTIONS(2630), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2634), 1, + aux_sym_property_type_token1, + ACTIONS(2636), 1, + aux_sym_inherits_token1, + ACTIONS(2638), 1, + aux_sym_implements_token1, + ACTIONS(2640), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2642), 1, + aux_sym_final_token1, + ACTIONS(2853), 1, anon_sym_COLON, - STATE(1959), 1, - sym_to_phrase, - STATE(2163), 1, - aux_sym_do_block_repeat1, - STATE(2164), 1, - sym_while_phrase, - STATE(2826), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(4377), 1, - sym_assignment, + STATE(1890), 1, + aux_sym_class_statement_repeat1, STATE(1889), 2, sym_comment, sym_include, - STATE(4211), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [98814] = 13, + STATE(2453), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [96435] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1178), 1, - aux_sym_using_statement_token1, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2847), 1, - anon_sym_RPAREN, - STATE(1881), 1, - aux_sym_can_find_expression_repeat2, - STATE(1938), 1, - sym__using_first, - STATE(1890), 2, + ACTIONS(2855), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2858), 1, + anon_sym_COLON, + ACTIONS(2860), 1, + aux_sym_property_type_token1, + ACTIONS(2863), 1, + aux_sym_inherits_token1, + ACTIONS(2866), 1, + aux_sym_implements_token1, + ACTIONS(2869), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2872), 1, + aux_sym_final_token1, + STATE(1890), 3, sym_comment, sym_include, - STATE(2196), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [98861] = 13, + aux_sym_class_statement_repeat1, + STATE(2453), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [96479] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2612), 1, + ACTIONS(2630), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2614), 1, - anon_sym_COLON, - ACTIONS(2616), 1, + ACTIONS(2634), 1, aux_sym_property_type_token1, - ACTIONS(2618), 1, + ACTIONS(2636), 1, aux_sym_inherits_token1, - ACTIONS(2620), 1, + ACTIONS(2638), 1, aux_sym_implements_token1, - ACTIONS(2622), 1, + ACTIONS(2640), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2624), 1, + ACTIONS(2642), 1, aux_sym_final_token1, - STATE(1897), 1, + ACTIONS(2684), 1, + anon_sym_COLON, + STATE(1889), 1, aux_sym_class_statement_repeat1, STATE(1891), 2, sym_comment, sym_include, - STATE(2426), 6, + STATE(2453), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [98907] = 12, + [96525] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2481), 1, + ACTIONS(2877), 1, aux_sym_variable_definition_token2, - STATE(1921), 1, + STATE(1876), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, STATE(1892), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2479), 4, + ACTIONS(2875), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [98951] = 12, + [96569] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2851), 1, + ACTIONS(2472), 1, aux_sym_variable_definition_token2, - STATE(1921), 1, + STATE(1876), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, STATE(1893), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2849), 4, + ACTIONS(2470), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [98995] = 12, + [96613] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, - aux_sym_getter_token1, - ACTIONS(2359), 1, - aux_sym_setter_token1, - ACTIONS(2855), 1, - aux_sym_variable_definition_token2, - STATE(1921), 1, - aux_sym_property_definition_repeat3, - STATE(3828), 1, - sym_access_tuning, - STATE(1894), 2, + ACTIONS(2884), 1, + aux_sym_query_tuning_token6, + STATE(1967), 1, + sym_query_tuning, + STATE(1894), 3, sym_comment, sym_include, - STATE(2162), 2, - sym_getter, - sym_setter, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2853), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [99039] = 13, + aux_sym_for_phrase_repeat1, + ACTIONS(2881), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + ACTIONS(2879), 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, + [96649] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2612), 1, + ACTIONS(2666), 1, + aux_sym_buffer_definition_token3, + STATE(1826), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(1324), 2, aux_sym_serialization_tuning_token1, - ACTIONS(2616), 1, - aux_sym_property_type_token1, - ACTIONS(2618), 1, - aux_sym_inherits_token1, - ACTIONS(2620), 1, - aux_sym_implements_token1, - ACTIONS(2622), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2624), 1, - aux_sym_final_token1, - ACTIONS(2857), 1, - anon_sym_COLON, - STATE(1899), 1, - aux_sym_class_statement_repeat1, + aux_sym_serialization_tuning_token2, STATE(1895), 2, sym_comment, sym_include, - STATE(2426), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [99085] = 8, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(1971), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [96689] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1552), 1, - aux_sym_variable_definition_token4, - ACTIONS(1554), 2, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2593), 1, + sym__terminator, + STATE(1915), 1, + sym_query_tuning, + STATE(1973), 1, + sym_of, + STATE(1990), 1, + sym__pre_tuning, + STATE(2231), 1, + aux_sym_for_phrase_repeat1, + STATE(2232), 1, + sym_where_clause, STATE(1896), 2, sym_comment, sym_include, - ACTIONS(1550), 4, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token3, - ACTIONS(1544), 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, - [99121] = 13, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [96737] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2612), 1, + ACTIONS(2630), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2616), 1, + ACTIONS(2634), 1, aux_sym_property_type_token1, - ACTIONS(2618), 1, + ACTIONS(2636), 1, aux_sym_inherits_token1, - ACTIONS(2620), 1, + ACTIONS(2638), 1, aux_sym_implements_token1, - ACTIONS(2622), 1, + ACTIONS(2640), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2624), 1, + ACTIONS(2642), 1, aux_sym_final_token1, - ACTIONS(2859), 1, + ACTIONS(2887), 1, anon_sym_COLON, - STATE(1899), 1, + STATE(1890), 1, aux_sym_class_statement_repeat1, STATE(1897), 2, sym_comment, sym_include, - STATE(2426), 6, + STATE(2453), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [99167] = 13, + [96783] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2612), 1, + ACTIONS(2630), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2616), 1, + ACTIONS(2634), 1, aux_sym_property_type_token1, - ACTIONS(2618), 1, + ACTIONS(2636), 1, aux_sym_inherits_token1, - ACTIONS(2620), 1, + ACTIONS(2638), 1, aux_sym_implements_token1, - ACTIONS(2622), 1, + ACTIONS(2640), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2624), 1, + ACTIONS(2642), 1, aux_sym_final_token1, - ACTIONS(2636), 1, + ACTIONS(2889), 1, anon_sym_COLON, - STATE(1895), 1, + STATE(1890), 1, aux_sym_class_statement_repeat1, STATE(1898), 2, sym_comment, sym_include, - STATE(2426), 6, + STATE(2453), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [99213] = 12, + [96829] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2861), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2864), 1, - anon_sym_COLON, - ACTIONS(2866), 1, - aux_sym_property_type_token1, - ACTIONS(2869), 1, - aux_sym_inherits_token1, - ACTIONS(2872), 1, - aux_sym_implements_token1, - ACTIONS(2875), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2878), 1, - aux_sym_final_token1, - STATE(1899), 3, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(1177), 1, + aux_sym_of_token1, + ACTIONS(2658), 1, + sym__terminator, + STATE(1915), 1, + sym_query_tuning, + STATE(1954), 1, + sym_of, + STATE(2031), 1, + sym__pre_tuning, + STATE(2262), 1, + sym_where_clause, + STATE(2265), 1, + aux_sym_for_phrase_repeat1, + STATE(1899), 2, sym_comment, sym_include, - aux_sym_class_statement_repeat1, - STATE(2426), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [99257] = 14, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [96877] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2608), 1, + ACTIONS(2591), 1, sym__terminator, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(1989), 1, + STATE(1947), 1, sym_of, - STATE(2111), 1, + STATE(2047), 1, sym__pre_tuning, - STATE(2233), 1, - aux_sym_for_phrase_repeat1, - STATE(2246), 1, + STATE(2291), 1, sym_where_clause, + STATE(2292), 1, + aux_sym_for_phrase_repeat1, STATE(1900), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [99305] = 13, + [96925] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2612), 1, + ACTIONS(2630), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2616), 1, + ACTIONS(2634), 1, aux_sym_property_type_token1, - ACTIONS(2618), 1, + ACTIONS(2636), 1, aux_sym_inherits_token1, - ACTIONS(2620), 1, + ACTIONS(2638), 1, aux_sym_implements_token1, - ACTIONS(2622), 1, + ACTIONS(2640), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2624), 1, + ACTIONS(2642), 1, aux_sym_final_token1, - ACTIONS(2881), 1, + ACTIONS(2670), 1, anon_sym_COLON, - STATE(1899), 1, + STATE(1897), 1, aux_sym_class_statement_repeat1, STATE(1901), 2, sym_comment, sym_include, - STATE(2426), 6, + STATE(2453), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [99351] = 14, + [96971] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2660), 1, - sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(1967), 1, - sym_of, - STATE(2088), 1, - sym__pre_tuning, - STATE(2239), 1, - sym_where_clause, - STATE(2242), 1, - aux_sym_for_phrase_repeat1, + ACTIONS(2350), 1, + aux_sym_getter_token1, + ACTIONS(2352), 1, + aux_sym_setter_token1, + ACTIONS(2893), 1, + aux_sym_variable_definition_token2, + STATE(1876), 1, + aux_sym_property_definition_repeat3, + STATE(3501), 1, + sym_access_tuning, STATE(1902), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [99399] = 13, + STATE(2183), 2, + sym_getter, + sym_setter, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2891), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [97015] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2612), 1, + ACTIONS(2630), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2616), 1, + ACTIONS(2634), 1, aux_sym_property_type_token1, - ACTIONS(2618), 1, + ACTIONS(2636), 1, aux_sym_inherits_token1, - ACTIONS(2620), 1, + ACTIONS(2638), 1, aux_sym_implements_token1, - ACTIONS(2622), 1, + ACTIONS(2640), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2624), 1, + ACTIONS(2642), 1, aux_sym_final_token1, - ACTIONS(2883), 1, + ACTIONS(2895), 1, anon_sym_COLON, - STATE(1899), 1, + STATE(1890), 1, aux_sym_class_statement_repeat1, STATE(1903), 2, sym_comment, sym_include, - STATE(2426), 6, + STATE(2453), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [99445] = 12, + [97061] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, - aux_sym_getter_token1, - ACTIONS(2359), 1, - aux_sym_setter_token1, - ACTIONS(2507), 1, - aux_sym_variable_definition_token2, - STATE(1921), 1, - aux_sym_property_definition_repeat3, - STATE(3828), 1, - sym_access_tuning, + ACTIONS(2630), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2634), 1, + aux_sym_property_type_token1, + ACTIONS(2636), 1, + aux_sym_inherits_token1, + ACTIONS(2638), 1, + aux_sym_implements_token1, + ACTIONS(2640), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2642), 1, + aux_sym_final_token1, + ACTIONS(2672), 1, + anon_sym_COLON, + STATE(1903), 1, + aux_sym_class_statement_repeat1, STATE(1904), 2, sym_comment, sym_include, - STATE(2162), 2, - sym_getter, - sym_setter, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2505), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [99489] = 12, + STATE(2453), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [97107] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2887), 1, + ACTIONS(2450), 1, aux_sym_variable_definition_token2, - STATE(1921), 1, + STATE(1876), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, STATE(1905), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2885), 4, + ACTIONS(2448), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [99533] = 14, + [97151] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2720), 1, + ACTIONS(2682), 1, sym__terminator, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(1946), 1, + STATE(1927), 1, sym_of, - STATE(2068), 1, + STATE(2089), 1, sym__pre_tuning, - STATE(2214), 1, + STATE(2215), 1, sym_where_clause, - STATE(2225), 1, + STATE(2219), 1, aux_sym_for_phrase_repeat1, STATE(1906), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [99581] = 12, + [97199] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2457), 1, + ACTIONS(2899), 1, aux_sym_variable_definition_token2, - STATE(1921), 1, + STATE(1876), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, STATE(1907), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2455), 4, + ACTIONS(2897), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [99625] = 12, + [97243] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2503), 1, + ACTIONS(2903), 1, aux_sym_variable_definition_token2, - STATE(1921), 1, + STATE(1876), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, STATE(1908), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2501), 4, + ACTIONS(2901), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [99669] = 14, + [97287] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, + ACTIONS(1177), 1, aux_sym_of_token1, - ACTIONS(2610), 1, + ACTIONS(2711), 1, sym__terminator, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(1960), 1, + STATE(1936), 1, sym_of, - STATE(2043), 1, + STATE(2071), 1, sym__pre_tuning, - STATE(2228), 1, - aux_sym_for_phrase_repeat1, - STATE(2244), 1, + STATE(2295), 1, sym_where_clause, + STATE(2298), 1, + aux_sym_for_phrase_repeat1, STATE(1909), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [99717] = 13, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2612), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2616), 1, - aux_sym_property_type_token1, - ACTIONS(2618), 1, - aux_sym_inherits_token1, - ACTIONS(2620), 1, - aux_sym_implements_token1, - ACTIONS(2622), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2624), 1, - aux_sym_final_token1, - ACTIONS(2693), 1, - anon_sym_COLON, - STATE(1903), 1, - aux_sym_class_statement_repeat1, - STATE(1910), 2, - sym_comment, - sym_include, - STATE(2426), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [99763] = 12, + [97335] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2891), 1, + ACTIONS(2505), 1, aux_sym_variable_definition_token2, - STATE(1921), 1, + STATE(1876), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, - STATE(1911), 2, + STATE(1910), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2889), 4, + ACTIONS(2503), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [99807] = 12, + [97379] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2497), 1, + ACTIONS(2499), 1, aux_sym_variable_definition_token2, - STATE(1921), 1, + STATE(1876), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, - sym_access_tuning, - STATE(1912), 2, - sym_comment, - sym_include, - STATE(2162), 2, - sym_getter, - sym_setter, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2495), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [99851] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2728), 1, - sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(1976), 1, - sym_of, - STATE(2012), 1, - sym__pre_tuning, - STATE(2302), 1, - aux_sym_for_phrase_repeat1, - STATE(2308), 1, - sym_where_clause, - STATE(1913), 2, + STATE(3501), 1, + sym_access_tuning, + STATE(1911), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [99899] = 10, + STATE(2183), 2, + sym_getter, + sym_setter, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2497), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [97423] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1385), 1, - aux_sym_buffer_definition_token3, - STATE(1923), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(1377), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1914), 2, + ACTIONS(2350), 1, + aux_sym_getter_token1, + ACTIONS(2352), 1, + aux_sym_setter_token1, + ACTIONS(2446), 1, + aux_sym_variable_definition_token2, + STATE(1876), 1, + aux_sym_property_definition_repeat3, + STATE(3501), 1, + sym_access_tuning, + STATE(1912), 2, sym_comment, sym_include, - ACTIONS(1375), 3, + STATE(2183), 2, + sym_getter, + sym_setter, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - STATE(1948), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [99939] = 13, + ACTIONS(2444), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [97467] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2612), 1, + ACTIONS(2630), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2616), 1, + ACTIONS(2632), 1, + anon_sym_COLON, + ACTIONS(2634), 1, aux_sym_property_type_token1, - ACTIONS(2618), 1, + ACTIONS(2636), 1, aux_sym_inherits_token1, - ACTIONS(2620), 1, + ACTIONS(2638), 1, aux_sym_implements_token1, - ACTIONS(2622), 1, + ACTIONS(2640), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2624), 1, + ACTIONS(2642), 1, aux_sym_final_token1, - ACTIONS(2893), 1, - anon_sym_COLON, - STATE(1899), 1, + STATE(1898), 1, aux_sym_class_statement_repeat1, - STATE(1915), 2, + STATE(1913), 2, sym_comment, sym_include, - STATE(2426), 6, + STATE(2453), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [99985] = 12, + [97513] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2350), 1, aux_sym_getter_token1, - ACTIONS(2359), 1, + ACTIONS(2352), 1, aux_sym_setter_token1, - ACTIONS(2491), 1, + ACTIONS(2907), 1, aux_sym_variable_definition_token2, - STATE(1921), 1, + STATE(1876), 1, aux_sym_property_definition_repeat3, - STATE(3828), 1, + STATE(3501), 1, sym_access_tuning, - STATE(1916), 2, + STATE(1914), 2, sym_comment, sym_include, - STATE(2162), 2, + STATE(2183), 2, sym_getter, sym_setter, - ACTIONS(1375), 3, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2489), 4, + ACTIONS(2905), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [100029] = 14, + [97557] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + STATE(1915), 2, + sym_comment, + sym_include, + ACTIONS(2909), 13, + sym__terminator, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2628), 1, - sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(1981), 1, - sym_of, - STATE(2020), 1, - sym__pre_tuning, - STATE(2206), 1, - sym_where_clause, - STATE(2263), 1, - aux_sym_for_phrase_repeat1, - STATE(1917), 2, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [97586] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2913), 1, + aux_sym__using_and_token1, + STATE(1917), 1, + aux_sym_can_find_expression_repeat1, + STATE(2074), 1, + sym__using_and, + STATE(1916), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(2911), 10, + anon_sym_RPAREN, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [100077] = 14, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + [97621] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(2913), 1, + aux_sym__using_and_token1, + STATE(1918), 1, + aux_sym_can_find_expression_repeat1, + STATE(2074), 1, + sym__using_and, + STATE(1917), 2, + sym_comment, + sym_include, + ACTIONS(2915), 10, + anon_sym_RPAREN, + aux_sym_using_statement_token1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, aux_sym_of_token1, - ACTIONS(2724), 1, - sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(1941), 1, - sym_of, - STATE(2008), 1, - sym__pre_tuning, - STATE(2207), 1, - sym_where_clause, - STATE(2208), 1, - aux_sym_for_phrase_repeat1, - STATE(1918), 2, + [97656] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2919), 1, + aux_sym__using_and_token1, + STATE(2074), 1, + sym__using_and, + STATE(1918), 3, sym_comment, sym_include, - ACTIONS(1182), 5, + aux_sym_can_find_expression_repeat1, + ACTIONS(2917), 10, + anon_sym_RPAREN, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [100125] = 13, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + [97689] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2612), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2616), 1, - aux_sym_property_type_token1, - ACTIONS(2618), 1, - aux_sym_inherits_token1, - ACTIONS(2620), 1, - aux_sym_implements_token1, - ACTIONS(2622), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2624), 1, - aux_sym_final_token1, - ACTIONS(2710), 1, - anon_sym_COLON, - STATE(1915), 1, - aux_sym_class_statement_repeat1, + ACTIONS(2924), 1, + aux_sym_variable_definition_token4, STATE(1919), 2, sym_comment, sym_include, - STATE(2426), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [100171] = 12, + ACTIONS(2922), 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, + [97720] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, - aux_sym_getter_token1, - ACTIONS(2359), 1, - aux_sym_setter_token1, - ACTIONS(2897), 1, - aux_sym_variable_definition_token2, - STATE(1921), 1, - aux_sym_property_definition_repeat3, - STATE(3828), 1, - sym_access_tuning, + ACTIONS(1402), 1, + aux_sym_variable_definition_token4, + ACTIONS(1408), 1, + aux_sym_property_definition_token1, STATE(1920), 2, sym_comment, sym_include, - STATE(2162), 2, - sym_getter, - sym_setter, - ACTIONS(1375), 3, + ACTIONS(1400), 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, - ACTIONS(2895), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [100215] = 11, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token3, + [97753] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2926), 1, + sym_identifier, + STATE(2217), 1, + aux_sym_sort_clause_repeat1, + STATE(2338), 1, + aux_sym_index_definition_repeat1, + STATE(2588), 1, + sym_index_tuning, + STATE(2925), 1, + sym_sort_column, + STATE(4312), 1, + sym_object_access, + ACTIONS(2930), 2, + aux_sym_variable_definition_token5, + aux_sym_index_tuning_token1, + STATE(1921), 2, + sym_comment, + sym_include, + STATE(2297), 2, + sym_qualified_name, + sym_function_call, + ACTIONS(2928), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [97798] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2904), 1, - aux_sym_variable_definition_token2, - ACTIONS(2906), 1, - aux_sym_getter_token1, - ACTIONS(2909), 1, - aux_sym_setter_token1, - STATE(3828), 1, - sym_access_tuning, - STATE(2162), 2, - sym_getter, - sym_setter, - ACTIONS(2901), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1921), 3, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(2934), 1, + aux_sym_variable_tuning_token1, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(2010), 1, + aux_sym_field_definition_repeat1, + STATE(2296), 1, + sym_field_option, + ACTIONS(2938), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + STATE(1922), 2, sym_comment, sym_include, - aux_sym_property_definition_repeat3, - ACTIONS(2899), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [100257] = 13, + ACTIONS(2932), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(2936), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + [97841] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2926), 1, + sym_identifier, + STATE(1921), 1, + aux_sym_index_definition_repeat1, + STATE(2278), 1, + aux_sym_sort_clause_repeat1, + STATE(2588), 1, + sym_index_tuning, + STATE(2925), 1, + sym_sort_column, + STATE(4312), 1, + sym_object_access, + ACTIONS(2930), 2, + aux_sym_variable_definition_token5, + aux_sym_index_tuning_token1, + STATE(1923), 2, + sym_comment, + sym_include, + STATE(2297), 2, + sym_qualified_name, + sym_function_call, + ACTIONS(2940), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [97886] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2612), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2616), 1, - aux_sym_property_type_token1, - ACTIONS(2618), 1, - aux_sym_inherits_token1, - ACTIONS(2620), 1, - aux_sym_implements_token1, - ACTIONS(2622), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2624), 1, - aux_sym_final_token1, - ACTIONS(2626), 1, + ACTIONS(2942), 1, + sym__terminator, + ACTIONS(2946), 1, + aux_sym_variable_definition_token6, + ACTIONS(2948), 1, + anon_sym_LIKE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + STATE(2289), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2377), 1, + sym_temp_table_tuning, + STATE(2654), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(2944), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1924), 2, + sym_comment, + sym_include, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [97932] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2954), 1, anon_sym_COLON, - STATE(1901), 1, - aux_sym_class_statement_repeat1, - STATE(1922), 2, + ACTIONS(2956), 1, + aux_sym_while_phrase_token1, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + STATE(2122), 1, + aux_sym_do_block_repeat1, + STATE(2138), 1, + sym_while_phrase, + STATE(2799), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(1925), 2, sym_comment, sym_include, - STATE(2426), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [100303] = 10, + STATE(4445), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [97978] = 14, 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_buffer_definition_token3, - STATE(1837), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(1377), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1923), 2, + ACTIONS(2948), 1, + anon_sym_LIKE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(2964), 1, + sym__terminator, + ACTIONS(2966), 1, + aux_sym_variable_definition_token6, + STATE(2289), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2377), 1, + sym_temp_table_tuning, + STATE(2598), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(2944), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1926), 2, + sym_comment, + sym_include, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [98024] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2968), 1, + sym__terminator, + STATE(1915), 1, + sym_query_tuning, + STATE(2068), 1, + sym__pre_tuning, + STATE(2225), 1, + aux_sym_for_phrase_repeat1, + STATE(2226), 1, + sym_where_clause, + STATE(1927), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [98066] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2970), 1, + aux_sym_buffer_definition_token1, + ACTIONS(2972), 1, + aux_sym_query_definition_token1, + STATE(1963), 1, + aux_sym_buffer_definition_repeat1, + STATE(1928), 2, sym_comment, sym_include, - ACTIONS(1375), 3, + STATE(2280), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1322), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - STATE(1948), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(1373), 4, + ACTIONS(1320), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [100343] = 12, + [98104] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, - aux_sym_getter_token1, - ACTIONS(2359), 1, - aux_sym_setter_token1, - ACTIONS(2431), 1, - aux_sym_variable_definition_token2, - STATE(1921), 1, - aux_sym_property_definition_repeat3, - STATE(3828), 1, - sym_access_tuning, - STATE(1924), 2, + ACTIONS(2956), 1, + aux_sym_while_phrase_token1, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(2974), 1, + anon_sym_COLON, + STATE(2113), 1, + aux_sym_do_block_repeat1, + STATE(2115), 1, + sym_while_phrase, + STATE(2843), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(1929), 2, sym_comment, sym_include, - STATE(2162), 2, - sym_getter, - sym_setter, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2429), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [100387] = 12, + STATE(4263), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [98150] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2976), 1, + sym__terminator, + STATE(1915), 1, + sym_query_tuning, + STATE(2041), 1, + sym__pre_tuning, + STATE(2198), 1, + sym_where_clause, + STATE(2199), 1, + aux_sym_for_phrase_repeat1, + STATE(1930), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [98192] = 7, + 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_input_stream_tuning_token10, + ACTIONS(2982), 1, + aux_sym_input_stream_tuning_token11, + STATE(1931), 2, + sym_comment, + sym_include, + ACTIONS(2978), 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, + [98224] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2956), 1, + aux_sym_while_phrase_token1, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(2984), 1, + anon_sym_COLON, + STATE(2098), 1, + aux_sym_do_block_repeat1, + STATE(2146), 1, + sym_while_phrase, + STATE(2835), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(1932), 2, + sym_comment, + sym_include, + STATE(4223), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [98270] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, - aux_sym_getter_token1, - ACTIONS(2359), 1, - aux_sym_setter_token1, - ACTIONS(2477), 1, - aux_sym_variable_definition_token2, - STATE(1921), 1, - aux_sym_property_definition_repeat3, - STATE(3828), 1, - sym_access_tuning, - STATE(1925), 2, + ACTIONS(2956), 1, + aux_sym_while_phrase_token1, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(2986), 1, + anon_sym_COLON, + STATE(2107), 1, + sym_while_phrase, + STATE(2172), 1, + aux_sym_do_block_repeat1, + STATE(2781), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(1933), 2, sym_comment, sym_include, - STATE(2162), 2, - sym_getter, - sym_setter, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2475), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [100431] = 14, + STATE(4051), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [98316] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2708), 1, + ACTIONS(2948), 1, + anon_sym_LIKE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(2988), 1, sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(1957), 1, - sym_of, - STATE(2039), 1, - sym__pre_tuning, - STATE(2313), 1, - aux_sym_for_phrase_repeat1, - STATE(2317), 1, - sym_where_clause, - STATE(1926), 2, + ACTIONS(2990), 1, + aux_sym_variable_definition_token6, + STATE(2289), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2377), 1, + sym_temp_table_tuning, + STATE(2542), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(2944), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1934), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [100479] = 14, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [98362] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2726), 1, + ACTIONS(2992), 1, sym__terminator, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(1943), 1, - sym_of, - STATE(2066), 1, + STATE(2024), 1, sym__pre_tuning, - STATE(2320), 1, + STATE(2257), 1, aux_sym_for_phrase_repeat1, - STATE(2330), 1, + STATE(2258), 1, sym_where_clause, - STATE(1927), 2, + STATE(1935), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [100527] = 14, + [98404] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(1186), 1, - aux_sym_of_token1, - ACTIONS(2722), 1, + ACTIONS(2994), 1, sym__terminator, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(1982), 1, - sym_of, - STATE(2017), 1, + STATE(2037), 1, sym__pre_tuning, - STATE(2205), 1, - sym_where_clause, - STATE(2327), 1, + STATE(2304), 1, aux_sym_for_phrase_repeat1, - STATE(1928), 2, + STATE(2305), 1, + sym_where_clause, + STATE(1936), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [100575] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(114), 1, - sym__namecolon, - ACTIONS(2912), 1, - anon_sym_LPAREN, - ACTIONS(2916), 1, - sym__namedot, - STATE(14), 1, - aux_sym_object_access_repeat1, - STATE(2165), 1, - aux_sym_qualified_name_repeat1, - STATE(2896), 1, - sym_sort_order, - STATE(1929), 2, - sym_comment, - sym_include, - ACTIONS(2730), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - ACTIONS(2914), 4, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - [100619] = 8, + [98446] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2923), 1, - aux_sym_query_tuning_token6, - STATE(2001), 1, - sym_query_tuning, - STATE(1930), 3, + ACTIONS(2996), 1, + aux_sym_buffer_definition_token1, + ACTIONS(2998), 1, + aux_sym_query_definition_token1, + STATE(1963), 1, + aux_sym_buffer_definition_repeat1, + STATE(1937), 2, sym_comment, sym_include, - aux_sym_for_phrase_repeat1, - ACTIONS(2920), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - ACTIONS(2918), 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, - [100655] = 7, + STATE(2280), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [98484] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1552), 1, - aux_sym_variable_definition_token4, - ACTIONS(1558), 1, - aux_sym_property_definition_token1, - STATE(1931), 2, + ACTIONS(3000), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3002), 1, + aux_sym_query_definition_token1, + STATE(1963), 1, + aux_sym_buffer_definition_repeat1, + STATE(1938), 2, sym_comment, sym_include, - ACTIONS(1550), 11, + STATE(2280), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1320), 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, - [100688] = 13, - ACTIONS(3), 1, + [98522] = 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(2926), 1, - sym_identifier, - STATE(2297), 1, - aux_sym_sort_clause_repeat1, - STATE(2338), 1, - aux_sym_index_definition_repeat1, - STATE(2642), 1, - sym_index_tuning, - STATE(2890), 1, - sym_sort_column, - STATE(4255), 1, - sym_object_access, - ACTIONS(2930), 2, - aux_sym_variable_definition_token5, - aux_sym_index_tuning_token1, - STATE(1932), 2, + ACTIONS(3004), 1, + sym__terminator, + ACTIONS(3012), 1, + aux_sym_input_stream_tuning_token9, + STATE(2105), 1, + sym_input_stream_tuning, + ACTIONS(3006), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1939), 3, sym_comment, sym_include, - STATE(2321), 2, - sym_qualified_name, - sym_function_call, - ACTIONS(2928), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [100733] = 5, + aux_sym_input_stream_statement_repeat1, + ACTIONS(3009), 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, + [98558] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1933), 2, + ACTIONS(2948), 1, + anon_sym_LIKE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3015), 1, + sym__terminator, + ACTIONS(3017), 1, + aux_sym_variable_definition_token6, + STATE(1924), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2377), 1, + sym_temp_table_tuning, + STATE(2647), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(2944), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1940), 2, sym_comment, sym_include, - ACTIONS(2932), 13, - sym__terminator, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [100762] = 12, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [98604] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(2936), 1, - aux_sym_variable_tuning_token1, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(2103), 1, - aux_sym_field_definition_repeat1, - STATE(2203), 1, - sym_field_option, - ACTIONS(2940), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - STATE(1934), 2, + ACTIONS(3019), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3021), 1, + aux_sym_query_definition_token1, + STATE(1963), 1, + aux_sym_buffer_definition_repeat1, + STATE(1941), 2, sym_comment, sym_include, - ACTIONS(2934), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - ACTIONS(2938), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - [100805] = 8, + STATE(2280), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [98642] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2944), 1, - aux_sym__using_and_token1, - STATE(1937), 1, - aux_sym_can_find_expression_repeat1, + ACTIONS(1224), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3023), 1, + sym__terminator, + STATE(1939), 1, + aux_sym_input_stream_statement_repeat1, STATE(2105), 1, - sym__using_and, - STATE(1935), 2, + sym_input_stream_tuning, + ACTIONS(1220), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1942), 2, sym_comment, sym_include, - ACTIONS(2942), 10, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - [100840] = 6, + ACTIONS(1222), 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, + [98680] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -129489,448 +126391,407 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(65), 1, anon_sym_LBRACE, ACTIONS(2948), 1, - aux_sym_variable_definition_token4, - STATE(1936), 2, + anon_sym_LIKE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3015), 1, + sym__terminator, + ACTIONS(3017), 1, + aux_sym_variable_definition_token6, + STATE(2289), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2377), 1, + sym_temp_table_tuning, + STATE(2647), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(2944), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1943), 2, sym_comment, sym_include, - ACTIONS(2946), 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, - [100871] = 7, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [98726] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2952), 1, - aux_sym__using_and_token1, + ACTIONS(1224), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3025), 1, + sym__terminator, + STATE(1939), 1, + aux_sym_input_stream_statement_repeat1, STATE(2105), 1, - sym__using_and, - STATE(1937), 3, + sym_input_stream_tuning, + ACTIONS(1220), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1944), 2, sym_comment, sym_include, - aux_sym_can_find_expression_repeat1, - ACTIONS(2950), 10, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - [100904] = 8, + ACTIONS(1222), 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, + [98764] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2944), 1, - aux_sym__using_and_token1, - STATE(1935), 1, - aux_sym_can_find_expression_repeat1, - STATE(2105), 1, - sym__using_and, - STATE(1938), 2, + ACTIONS(2948), 1, + anon_sym_LIKE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3027), 1, + sym__terminator, + ACTIONS(3029), 1, + aux_sym_variable_definition_token6, + STATE(2289), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2377), 1, + sym_temp_table_tuning, + STATE(2561), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(2944), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1945), 2, sym_comment, sym_include, - ACTIONS(2955), 10, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - [100939] = 13, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [98810] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, - sym_identifier, - STATE(1932), 1, - aux_sym_index_definition_repeat1, - STATE(2280), 1, - aux_sym_sort_clause_repeat1, - STATE(2642), 1, - sym_index_tuning, - STATE(2890), 1, - sym_sort_column, - STATE(4255), 1, - sym_object_access, - ACTIONS(2930), 2, - aux_sym_variable_definition_token5, - aux_sym_index_tuning_token1, - STATE(1939), 2, + ACTIONS(2603), 1, + sym__namedot, + STATE(1956), 1, + aux_sym_qualified_name_repeat1, + STATE(1946), 2, sym_comment, sym_include, - STATE(2321), 2, - sym_qualified_name, - sym_function_call, - ACTIONS(2957), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [100984] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2959), 1, + ACTIONS(79), 10, + sym_identifier, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(2961), 1, - aux_sym_while_phrase_token1, - ACTIONS(2963), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - STATE(2126), 1, - sym_while_phrase, - STATE(2131), 1, - aux_sym_do_block_repeat1, - STATE(2882), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(1940), 2, - sym_comment, - sym_include, - STATE(4489), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [101030] = 12, + 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, + [98842] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2969), 1, + ACTIONS(3031), 1, sym__terminator, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(2079), 1, + STATE(2070), 1, sym__pre_tuning, - STATE(2278), 1, - sym_where_clause, - STATE(2282), 1, + STATE(2293), 1, aux_sym_for_phrase_repeat1, - STATE(1941), 2, + STATE(2294), 1, + sym_where_clause, + STATE(1947), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [101072] = 10, + [98884] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2971), 1, - sym__terminator, - STATE(1974), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(1229), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1942), 2, + ACTIONS(2956), 1, + aux_sym_while_phrase_token1, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(3033), 1, + anon_sym_COLON, + STATE(2123), 1, + sym_while_phrase, + STATE(2167), 1, + aux_sym_do_block_repeat1, + STATE(2681), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(1948), 2, sym_comment, sym_include, - ACTIONS(1231), 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, - [101110] = 12, + STATE(4517), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [98930] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(2973), 1, + ACTIONS(1224), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3035), 1, sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(2070), 1, - sym__pre_tuning, - STATE(2285), 1, - sym_where_clause, - STATE(2286), 1, - aux_sym_for_phrase_repeat1, - STATE(1943), 2, + STATE(1939), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2105), 1, + sym_input_stream_tuning, + ACTIONS(1220), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1949), 2, sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [101152] = 14, + sym_include, + ACTIONS(1222), 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, + [98968] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2975), 1, - sym__terminator, - ACTIONS(2979), 1, - aux_sym_variable_definition_token6, - ACTIONS(2981), 1, + ACTIONS(2948), 1, anon_sym_LIKE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - STATE(2000), 1, + ACTIONS(3027), 1, + sym__terminator, + ACTIONS(3029), 1, + aux_sym_variable_definition_token6, + STATE(1934), 1, aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, + STATE(2377), 1, sym_temp_table_tuning, - STATE(2515), 1, + STATE(2561), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, + ACTIONS(2944), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1944), 2, + STATE(1950), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [101198] = 14, + [99014] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2956), 1, + aux_sym_while_phrase_token1, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(3037), 1, + anon_sym_COLON, + STATE(2117), 1, + sym_while_phrase, + STATE(2119), 1, + aux_sym_do_block_repeat1, + STATE(2788), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(1951), 2, + sym_comment, + sym_include, + STATE(4017), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [99060] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, + ACTIONS(2948), 1, anon_sym_LIKE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(2987), 1, + ACTIONS(3039), 1, sym__terminator, - ACTIONS(2989), 1, + ACTIONS(3041), 1, aux_sym_variable_definition_token6, - STATE(2314), 1, + STATE(1943), 1, aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, + STATE(2377), 1, sym_temp_table_tuning, - STATE(2656), 1, + STATE(2626), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, + ACTIONS(2944), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1945), 2, + STATE(1952), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [101244] = 12, + [99106] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2991), 1, + ACTIONS(3043), 1, sym__terminator, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(2081), 1, + STATE(2090), 1, sym__pre_tuning, - STATE(2306), 1, + STATE(2212), 1, aux_sym_for_phrase_repeat1, - STATE(2315), 1, + STATE(2213), 1, sym_where_clause, - STATE(1946), 2, + STATE(1953), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [101286] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1233), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2993), 1, - sym__terminator, - STATE(1974), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(1229), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1947), 2, - sym_comment, - sym_include, - ACTIONS(1231), 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, - [101324] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1552), 1, - aux_sym_variable_definition_token4, - STATE(1948), 2, - sym_comment, - sym_include, - ACTIONS(1550), 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, - [101354] = 10, + [99148] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2995), 1, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3045), 1, sym__terminator, - STATE(1974), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(1229), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1949), 2, + STATE(1915), 1, + sym_query_tuning, + STATE(2015), 1, + sym__pre_tuning, + STATE(2254), 1, + aux_sym_for_phrase_repeat1, + STATE(2255), 1, + sym_where_clause, + STATE(1954), 2, sym_comment, sym_include, - ACTIONS(1231), 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, - [101392] = 14, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [99190] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, + ACTIONS(2948), 1, anon_sym_LIKE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(2997), 1, + ACTIONS(3047), 1, sym__terminator, - ACTIONS(2999), 1, + ACTIONS(3049), 1, aux_sym_variable_definition_token6, - STATE(1992), 1, + STATE(2289), 1, aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, + STATE(2377), 1, sym_temp_table_tuning, - STATE(2531), 1, + STATE(2640), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, + ACTIONS(2944), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1950), 2, + STATE(1955), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [101438] = 6, + [99236] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3001), 1, + ACTIONS(3051), 1, sym__namedot, - STATE(1951), 3, + STATE(1956), 3, sym_comment, sym_include, aux_sym_qualified_name_repeat1, - ACTIONS(71), 10, + ACTIONS(91), 10, sym_identifier, anon_sym_COMMA, anon_sym_COLON, @@ -129941,1641 +126802,1620 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_order_token4, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [101468] = 14, + [99266] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2961), 1, - aux_sym_while_phrase_token1, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3004), 1, - anon_sym_COLON, - STATE(2144), 1, - sym_while_phrase, - STATE(2145), 1, - aux_sym_do_block_repeat1, - STATE(2856), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(1952), 2, + ACTIONS(1406), 1, + aux_sym_function_parameter_token1, + STATE(4169), 1, + sym_access_tuning, + STATE(1957), 2, sym_comment, sym_include, - STATE(4222), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [101514] = 14, + ACTIONS(3054), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1400), 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, + [99300] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, + ACTIONS(2948), 1, anon_sym_LIKE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3006), 1, + ACTIONS(3057), 1, sym__terminator, - ACTIONS(3008), 1, + ACTIONS(3059), 1, aux_sym_variable_definition_token6, - STATE(2314), 1, + STATE(1945), 1, aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, + STATE(2377), 1, sym_temp_table_tuning, - STATE(2572), 1, + STATE(2587), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, + ACTIONS(2944), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1953), 2, + STATE(1958), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [101560] = 14, + [99346] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, + ACTIONS(2948), 1, anon_sym_LIKE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3010), 1, + ACTIONS(3061), 1, sym__terminator, - ACTIONS(3012), 1, + ACTIONS(3063), 1, aux_sym_variable_definition_token6, - STATE(2314), 1, + STATE(1978), 1, aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, + STATE(2377), 1, sym_temp_table_tuning, - STATE(2637), 1, + STATE(2616), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, + ACTIONS(2944), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1954), 2, + STATE(1959), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [101606] = 14, + [99392] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3065), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3067), 1, + aux_sym_query_definition_token1, + STATE(1963), 1, + aux_sym_buffer_definition_repeat1, + STATE(1960), 2, + sym_comment, + sym_include, + STATE(2280), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1322), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1320), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [99430] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2956), 1, + aux_sym_while_phrase_token1, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(3069), 1, + anon_sym_COLON, + STATE(2137), 1, + sym_while_phrase, + STATE(2160), 1, + aux_sym_do_block_repeat1, + STATE(2791), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(1961), 2, + sym_comment, + sym_include, + STATE(4484), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [99476] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2956), 1, + aux_sym_while_phrase_token1, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(3071), 1, + anon_sym_COLON, + STATE(2150), 1, + sym_while_phrase, + STATE(2184), 1, + aux_sym_do_block_repeat1, + STATE(2669), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(1962), 2, + sym_comment, + sym_include, + STATE(4564), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [99522] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3079), 2, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + STATE(2280), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3076), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(1963), 3, + sym_comment, + sym_include, + aux_sym_buffer_definition_repeat1, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [99556] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, + ACTIONS(2948), 1, anon_sym_LIKE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3014), 1, + ACTIONS(3081), 1, sym__terminator, - ACTIONS(3016), 1, + ACTIONS(3083), 1, aux_sym_variable_definition_token6, - STATE(1954), 1, + STATE(1955), 1, aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, + STATE(2377), 1, sym_temp_table_tuning, - STATE(2550), 1, + STATE(2597), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, + ACTIONS(2944), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1955), 2, + STATE(1964), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [101652] = 14, + [99602] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, + ACTIONS(2948), 1, anon_sym_LIKE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3018), 1, + ACTIONS(3081), 1, sym__terminator, - ACTIONS(3020), 1, + ACTIONS(3083), 1, aux_sym_variable_definition_token6, - STATE(2314), 1, + STATE(2289), 1, aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, + STATE(2377), 1, sym_temp_table_tuning, - STATE(2622), 1, + STATE(2597), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, + ACTIONS(2944), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1956), 2, + STATE(1965), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [101698] = 12, + [99648] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3022), 1, + ACTIONS(1224), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3085), 1, sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(2009), 1, - sym__pre_tuning, - STATE(2309), 1, - sym_where_clause, - STATE(2311), 1, - aux_sym_for_phrase_repeat1, - STATE(1957), 2, + STATE(1939), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2105), 1, + sym_input_stream_tuning, + ACTIONS(1220), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1966), 2, + sym_comment, + sym_include, + ACTIONS(1222), 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, + [99686] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(1967), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(3087), 12, + sym__terminator, + 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, - [101740] = 10, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [99714] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1224), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(3024), 1, + ACTIONS(3089), 1, sym__terminator, - STATE(1974), 1, + STATE(1939), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2105), 1, sym_input_stream_tuning, - ACTIONS(1229), 2, + ACTIONS(1220), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1958), 2, + STATE(1968), 2, sym_comment, sym_include, - ACTIONS(1231), 6, + ACTIONS(1222), 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, - [101778] = 14, + [99752] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2961), 1, + ACTIONS(2956), 1, aux_sym_while_phrase_token1, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3026), 1, + ACTIONS(3091), 1, anon_sym_COLON, - STATE(2194), 1, - sym_while_phrase, - STATE(2198), 1, + STATE(2133), 1, aux_sym_do_block_repeat1, - STATE(2683), 1, + STATE(2143), 1, + sym_while_phrase, + STATE(2730), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(1959), 2, + STATE(1969), 2, sym_comment, sym_include, - STATE(4172), 3, + STATE(4254), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [101824] = 12, + [99798] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1224), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3093), 1, + sym__terminator, + STATE(1939), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2105), 1, + sym_input_stream_tuning, + ACTIONS(1220), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1970), 2, + sym_comment, + sym_include, + ACTIONS(1222), 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, + [99836] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1402), 1, + aux_sym_variable_definition_token4, + STATE(1971), 2, + sym_comment, + sym_include, + ACTIONS(1400), 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, + [99866] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1224), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3095), 1, + sym__terminator, + STATE(1939), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2105), 1, + sym_input_stream_tuning, + ACTIONS(1220), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1972), 2, + sym_comment, + sym_include, + ACTIONS(1222), 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, + [99904] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3097), 1, + sym__terminator, + STATE(1915), 1, + sym_query_tuning, + STATE(2061), 1, + sym__pre_tuning, + STATE(2220), 1, + sym_where_clause, + STATE(2221), 1, + aux_sym_for_phrase_repeat1, + STATE(1973), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [99946] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2948), 1, + anon_sym_LIKE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3099), 1, + sym__terminator, + ACTIONS(3101), 1, + aux_sym_variable_definition_token6, + STATE(2289), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2377), 1, + sym_temp_table_tuning, + STATE(2537), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(2944), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1974), 2, + sym_comment, + sym_include, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [99992] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3103), 1, + sym__terminator, + STATE(1915), 1, + sym_query_tuning, + STATE(1999), 1, + sym__pre_tuning, + STATE(2246), 1, + aux_sym_for_phrase_repeat1, + STATE(2247), 1, + sym_where_clause, + STATE(1975), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [100034] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3028), 1, + ACTIONS(3105), 1, sym__terminator, - STATE(1933), 1, + STATE(1915), 1, sym_query_tuning, - STATE(2062), 1, + STATE(2007), 1, sym__pre_tuning, - STATE(2209), 1, + STATE(2261), 1, aux_sym_for_phrase_repeat1, - STATE(2210), 1, + STATE(2263), 1, sym_where_clause, - STATE(1960), 2, + STATE(1976), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [101866] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2961), 1, - aux_sym_while_phrase_token1, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3030), 1, - anon_sym_COLON, - STATE(2122), 1, - aux_sym_do_block_repeat1, - STATE(2177), 1, - sym_while_phrase, - STATE(2875), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(1961), 2, - sym_comment, - sym_include, - STATE(4256), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [101912] = 10, + [100076] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1224), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(3032), 1, + ACTIONS(3107), 1, sym__terminator, - STATE(1974), 1, + STATE(1939), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2105), 1, sym_input_stream_tuning, - ACTIONS(1229), 2, + ACTIONS(1220), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1962), 2, + STATE(1977), 2, sym_comment, sym_include, - ACTIONS(1231), 6, + ACTIONS(1222), 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, - [101950] = 14, + [100114] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, + ACTIONS(2948), 1, anon_sym_LIKE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3034), 1, + ACTIONS(3109), 1, sym__terminator, - ACTIONS(3036), 1, + ACTIONS(3111), 1, aux_sym_variable_definition_token6, - STATE(2314), 1, + STATE(2289), 1, aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, + STATE(2377), 1, sym_temp_table_tuning, - STATE(2672), 1, + STATE(2618), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, + ACTIONS(2944), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1963), 2, + STATE(1978), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [101996] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2961), 1, - aux_sym_while_phrase_token1, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3038), 1, - anon_sym_COLON, - STATE(2183), 1, - aux_sym_do_block_repeat1, - STATE(2184), 1, - sym_while_phrase, - STATE(2721), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(1964), 2, - sym_comment, - sym_include, - STATE(4038), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [102042] = 14, + [100160] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, + ACTIONS(2948), 1, anon_sym_LIKE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3034), 1, + ACTIONS(3113), 1, sym__terminator, - ACTIONS(3036), 1, + ACTIONS(3115), 1, aux_sym_variable_definition_token6, - STATE(1945), 1, + STATE(1982), 1, aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, + STATE(2377), 1, sym_temp_table_tuning, - STATE(2672), 1, + STATE(2506), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, + ACTIONS(2944), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1965), 2, + STATE(1979), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [102088] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3040), 1, - aux_sym_buffer_definition_token1, - ACTIONS(3042), 1, - aux_sym_query_definition_token1, - STATE(1984), 1, - aux_sym_buffer_definition_repeat1, - STATE(1966), 2, - sym_comment, - sym_include, - STATE(2240), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [102126] = 12, + [100206] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3044), 1, + ACTIONS(1224), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3117), 1, sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(2030), 1, - sym__pre_tuning, - STATE(2299), 1, - aux_sym_for_phrase_repeat1, - STATE(2301), 1, - sym_where_clause, - STATE(1967), 2, + STATE(1939), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2105), 1, + sym_input_stream_tuning, + ACTIONS(1220), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1980), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [102168] = 14, + ACTIONS(1222), 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, + [100244] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, + ACTIONS(2948), 1, anon_sym_LIKE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3014), 1, + ACTIONS(3109), 1, sym__terminator, - ACTIONS(3016), 1, + ACTIONS(3111), 1, aux_sym_variable_definition_token6, - STATE(2314), 1, + STATE(1926), 1, aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, + STATE(2377), 1, sym_temp_table_tuning, - STATE(2550), 1, + STATE(2618), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, + ACTIONS(2944), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1968), 2, + STATE(1981), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [102214] = 8, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1556), 1, - aux_sym_function_parameter_token1, - STATE(4307), 1, - sym_access_tuning, - STATE(1969), 2, - sym_comment, - sym_include, - ACTIONS(3046), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1550), 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, - [102248] = 14, + [100290] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2961), 1, - aux_sym_while_phrase_token1, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3049), 1, - anon_sym_COLON, - STATE(2120), 1, - sym_while_phrase, - STATE(2200), 1, - aux_sym_do_block_repeat1, - STATE(2784), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(1970), 2, + ACTIONS(2948), 1, + anon_sym_LIKE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3119), 1, + sym__terminator, + ACTIONS(3121), 1, + aux_sym_variable_definition_token6, + STATE(2289), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2377), 1, + sym_temp_table_tuning, + STATE(2498), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(2944), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1982), 2, sym_comment, sym_include, - STATE(4099), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [102294] = 14, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [100336] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, + ACTIONS(2948), 1, anon_sym_LIKE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3051), 1, + ACTIONS(3119), 1, sym__terminator, - ACTIONS(3053), 1, + ACTIONS(3121), 1, aux_sym_variable_definition_token6, - STATE(1978), 1, + STATE(1974), 1, aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, + STATE(2377), 1, sym_temp_table_tuning, - STATE(2524), 1, + STATE(2498), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, + ACTIONS(2944), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1971), 2, + STATE(1983), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [102340] = 14, + [100382] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2961), 1, + ACTIONS(2956), 1, aux_sym_while_phrase_token1, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3055), 1, + ACTIONS(3123), 1, anon_sym_COLON, - STATE(2182), 1, - aux_sym_do_block_repeat1, - STATE(2195), 1, + STATE(2165), 1, sym_while_phrase, - STATE(2748), 1, + STATE(2169), 1, + aux_sym_do_block_repeat1, + STATE(2737), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(1972), 2, + STATE(1984), 2, sym_comment, sym_include, - STATE(4053), 3, + STATE(4220), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [102386] = 10, + [100428] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1224), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(3057), 1, + ACTIONS(3125), 1, sym__terminator, - STATE(1974), 1, + STATE(1939), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2105), 1, sym_input_stream_tuning, - ACTIONS(1229), 2, + ACTIONS(1220), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1973), 2, + STATE(1985), 2, sym_comment, sym_include, - ACTIONS(1231), 6, + ACTIONS(1222), 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, - [102424] = 9, + [100466] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3059), 1, + ACTIONS(2948), 1, + anon_sym_LIKE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3127), 1, sym__terminator, - ACTIONS(3067), 1, - aux_sym_input_stream_tuning_token9, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(3061), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1974), 3, + ACTIONS(3129), 1, + aux_sym_variable_definition_token6, + STATE(1965), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2377), 1, + sym_temp_table_tuning, + STATE(2551), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(2944), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1986), 2, sym_comment, sym_include, - aux_sym_input_stream_statement_repeat1, - ACTIONS(3064), 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, - [102460] = 14, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [100512] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2961), 1, - aux_sym_while_phrase_token1, - ACTIONS(2963), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3070), 1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2396), 1, anon_sym_COLON, - STATE(2163), 1, - aux_sym_do_block_repeat1, - STATE(2164), 1, - sym_while_phrase, - STATE(2826), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(1975), 2, - sym_comment, - sym_include, - STATE(4211), 3, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2496), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(2690), 1, sym_on_quit_phrase, - [102506] = 12, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3072), 1, - sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(2108), 1, - sym__pre_tuning, - STATE(2243), 1, - sym_where_clause, - STATE(2245), 1, - aux_sym_for_phrase_repeat1, - STATE(1976), 2, + STATE(2696), 1, + sym_sort_clause, + STATE(3114), 1, + sym_on_stop_phrase, + STATE(3116), 1, + aux_sym_for_statement_repeat1, + STATE(1987), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [102548] = 14, + [100559] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2961), 1, - aux_sym_while_phrase_token1, - ACTIONS(2963), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3074), 1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2402), 1, anon_sym_COLON, - STATE(2173), 1, - aux_sym_do_block_repeat1, - STATE(2176), 1, - sym_while_phrase, - STATE(2739), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(1977), 2, - sym_comment, - sym_include, - STATE(4136), 3, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2580), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2713), 1, sym_on_quit_phrase, - [102594] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2981), 1, - anon_sym_LIKE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3076), 1, - sym__terminator, - ACTIONS(3078), 1, - aux_sym_variable_definition_token6, - STATE(2314), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, - sym_temp_table_tuning, - STATE(2544), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1978), 2, - sym_comment, - sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [102640] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3080), 1, - aux_sym_buffer_definition_token1, - ACTIONS(3082), 1, - aux_sym_query_definition_token1, - STATE(1984), 1, - aux_sym_buffer_definition_repeat1, - STATE(1979), 2, + STATE(3120), 1, + sym_on_stop_phrase, + STATE(3121), 1, + aux_sym_for_statement_repeat1, + STATE(1988), 2, sym_comment, sym_include, - STATE(2240), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [102678] = 7, + [100606] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3086), 1, - aux_sym_input_stream_tuning_token10, - ACTIONS(3088), 1, - aux_sym_input_stream_tuning_token11, - STATE(1980), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2545), 1, + anon_sym_COLON, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2504), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2811), 1, + sym_on_quit_phrase, + STATE(3298), 1, + sym_on_stop_phrase, + STATE(3299), 1, + aux_sym_for_statement_repeat1, + STATE(1989), 2, sym_comment, sym_include, - ACTIONS(3084), 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, - [102710] = 12, + [100653] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3090), 1, + ACTIONS(3097), 1, sym__terminator, - STATE(1933), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2096), 1, - sym__pre_tuning, - STATE(2232), 1, - aux_sym_for_phrase_repeat1, - STATE(2235), 1, + STATE(2220), 1, sym_where_clause, - STATE(1981), 2, + STATE(2221), 1, + aux_sym_for_phrase_repeat1, + STATE(1990), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [102752] = 12, + [100692] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3092), 1, - sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(2010), 1, - sym__pre_tuning, - STATE(2323), 1, - aux_sym_for_phrase_repeat1, - STATE(2324), 1, - sym_where_clause, - STATE(1982), 2, + STATE(1991), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(3131), 11, + anon_sym_RPAREN, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [102794] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3094), 1, - aux_sym_buffer_definition_token1, - ACTIONS(3096), 1, - aux_sym_query_definition_token1, - STATE(1984), 1, - aux_sym_buffer_definition_repeat1, - STATE(1983), 2, - sym_comment, - sym_include, - STATE(2240), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [102832] = 8, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + aux_sym__using_and_token1, + [100719] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3104), 2, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - STATE(2240), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(3101), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1984), 3, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(3133), 1, + anon_sym_COLON, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2503), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2812), 1, + sym_on_quit_phrase, + STATE(3301), 1, + sym_on_stop_phrase, + STATE(3302), 1, + aux_sym_for_statement_repeat1, + STATE(1992), 2, sym_comment, sym_include, - aux_sym_buffer_definition_repeat1, - ACTIONS(3098), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [102866] = 14, + [100766] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, - anon_sym_LIKE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3106), 1, - sym__terminator, - ACTIONS(3108), 1, - aux_sym_variable_definition_token6, - STATE(1968), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, - sym_temp_table_tuning, - STATE(2536), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1985), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2533), 1, + anon_sym_COLON, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2610), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2792), 1, + sym_on_quit_phrase, + STATE(3467), 1, + sym_on_stop_phrase, + STATE(3468), 1, + aux_sym_for_statement_repeat1, + STATE(1993), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [102912] = 14, + [100813] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2961), 1, - aux_sym_while_phrase_token1, - ACTIONS(2963), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3110), 1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2382), 1, anon_sym_COLON, - STATE(2170), 1, - sym_while_phrase, - STATE(2189), 1, - aux_sym_do_block_repeat1, - STATE(2869), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(1986), 2, - sym_comment, - sym_include, - STATE(4424), 3, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2648), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2724), 1, sym_on_quit_phrase, - [102958] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3112), 1, - aux_sym_buffer_definition_token1, - ACTIONS(3114), 1, - aux_sym_query_definition_token1, - STATE(1984), 1, - aux_sym_buffer_definition_repeat1, - STATE(1987), 2, + STATE(3320), 1, + sym_on_stop_phrase, + STATE(3322), 1, + aux_sym_for_statement_repeat1, + STATE(1994), 2, sym_comment, sym_include, - STATE(2240), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [102996] = 10, + [100860] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(3116), 1, - sym__terminator, - STATE(1974), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(1229), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1988), 2, + ACTIONS(2565), 1, + aux_sym_method_definition_token1, + ACTIONS(3135), 1, + aux_sym__block_terminator_token1, + ACTIONS(3137), 1, + aux_sym_variable_definition_token1, + ACTIONS(3139), 1, + aux_sym_variable_definition_token2, + STATE(2181), 1, + aux_sym_interface_body_repeat1, + STATE(4175), 1, + sym_interface_body, + STATE(1995), 2, sym_comment, sym_include, - ACTIONS(1231), 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, - [103034] = 12, + STATE(2920), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [100899] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3118), 1, + ACTIONS(3103), 1, sym__terminator, - STATE(1933), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2060), 1, - sym__pre_tuning, - STATE(2262), 1, + STATE(2246), 1, aux_sym_for_phrase_repeat1, - STATE(2272), 1, + STATE(2247), 1, sym_where_clause, - STATE(1989), 2, + STATE(1996), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [103076] = 14, + [100938] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, - anon_sym_LIKE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3120), 1, - sym__terminator, - ACTIONS(3122), 1, - aux_sym_variable_definition_token6, - STATE(1956), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, - sym_temp_table_tuning, - STATE(2578), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1990), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2531), 1, + anon_sym_COLON, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2502), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2814), 1, + sym_on_quit_phrase, + STATE(3304), 1, + sym_on_stop_phrase, + STATE(3305), 1, + aux_sym_for_statement_repeat1, + STATE(1997), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [103122] = 10, + [100985] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3124), 1, - aux_sym_buffer_definition_token1, - ACTIONS(3126), 1, - aux_sym_query_definition_token1, - STATE(1984), 1, - aux_sym_buffer_definition_repeat1, - STATE(1991), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2408), 1, + anon_sym_COLON, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2526), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2770), 1, + sym_on_quit_phrase, + STATE(3231), 1, + sym_on_stop_phrase, + STATE(3232), 1, + aux_sym_for_statement_repeat1, + STATE(1998), 2, sym_comment, sym_include, - STATE(2240), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1375), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1373), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [103160] = 14, + [101032] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, - anon_sym_LIKE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3120), 1, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3141), 1, sym__terminator, - ACTIONS(3122), 1, - aux_sym_variable_definition_token6, - STATE(2314), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, - sym_temp_table_tuning, - STATE(2578), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1992), 2, + STATE(1967), 1, + sym_query_tuning, + STATE(2259), 1, + aux_sym_for_phrase_repeat1, + STATE(2260), 1, + sym_where_clause, + STATE(1999), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [103206] = 14, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [101071] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, - anon_sym_LIKE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3128), 1, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3105), 1, sym__terminator, - ACTIONS(3130), 1, - aux_sym_variable_definition_token6, - STATE(2314), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, - sym_temp_table_tuning, - STATE(2547), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1993), 2, + STATE(1967), 1, + sym_query_tuning, + STATE(2261), 1, + aux_sym_for_phrase_repeat1, + STATE(2263), 1, + sym_where_clause, + STATE(2000), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [103252] = 14, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [101110] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, - anon_sym_LIKE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3006), 1, - sym__terminator, - ACTIONS(3008), 1, - aux_sym_variable_definition_token6, - STATE(1993), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, - sym_temp_table_tuning, - STATE(2572), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1994), 2, + STATE(467), 1, + sym_accumulate_aggregate, + STATE(2001), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [103298] = 10, + ACTIONS(3143), 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, + [101139] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(3132), 1, - sym__terminator, - STATE(1974), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(1229), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1995), 2, - sym_comment, - sym_include, - ACTIONS(1231), 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, - [103336] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2736), 1, - sym__namedot, - STATE(1951), 1, - aux_sym_qualified_name_repeat1, - STATE(1996), 2, + STATE(3162), 1, + sym_accumulate_aggregate, + STATE(2002), 2, sym_comment, sym_include, - ACTIONS(63), 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, - [103368] = 14, + ACTIONS(3145), 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, + [101168] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, - anon_sym_LIKE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3134), 1, - sym__terminator, - ACTIONS(3136), 1, - aux_sym_variable_definition_token6, - STATE(1953), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, - sym_temp_table_tuning, - STATE(2591), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1997), 2, + ACTIONS(2565), 1, + aux_sym_method_definition_token1, + ACTIONS(3137), 1, + aux_sym_variable_definition_token1, + ACTIONS(3139), 1, + aux_sym_variable_definition_token2, + ACTIONS(3147), 1, + aux_sym__block_terminator_token1, + STATE(2181), 1, + aux_sym_interface_body_repeat1, + STATE(4548), 1, + sym_interface_body, + STATE(2003), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [103414] = 10, + STATE(2920), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [101207] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(3138), 1, - sym__terminator, - STATE(1974), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(1229), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1998), 2, + STATE(450), 1, + sym_accumulate_aggregate, + STATE(2004), 2, sym_comment, sym_include, - ACTIONS(1231), 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, - [103452] = 10, + ACTIONS(3143), 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, + [101236] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(3140), 1, - sym__terminator, - STATE(1974), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(1229), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1999), 2, + STATE(364), 1, + sym_accumulate_aggregate, + STATE(2005), 2, sym_comment, sym_include, - ACTIONS(1231), 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, - [103490] = 14, + ACTIONS(3143), 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, + [101265] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, - anon_sym_LIKE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3051), 1, - sym__terminator, - ACTIONS(3053), 1, - aux_sym_variable_definition_token6, - STATE(2314), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, - sym_temp_table_tuning, - STATE(2524), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(2000), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2390), 1, + anon_sym_COLON, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2497), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2817), 1, + sym_on_quit_phrase, + STATE(3312), 1, + sym_on_stop_phrase, + STATE(3313), 1, + aux_sym_for_statement_repeat1, + STATE(2006), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [103536] = 5, + [101312] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2001), 2, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3149), 1, + sym__terminator, + STATE(1967), 1, + sym_query_tuning, + STATE(2271), 1, + aux_sym_for_phrase_repeat1, + STATE(2272), 1, + sym_where_clause, + STATE(2007), 2, sym_comment, sym_include, - ACTIONS(3142), 12, - sym__terminator, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [103564] = 14, + [101351] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2981), 1, - anon_sym_LIKE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3144), 1, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2976), 1, sym__terminator, - ACTIONS(3146), 1, - aux_sym_variable_definition_token6, - STATE(1963), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2473), 1, - sym_temp_table_tuning, - STATE(2639), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2977), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(2002), 2, + STATE(1967), 1, + sym_query_tuning, + STATE(2198), 1, + sym_where_clause, + STATE(2199), 1, + aux_sym_for_phrase_repeat1, + STATE(2008), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [103610] = 15, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [101390] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2413), 1, - anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2557), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2876), 1, - sym_on_quit_phrase, - STATE(3124), 1, - sym_on_stop_phrase, - STATE(3125), 1, - aux_sym_for_statement_repeat1, - STATE(2003), 2, + ACTIONS(2565), 1, + aux_sym_method_definition_token1, + ACTIONS(3137), 1, + aux_sym_variable_definition_token1, + ACTIONS(3139), 1, + aux_sym_variable_definition_token2, + ACTIONS(3151), 1, + aux_sym__block_terminator_token1, + STATE(2181), 1, + aux_sym_interface_body_repeat1, + STATE(4249), 1, + sym_interface_body, + STATE(2009), 2, sym_comment, sym_include, - [103657] = 15, + STATE(2920), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [101429] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2560), 1, - anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2542), 1, - sym_on_error_phrase, - STATE(2849), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3115), 1, - sym_on_stop_phrase, - STATE(3116), 1, - aux_sym_for_statement_repeat1, - STATE(2004), 2, + ACTIONS(2934), 1, + aux_sym_variable_tuning_token1, + STATE(2014), 1, + aux_sym_field_definition_repeat1, + STATE(2296), 1, + sym_field_option, + ACTIONS(2938), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + STATE(2010), 2, sym_comment, sym_include, - [103704] = 11, + ACTIONS(2936), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + ACTIONS(3153), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [101466] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2582), 1, - aux_sym_method_definition_token1, - ACTIONS(3148), 1, - aux_sym__block_terminator_token1, - ACTIONS(3150), 1, - aux_sym_variable_definition_token1, - ACTIONS(3152), 1, - aux_sym_variable_definition_token2, - STATE(2166), 1, - aux_sym_interface_body_repeat1, - STATE(4156), 1, - sym_interface_body, - STATE(2005), 2, + ACTIONS(2934), 1, + aux_sym_variable_tuning_token1, + STATE(2014), 1, + aux_sym_field_definition_repeat1, + STATE(2296), 1, + sym_field_option, + ACTIONS(2938), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + STATE(2011), 2, sym_comment, sym_include, - STATE(2966), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [103743] = 6, + ACTIONS(2936), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + ACTIONS(3155), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [101503] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(550), 1, + STATE(386), 1, sym_accumulate_aggregate, - STATE(2006), 2, + STATE(2012), 2, sym_comment, sym_include, - ACTIONS(3154), 10, + ACTIONS(3143), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -131586,580 +128426,410 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [103772] = 15, + [101532] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2528), 1, - anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2539), 1, - sym_on_error_phrase, - STATE(2837), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3105), 1, - sym_on_stop_phrase, - STATE(3107), 1, - aux_sym_for_statement_repeat1, - STATE(2007), 2, + STATE(3252), 1, + sym_accumulate_aggregate, + STATE(2013), 2, sym_comment, sym_include, - [103819] = 11, + ACTIONS(3145), 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, + [101561] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(2969), 1, + ACTIONS(3159), 1, + aux_sym_variable_tuning_token1, + STATE(2296), 1, + sym_field_option, + ACTIONS(3165), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + ACTIONS(3157), 3, sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2278), 1, - sym_where_clause, - STATE(2282), 1, - aux_sym_for_phrase_repeat1, - STATE(2008), 2, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(3162), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + STATE(2014), 3, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [103858] = 11, + aux_sym_field_definition_repeat1, + [101596] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3156), 1, + ACTIONS(3168), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2248), 1, + STATE(2206), 1, sym_where_clause, - STATE(2260), 1, + STATE(2245), 1, aux_sym_for_phrase_repeat1, - STATE(2009), 2, + STATE(2015), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [103897] = 11, + [101635] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3158), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2204), 1, - aux_sym_for_phrase_repeat1, - STATE(2288), 1, - sym_where_clause, - STATE(2010), 2, + STATE(493), 1, + sym_accumulate_aggregate, + STATE(2016), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [103936] = 15, + ACTIONS(3143), 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, + [101664] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(3160), 1, + ACTIONS(2535), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2593), 1, + STATE(2541), 1, sym_on_error_phrase, - STATE(2820), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3187), 1, + STATE(2818), 1, + sym_on_quit_phrase, + STATE(3314), 1, sym_on_stop_phrase, - STATE(3188), 1, + STATE(3315), 1, aux_sym_for_statement_repeat1, - STATE(2011), 2, + STATE(2017), 2, sym_comment, sym_include, - [103983] = 11, + [101711] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3072), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2243), 1, - sym_where_clause, - STATE(2245), 1, - aux_sym_for_phrase_repeat1, - STATE(2012), 2, + ACTIONS(2565), 1, + aux_sym_method_definition_token1, + ACTIONS(3137), 1, + aux_sym_variable_definition_token1, + ACTIONS(3139), 1, + aux_sym_variable_definition_token2, + ACTIONS(3170), 1, + aux_sym__block_terminator_token1, + STATE(2181), 1, + aux_sym_interface_body_repeat1, + STATE(4076), 1, + sym_interface_body, + STATE(2018), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [104022] = 15, + STATE(2920), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [101750] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(3174), 1, anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2423), 1, - anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2650), 1, - sym_on_error_phrase, - STATE(2692), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3310), 1, - sym_on_stop_phrase, - STATE(3311), 1, - aux_sym_for_statement_repeat1, - STATE(2013), 2, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(2284), 1, + aux_sym_inherits_repeat1, + STATE(2019), 2, sym_comment, sym_include, - [104069] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2395), 1, + ACTIONS(3172), 7, + aux_sym_serialization_tuning_token1, anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2644), 1, - sym_on_error_phrase, - STATE(2712), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3326), 1, - aux_sym_for_statement_repeat1, - STATE(3328), 1, - sym_on_stop_phrase, - STATE(2014), 2, - sym_comment, - sym_include, - [104116] = 15, + aux_sym_property_type_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + [101785] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2419), 1, + ACTIONS(2404), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2630), 1, + STATE(2623), 1, sym_on_error_phrase, - STATE(2773), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3218), 1, - sym_on_stop_phrase, - STATE(3219), 1, + STATE(2722), 1, + sym_on_quit_phrase, + STATE(3268), 1, aux_sym_for_statement_repeat1, - STATE(2015), 2, + STATE(3269), 1, + sym_on_stop_phrase, + STATE(2020), 2, sym_comment, sym_include, - [104163] = 15, + [101832] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2381), 1, + ACTIONS(2366), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2579), 1, + STATE(2543), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2862), 1, + STATE(2821), 1, sym_on_quit_phrase, - STATE(3475), 1, + STATE(3319), 1, aux_sym_for_statement_repeat1, - STATE(3477), 1, + STATE(3321), 1, sym_on_stop_phrase, - STATE(2016), 2, - sym_comment, - sym_include, - [104210] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3092), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2323), 1, - aux_sym_for_phrase_repeat1, - STATE(2324), 1, - sym_where_clause, - STATE(2017), 2, + STATE(2021), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [104249] = 15, + [101879] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(3174), 1, anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2405), 1, - anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2541), 1, - sym_on_error_phrase, - STATE(2848), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3111), 1, - sym_on_stop_phrase, - STATE(3112), 1, - aux_sym_for_statement_repeat1, - STATE(2018), 2, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(2283), 1, + aux_sym_inherits_repeat1, + STATE(2022), 2, sym_comment, sym_include, - [104296] = 15, + ACTIONS(3176), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + [101914] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2554), 1, + ACTIONS(3178), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2563), 1, + STATE(2538), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2883), 1, + STATE(2752), 1, sym_on_quit_phrase, - STATE(3131), 1, + STATE(3197), 1, sym_on_stop_phrase, - STATE(3135), 1, + STATE(3198), 1, aux_sym_for_statement_repeat1, - STATE(2019), 2, + STATE(2023), 2, sym_comment, sym_include, - [104343] = 11, + [101961] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3090), 1, + ACTIONS(3180), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2232), 1, + STATE(2252), 1, aux_sym_for_phrase_repeat1, - STATE(2235), 1, + STATE(2253), 1, sym_where_clause, - STATE(2020), 2, + STATE(2024), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [104382] = 15, + [102000] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(3162), 1, - anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2535), 1, - sym_on_error_phrase, - STATE(2830), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3102), 1, - sym_on_stop_phrase, - STATE(3103), 1, - aux_sym_for_statement_repeat1, - STATE(2021), 2, - sym_comment, - sym_include, - [104429] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2657), 1, - sym_sort_order, - STATE(2022), 2, + STATE(426), 1, + sym_accumulate_aggregate, + STATE(2025), 2, sym_comment, sym_include, - ACTIONS(2734), 4, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - ACTIONS(2730), 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, - [104460] = 15, + ACTIONS(3143), 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, + [102029] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2411), 1, + ACTIONS(2511), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2602), 1, + STATE(2509), 1, sym_on_error_phrase, - STATE(2818), 1, + STATE(2679), 1, sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3432), 1, - sym_on_stop_phrase, - STATE(3433), 1, + STATE(3027), 1, aux_sym_for_statement_repeat1, - STATE(2023), 2, - sym_comment, - sym_include, - [104507] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(2024), 2, - sym_comment, - sym_include, - ACTIONS(3164), 11, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - aux_sym__using_and_token1, - [104534] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, - sym_identifier, - STATE(2052), 1, - aux_sym_sort_clause_repeat1, - STATE(2556), 1, - sym_sort_column, - STATE(4590), 1, - sym_object_access, - STATE(2022), 2, - sym_qualified_name, - sym_function_call, - STATE(2025), 2, + STATE(3032), 1, + sym_on_stop_phrase, + STATE(2026), 2, sym_comment, sym_include, - ACTIONS(3168), 5, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [104571] = 6, + [102076] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(523), 1, + STATE(3340), 1, sym_accumulate_aggregate, - STATE(2026), 2, + STATE(2027), 2, sym_comment, sym_include, - ACTIONS(3154), 10, + ACTIONS(3145), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -132170,79 +128840,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [104600] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2582), 1, - aux_sym_method_definition_token1, - ACTIONS(3150), 1, - aux_sym_variable_definition_token1, - ACTIONS(3152), 1, - aux_sym_variable_definition_token2, - ACTIONS(3170), 1, - aux_sym__block_terminator_token1, - STATE(2166), 1, - aux_sym_interface_body_repeat1, - STATE(4078), 1, - sym_interface_body, - STATE(2027), 2, - sym_comment, - sym_include, - STATE(2966), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [104639] = 15, + [102105] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2371), 1, + ACTIONS(2549), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2560), 1, + STATE(2589), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2880), 1, + STATE(2754), 1, sym_on_quit_phrase, - STATE(3495), 1, - aux_sym_for_statement_repeat1, - STATE(3496), 1, + STATE(3202), 1, sym_on_stop_phrase, + STATE(3203), 1, + aux_sym_for_statement_repeat1, STATE(2028), 2, sym_comment, sym_include, - [104686] = 6, + [102152] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3480), 1, - sym_accumulate_aggregate, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2992), 1, + sym__terminator, + STATE(1967), 1, + sym_query_tuning, + STATE(2257), 1, + aux_sym_for_phrase_repeat1, + STATE(2258), 1, + sym_where_clause, STATE(2029), 2, sym_comment, sym_include, - ACTIONS(3172), 10, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [102191] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(356), 1, + sym_accumulate_aggregate, + STATE(2030), 2, + sym_comment, + sym_include, + ACTIONS(3143), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -132253,261 +128923,143 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [104715] = 11, + [102220] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3174), 1, + ACTIONS(3045), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2275), 1, - sym_where_clause, - STATE(2279), 1, + STATE(2254), 1, aux_sym_for_phrase_repeat1, - STATE(2030), 2, + STATE(2255), 1, + sym_where_clause, + STATE(2031), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [104754] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2403), 1, - anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2634), 1, - sym_on_error_phrase, - STATE(2753), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3229), 1, - aux_sym_for_statement_repeat1, - STATE(3230), 1, - sym_on_stop_phrase, - STATE(2031), 2, - sym_comment, - sym_include, - [104801] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2566), 1, - anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2599), 1, - sym_on_error_phrase, - STATE(2817), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3193), 1, - sym_on_stop_phrase, - STATE(3194), 1, - aux_sym_for_statement_repeat1, - STATE(2032), 2, - sym_comment, - sym_include, - [104848] = 15, + [102259] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2544), 1, + ACTIONS(2374), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2604), 1, + STATE(2565), 1, sym_on_error_phrase, - STATE(2816), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3427), 1, - sym_on_stop_phrase, - STATE(3428), 1, + STATE(2696), 1, + sym_sort_clause, + STATE(2727), 1, + sym_on_quit_phrase, + STATE(3157), 1, aux_sym_for_statement_repeat1, - STATE(2033), 2, + STATE(3158), 1, + sym_on_stop_phrase, + STATE(2032), 2, sym_comment, sym_include, - [104895] = 15, + [102306] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2558), 1, + ACTIONS(3182), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2532), 1, + STATE(2505), 1, sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, STATE(2809), 1, sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3099), 1, + STATE(3290), 1, sym_on_stop_phrase, - STATE(3100), 1, + STATE(3292), 1, aux_sym_for_statement_repeat1, - STATE(2034), 2, - sym_comment, - sym_include, - [104942] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2936), 1, - aux_sym_variable_tuning_token1, - STATE(2103), 1, - aux_sym_field_definition_repeat1, - STATE(2203), 1, - sym_field_option, - ACTIONS(2940), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - STATE(2035), 2, + STATE(2033), 2, sym_comment, sym_include, - ACTIONS(2934), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - ACTIONS(2938), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - [104979] = 15, + [102353] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2564), 1, + ACTIONS(2388), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2540), 1, + STATE(2544), 1, sym_on_error_phrase, - STATE(2843), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3109), 1, + STATE(2825), 1, + sym_on_quit_phrase, + STATE(3324), 1, sym_on_stop_phrase, - STATE(3110), 1, + STATE(3325), 1, aux_sym_for_statement_repeat1, - STATE(2036), 2, - sym_comment, - sym_include, - [105026] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2936), 1, - aux_sym_variable_tuning_token1, - STATE(2106), 1, - aux_sym_field_definition_repeat1, - STATE(2203), 1, - sym_field_option, - ACTIONS(2940), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - STATE(2037), 2, + STATE(2034), 2, sym_comment, sym_include, - ACTIONS(2938), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - ACTIONS(3176), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [105063] = 6, + [102400] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(384), 1, + STATE(3999), 1, sym_accumulate_aggregate, - STATE(2038), 2, + STATE(2035), 2, sym_comment, sym_include, - ACTIONS(3154), 10, + ACTIONS(3145), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -132518,971 +129070,1040 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [105092] = 11, + [102429] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(93), 1, + sym__namedot, + STATE(2036), 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, + [102458] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3022), 1, + ACTIONS(3184), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2309), 1, - sym_where_clause, STATE(2311), 1, aux_sym_for_phrase_repeat1, - STATE(2039), 2, + STATE(2312), 1, + sym_where_clause, + STATE(2037), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [105131] = 15, + [102497] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2379), 1, + ACTIONS(3186), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2651), 1, + STATE(2536), 1, sym_on_error_phrase, - STATE(2728), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3301), 1, - aux_sym_for_statement_repeat1, - STATE(3303), 1, + STATE(2755), 1, + sym_on_quit_phrase, + STATE(3205), 1, sym_on_stop_phrase, - STATE(2040), 2, + STATE(3206), 1, + aux_sym_for_statement_repeat1, + STATE(2038), 2, sym_comment, sym_include, - [105178] = 15, + [102544] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(3178), 1, + ACTIONS(2537), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2601), 1, + STATE(2600), 1, sym_on_error_phrase, - STATE(2815), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3196), 1, + STATE(2699), 1, + sym_on_quit_phrase, + STATE(3074), 1, sym_on_stop_phrase, - STATE(3197), 1, + STATE(3160), 1, aux_sym_for_statement_repeat1, - STATE(2041), 2, + STATE(2039), 2, sym_comment, sym_include, - [105225] = 15, + [102591] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2546), 1, - anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2658), 1, - sym_on_error_phrase, - STATE(2710), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3294), 1, - sym_on_stop_phrase, - STATE(3295), 1, - aux_sym_for_statement_repeat1, - STATE(2042), 2, + STATE(3132), 1, + sym_accumulate_aggregate, + STATE(2040), 2, sym_comment, sym_include, - [105272] = 11, + ACTIONS(3145), 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, + [102620] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3028), 1, + ACTIONS(3188), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2209), 1, - aux_sym_for_phrase_repeat1, - STATE(2210), 1, + STATE(2192), 1, sym_where_clause, - STATE(2043), 2, + STATE(2277), 1, + aux_sym_for_phrase_repeat1, + STATE(2041), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [105311] = 15, + [102659] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(3180), 1, - anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2565), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2870), 1, - sym_on_quit_phrase, - STATE(3150), 1, - sym_on_stop_phrase, - STATE(3154), 1, - aux_sym_for_statement_repeat1, - STATE(2044), 2, + ACTIONS(2565), 1, + aux_sym_method_definition_token1, + ACTIONS(3137), 1, + aux_sym_variable_definition_token1, + ACTIONS(3139), 1, + aux_sym_variable_definition_token2, + ACTIONS(3190), 1, + aux_sym__block_terminator_token1, + STATE(2181), 1, + aux_sym_interface_body_repeat1, + STATE(4393), 1, + sym_interface_body, + STATE(2042), 2, sym_comment, sym_include, - [105358] = 15, + STATE(2920), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [102698] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2562), 1, - anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2603), 1, - sym_on_error_phrase, - STATE(2813), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3200), 1, - sym_on_stop_phrase, - STATE(3201), 1, - aux_sym_for_statement_repeat1, - STATE(2045), 2, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3043), 1, + sym__terminator, + STATE(1967), 1, + sym_query_tuning, + STATE(2212), 1, + aux_sym_for_phrase_repeat1, + STATE(2213), 1, + sym_where_clause, + STATE(2043), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [102737] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2565), 1, + aux_sym_method_definition_token1, + ACTIONS(3137), 1, + aux_sym_variable_definition_token1, + ACTIONS(3139), 1, + aux_sym_variable_definition_token2, + ACTIONS(3192), 1, + aux_sym__block_terminator_token1, + STATE(2181), 1, + aux_sym_interface_body_repeat1, + STATE(4198), 1, + sym_interface_body, + STATE(2044), 2, sym_comment, sym_include, - [105405] = 15, + STATE(2920), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [102776] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2556), 1, + ACTIONS(2376), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2607), 1, + STATE(2549), 1, sym_on_error_phrase, - STATE(2807), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3204), 1, + STATE(2831), 1, + sym_on_quit_phrase, + STATE(3336), 1, aux_sym_for_statement_repeat1, - STATE(3217), 1, + STATE(3337), 1, sym_on_stop_phrase, - STATE(2046), 2, + STATE(2045), 2, sym_comment, sym_include, - [105452] = 10, + [102823] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3166), 1, + ACTIONS(3194), 1, sym_identifier, - STATE(2052), 1, - aux_sym_sort_clause_repeat1, - STATE(2556), 1, + STATE(2641), 1, sym_sort_column, - STATE(4590), 1, + STATE(4546), 1, sym_object_access, - STATE(2022), 2, + STATE(2083), 2, sym_qualified_name, sym_function_call, - STATE(2047), 2, + STATE(2046), 3, sym_comment, sym_include, - ACTIONS(3182), 5, + aux_sym_sort_clause_repeat1, + ACTIONS(3197), 5, anon_sym_COMMA, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [105489] = 15, + [102858] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3031), 1, + sym__terminator, + STATE(1967), 1, + sym_query_tuning, + STATE(2293), 1, + aux_sym_for_phrase_repeat1, + STATE(2294), 1, + sym_where_clause, + STATE(2047), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [102897] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2542), 1, + ACTIONS(2547), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2606), 1, + STATE(2534), 1, sym_on_error_phrase, - STATE(2814), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3421), 1, + STATE(2757), 1, + sym_on_quit_phrase, + STATE(3208), 1, sym_on_stop_phrase, - STATE(3422), 1, + STATE(3210), 1, aux_sym_for_statement_repeat1, STATE(2048), 2, sym_comment, sym_include, - [105536] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(3972), 1, - sym_accumulate_aggregate, - STATE(2049), 2, - sym_comment, - sym_include, - ACTIONS(3172), 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, - [105565] = 11, + [102944] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2582), 1, + ACTIONS(2565), 1, aux_sym_method_definition_token1, - ACTIONS(3150), 1, + ACTIONS(3137), 1, aux_sym_variable_definition_token1, - ACTIONS(3152), 1, + ACTIONS(3139), 1, aux_sym_variable_definition_token2, - ACTIONS(3184), 1, + ACTIONS(3199), 1, aux_sym__block_terminator_token1, - STATE(2166), 1, + STATE(2181), 1, aux_sym_interface_body_repeat1, - STATE(4048), 1, + STATE(4279), 1, sym_interface_body, - STATE(2050), 2, + STATE(2049), 2, sym_comment, sym_include, - STATE(2966), 5, + STATE(2920), 5, sym_property_definition, sym_event_definition, sym_method_definition, sym_dataset_definition, sym_temp_table_definition, - [105604] = 6, + [102983] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3335), 1, - sym_accumulate_aggregate, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2539), 1, + anon_sym_COLON, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2607), 1, + sym_on_error_phrase, + STATE(2695), 1, + sym_on_quit_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(3043), 1, + sym_on_stop_phrase, + STATE(3161), 1, + aux_sym_for_statement_repeat1, + STATE(2050), 2, + sym_comment, + sym_include, + [103030] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2354), 1, + anon_sym_COLON, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2513), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2778), 1, + sym_on_quit_phrase, + STATE(3249), 1, + aux_sym_for_statement_repeat1, + STATE(3250), 1, + sym_on_stop_phrase, STATE(2051), 2, sym_comment, sym_include, - ACTIONS(3172), 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, - [105633] = 9, + [103077] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3186), 1, + ACTIONS(3201), 1, sym_identifier, - STATE(2556), 1, + STATE(2046), 1, + aux_sym_sort_clause_repeat1, + STATE(2641), 1, sym_sort_column, - STATE(4590), 1, + STATE(4546), 1, sym_object_access, - STATE(2022), 2, - sym_qualified_name, - sym_function_call, - STATE(2052), 3, + STATE(2052), 2, sym_comment, sym_include, - aux_sym_sort_clause_repeat1, - ACTIONS(3189), 5, + STATE(2083), 2, + sym_qualified_name, + sym_function_call, + ACTIONS(3203), 5, anon_sym_COMMA, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [105668] = 15, + [103114] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(3191), 1, - anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2608), 1, - sym_on_error_phrase, - STATE(2812), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3416), 1, - sym_on_stop_phrase, - STATE(3417), 1, - aux_sym_for_statement_repeat1, + STATE(460), 1, + sym_accumulate_aggregate, STATE(2053), 2, sym_comment, sym_include, - [105715] = 15, + ACTIONS(3143), 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, + [103143] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2548), 1, + ACTIONS(3205), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2600), 1, + STATE(2609), 1, sym_on_error_phrase, - STATE(2822), 1, + STATE(2692), 1, sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3440), 1, - sym_on_stop_phrase, - STATE(3441), 1, + STATE(3052), 1, aux_sym_for_statement_repeat1, + STATE(3053), 1, + sym_on_stop_phrase, STATE(2054), 2, sym_comment, sym_include, - [105762] = 15, + [103190] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(3193), 1, - anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2528), 1, - sym_on_error_phrase, - STATE(2795), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3093), 1, - sym_on_stop_phrase, - STATE(3094), 1, - aux_sym_for_statement_repeat1, + STATE(3454), 1, + sym_accumulate_aggregate, STATE(2055), 2, sym_comment, sym_include, - [105809] = 11, + ACTIONS(3145), 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, + [103219] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2582), 1, - aux_sym_method_definition_token1, - ACTIONS(3150), 1, - aux_sym_variable_definition_token1, - ACTIONS(3152), 1, - aux_sym_variable_definition_token2, - ACTIONS(3195), 1, - aux_sym__block_terminator_token1, - STATE(2166), 1, - aux_sym_interface_body_repeat1, - STATE(4446), 1, - sym_interface_body, STATE(2056), 2, sym_comment, sym_include, - STATE(2966), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [105848] = 6, + ACTIONS(3207), 11, + anon_sym_RPAREN, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + aux_sym__using_and_token1, + [103246] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3399), 1, - sym_accumulate_aggregate, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2342), 1, + anon_sym_COLON, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2529), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2766), 1, + sym_on_quit_phrase, + STATE(3227), 1, + aux_sym_for_statement_repeat1, + STATE(3228), 1, + sym_on_stop_phrase, STATE(2057), 2, sym_comment, sym_include, - ACTIONS(3172), 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, - [105877] = 15, + [103293] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2377), 1, + ACTIONS(2358), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2595), 1, + STATE(2608), 1, sym_on_error_phrase, - STATE(2825), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3447), 1, + STATE(2804), 1, + sym_on_quit_phrase, + STATE(3450), 1, aux_sym_for_statement_repeat1, - STATE(3449), 1, + STATE(3451), 1, sym_on_stop_phrase, STATE(2058), 2, sym_comment, sym_include, - [105924] = 15, + [103340] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2417), 1, + ACTIONS(2543), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2659), 1, - sym_on_error_phrase, - STATE(2720), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2532), 1, + sym_on_error_phrase, + STATE(2696), 1, sym_sort_clause, - STATE(3287), 1, + STATE(2758), 1, + sym_on_quit_phrase, + STATE(3212), 1, sym_on_stop_phrase, - STATE(3288), 1, + STATE(3213), 1, aux_sym_for_statement_repeat1, STATE(2059), 2, sym_comment, sym_include, - [105971] = 11, + [103387] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2565), 1, + aux_sym_method_definition_token1, + ACTIONS(3137), 1, + aux_sym_variable_definition_token1, + ACTIONS(3139), 1, + aux_sym_variable_definition_token2, + ACTIONS(3209), 1, + aux_sym__block_terminator_token1, + STATE(2181), 1, + aux_sym_interface_body_repeat1, + STATE(4410), 1, + sym_interface_body, + STATE(2060), 2, + sym_comment, + sym_include, + STATE(2920), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [103426] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3197), 1, + ACTIONS(3211), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2271), 1, - aux_sym_for_phrase_repeat1, - STATE(2273), 1, + STATE(2200), 1, sym_where_clause, - STATE(2060), 2, + STATE(2202), 1, + aux_sym_for_phrase_repeat1, + STATE(2061), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [106010] = 15, + [103465] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2540), 1, + ACTIONS(2336), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2612), 1, + STATE(2631), 1, sym_on_error_phrase, - STATE(2808), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3414), 1, - sym_on_stop_phrase, - STATE(3415), 1, + STATE(2702), 1, + sym_on_quit_phrase, + STATE(3138), 1, aux_sym_for_statement_repeat1, - STATE(2061), 2, + STATE(3140), 1, + sym_on_stop_phrase, + STATE(2062), 2, sym_comment, sym_include, - [106057] = 11, + [103512] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3199), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2294), 1, - aux_sym_for_phrase_repeat1, - STATE(2300), 1, - sym_where_clause, - STATE(2062), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2394), 1, + anon_sym_COLON, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2575), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2720), 1, + sym_on_quit_phrase, + STATE(3141), 1, + sym_on_stop_phrase, + STATE(3142), 1, + aux_sym_for_statement_repeat1, + STATE(2063), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [106096] = 11, + [103559] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2582), 1, + ACTIONS(2565), 1, aux_sym_method_definition_token1, - ACTIONS(3150), 1, + ACTIONS(3137), 1, aux_sym_variable_definition_token1, - ACTIONS(3152), 1, + ACTIONS(3139), 1, aux_sym_variable_definition_token2, - ACTIONS(3201), 1, + ACTIONS(3213), 1, aux_sym__block_terminator_token1, - STATE(2166), 1, + STATE(2181), 1, aux_sym_interface_body_repeat1, - STATE(4108), 1, + STATE(4046), 1, sym_interface_body, - STATE(2063), 2, + STATE(2064), 2, sym_comment, sym_include, - STATE(2966), 5, + STATE(2920), 5, sym_property_definition, sym_event_definition, sym_method_definition, sym_dataset_definition, sym_temp_table_definition, - [106135] = 15, + [103598] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2538), 1, + ACTIONS(2517), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2640), 1, + STATE(2501), 1, sym_on_error_phrase, - STATE(2734), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3243), 1, + STATE(2815), 1, + sym_on_quit_phrase, + STATE(3306), 1, sym_on_stop_phrase, - STATE(3245), 1, + STATE(3307), 1, aux_sym_for_statement_repeat1, - STATE(2064), 2, - sym_comment, - sym_include, - [106182] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2582), 1, - aux_sym_method_definition_token1, - ACTIONS(3150), 1, - aux_sym_variable_definition_token1, - ACTIONS(3152), 1, - aux_sym_variable_definition_token2, - ACTIONS(3203), 1, - aux_sym__block_terminator_token1, - STATE(2166), 1, - aux_sym_interface_body_repeat1, - STATE(4433), 1, - sym_interface_body, STATE(2065), 2, sym_comment, sym_include, - STATE(2966), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [106221] = 11, + [103645] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(2973), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2285), 1, - sym_where_clause, - STATE(2286), 1, - aux_sym_for_phrase_repeat1, STATE(2066), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(3215), 11, + anon_sym_RPAREN, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [106260] = 15, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + aux_sym__using_and_token1, + [103672] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2550), 1, + ACTIONS(3217), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2588), 1, + STATE(2593), 1, sym_on_error_phrase, - STATE(2831), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3174), 1, + STATE(2703), 1, + sym_on_quit_phrase, + STATE(3097), 1, sym_on_stop_phrase, - STATE(3176), 1, + STATE(3099), 1, aux_sym_for_statement_repeat1, STATE(2067), 2, sym_comment, sym_include, - [106307] = 11, + [103719] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2991), 1, + ACTIONS(3219), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2306), 1, + STATE(2234), 1, aux_sym_for_phrase_repeat1, - STATE(2315), 1, + STATE(2235), 1, sym_where_clause, STATE(2068), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [106346] = 15, + [103758] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2425), 1, + ACTIONS(2356), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2552), 1, + STATE(2576), 1, sym_on_error_phrase, - STATE(2828), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3456), 1, - sym_on_stop_phrase, - STATE(3457), 1, + STATE(2717), 1, + sym_on_quit_phrase, + STATE(3131), 1, aux_sym_for_statement_repeat1, + STATE(3135), 1, + sym_on_stop_phrase, STATE(2069), 2, sym_comment, sym_include, - [106393] = 11, + [103805] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3205), 1, + ACTIONS(3221), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2212), 1, + STATE(2302), 1, aux_sym_for_phrase_repeat1, - STATE(2213), 1, + STATE(2303), 1, sym_where_clause, STATE(2070), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [106432] = 5, + [103844] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2994), 1, + sym__terminator, + STATE(1967), 1, + sym_query_tuning, + STATE(2304), 1, + aux_sym_for_phrase_repeat1, + STATE(2305), 1, + sym_where_clause, STATE(2071), 2, sym_comment, sym_include, - ACTIONS(3207), 11, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - aux_sym__using_and_token1, - [106459] = 5, + [103883] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -133492,7 +130113,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2072), 2, sym_comment, sym_include, - ACTIONS(3209), 11, + ACTIONS(3223), 11, anon_sym_RPAREN, aux_sym_using_statement_token1, aux_sym_where_clause_token1, @@ -133504,2144 +130125,1941 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_of_token1, aux_sym__using_and_token1, - [106486] = 15, + [103910] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2369), 1, + ACTIONS(3225), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2628), 1, + STATE(2507), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3215), 1, + STATE(2756), 1, + sym_on_quit_phrase, + STATE(3007), 1, aux_sym_for_statement_repeat1, - STATE(3216), 1, + STATE(3207), 1, sym_on_stop_phrase, STATE(2073), 2, sym_comment, sym_include, - [106533] = 15, + [103957] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(3211), 1, - anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2615), 1, - sym_on_error_phrase, - STATE(2805), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3408), 1, - sym_on_stop_phrase, - STATE(3409), 1, - aux_sym_for_statement_repeat1, STATE(2074), 2, sym_comment, sym_include, - [106580] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2582), 1, - aux_sym_method_definition_token1, - ACTIONS(3150), 1, - aux_sym_variable_definition_token1, - ACTIONS(3152), 1, - aux_sym_variable_definition_token2, - ACTIONS(3213), 1, - aux_sym__block_terminator_token1, - STATE(2166), 1, - aux_sym_interface_body_repeat1, - STATE(4371), 1, - sym_interface_body, - STATE(2075), 2, - sym_comment, - sym_include, - STATE(2966), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [106619] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(3233), 1, - sym_accumulate_aggregate, - STATE(2076), 2, - sym_comment, - sym_include, - ACTIONS(3172), 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, - [106648] = 15, + ACTIONS(3227), 11, + anon_sym_RPAREN, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + aux_sym__using_and_token1, + [103984] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2415), 1, + ACTIONS(2541), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2632), 1, + STATE(2530), 1, sym_on_error_phrase, - STATE(2761), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3221), 1, + STATE(2763), 1, + sym_on_quit_phrase, + STATE(3220), 1, sym_on_stop_phrase, STATE(3222), 1, aux_sym_for_statement_repeat1, - STATE(2077), 2, - sym_comment, - sym_include, - [106695] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2582), 1, - aux_sym_method_definition_token1, - ACTIONS(3150), 1, - aux_sym_variable_definition_token1, - ACTIONS(3152), 1, - aux_sym_variable_definition_token2, - ACTIONS(3215), 1, - aux_sym__block_terminator_token1, - STATE(2166), 1, - aux_sym_interface_body_repeat1, - STATE(4251), 1, - sym_interface_body, - STATE(2078), 2, - sym_comment, - sym_include, - STATE(2966), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [106734] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3217), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2258), 1, - aux_sym_for_phrase_repeat1, - STATE(2259), 1, - sym_where_clause, - STATE(2079), 2, + STATE(2075), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [106773] = 11, + [104031] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2582), 1, + ACTIONS(2565), 1, aux_sym_method_definition_token1, - ACTIONS(3150), 1, + ACTIONS(3137), 1, aux_sym_variable_definition_token1, - ACTIONS(3152), 1, + ACTIONS(3139), 1, aux_sym_variable_definition_token2, - ACTIONS(3219), 1, + ACTIONS(3229), 1, aux_sym__block_terminator_token1, - STATE(2166), 1, + STATE(2181), 1, aux_sym_interface_body_repeat1, - STATE(4176), 1, + STATE(4224), 1, sym_interface_body, - STATE(2080), 2, + STATE(2076), 2, sym_comment, sym_include, - STATE(2966), 5, + STATE(2920), 5, sym_property_definition, sym_event_definition, sym_method_definition, sym_dataset_definition, sym_temp_table_definition, - [106812] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3221), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2307), 1, - sym_where_clause, - STATE(2310), 1, - aux_sym_for_phrase_repeat1, - STATE(2081), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [106851] = 15, + [104070] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2409), 1, + ACTIONS(2400), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2513), 1, + STATE(2603), 1, sym_on_error_phrase, STATE(2696), 1, - sym_on_quit_phrase, - STATE(2851), 1, sym_sort_clause, - STATE(3297), 1, + STATE(2836), 1, + sym_on_quit_phrase, + STATE(3438), 1, sym_on_stop_phrase, - STATE(3298), 1, + STATE(3440), 1, aux_sym_for_statement_repeat1, - STATE(2082), 2, - sym_comment, - sym_include, - [106898] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3225), 1, - aux_sym_variable_tuning_token1, - STATE(2203), 1, - sym_field_option, - ACTIONS(3231), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - ACTIONS(3223), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - ACTIONS(3228), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - STATE(2083), 3, + STATE(2077), 2, sym_comment, sym_include, - aux_sym_field_definition_repeat1, - [106933] = 15, + [104117] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2383), 1, + ACTIONS(2529), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2554), 1, + STATE(2578), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2881), 1, + STATE(2714), 1, sym_on_quit_phrase, - STATE(3121), 1, - aux_sym_for_statement_repeat1, - STATE(3122), 1, + STATE(3126), 1, sym_on_stop_phrase, - STATE(2084), 2, + STATE(3127), 1, + aux_sym_for_statement_repeat1, + STATE(2078), 2, sym_comment, sym_include, - [106980] = 15, + [104164] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2385), 1, + ACTIONS(2398), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2669), 1, + STATE(2531), 1, sym_on_error_phrase, - STATE(2701), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3254), 1, - aux_sym_for_statement_repeat1, - STATE(3255), 1, + STATE(2761), 1, + sym_on_quit_phrase, + STATE(3216), 1, sym_on_stop_phrase, - STATE(2085), 2, + STATE(3217), 1, + aux_sym_for_statement_repeat1, + STATE(2079), 2, sym_comment, sym_include, - [107027] = 15, + [104211] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2530), 1, + ACTIONS(2513), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2660), 1, + STATE(2592), 1, sym_on_error_phrase, - STATE(2727), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3282), 1, + STATE(2705), 1, + sym_on_quit_phrase, + STATE(3105), 1, sym_on_stop_phrase, - STATE(3283), 1, + STATE(3106), 1, aux_sym_for_statement_repeat1, - STATE(2086), 2, - sym_comment, - sym_include, - [107074] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(2087), 2, - sym_comment, - sym_include, - ACTIONS(3234), 11, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - aux_sym__using_and_token1, - [107101] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3044), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2299), 1, - aux_sym_for_phrase_repeat1, - STATE(2301), 1, - sym_where_clause, - STATE(2088), 2, + STATE(2080), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [107140] = 15, + [104258] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(3236), 1, + ACTIONS(3231), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2516), 1, + STATE(2591), 1, sym_on_error_phrase, - STATE(2765), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3054), 1, + STATE(2706), 1, + sym_on_quit_phrase, + STATE(3108), 1, sym_on_stop_phrase, - STATE(3281), 1, + STATE(3109), 1, aux_sym_for_statement_repeat1, - STATE(2089), 2, + STATE(2081), 2, sym_comment, sym_include, - [107187] = 6, - ACTIONS(59), 1, + [104305] = 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(441), 1, - sym_accumulate_aggregate, - STATE(2090), 2, + ACTIONS(3201), 1, + sym_identifier, + STATE(2046), 1, + aux_sym_sort_clause_repeat1, + STATE(2641), 1, + sym_sort_column, + STATE(4546), 1, + sym_object_access, + STATE(2082), 2, sym_comment, sym_include, - ACTIONS(3154), 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, - [107216] = 15, + STATE(2083), 2, + sym_qualified_name, + sym_function_call, + ACTIONS(3233), 5, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [104342] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2547), 1, + sym_sort_order, + STATE(2083), 2, + sym_comment, + sym_include, + ACTIONS(2601), 4, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + ACTIONS(2597), 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, + [104373] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2534), 1, + ACTIONS(2515), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2627), 1, + STATE(2582), 1, sym_on_error_phrase, - STATE(2787), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3211), 1, + STATE(2709), 1, + sym_on_quit_phrase, + STATE(3112), 1, sym_on_stop_phrase, - STATE(3212), 1, + STATE(3113), 1, aux_sym_for_statement_repeat1, - STATE(2091), 2, + STATE(2084), 2, sym_comment, sym_include, - [107263] = 6, + [104420] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(360), 1, - sym_accumulate_aggregate, - STATE(2092), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(3235), 1, + anon_sym_COLON, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2559), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2859), 1, + sym_on_quit_phrase, + STATE(3386), 1, + sym_on_stop_phrase, + STATE(3388), 1, + aux_sym_for_statement_repeat1, + STATE(2085), 2, sym_comment, sym_include, - ACTIONS(3154), 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, - [107292] = 6, - ACTIONS(3), 1, + [104467] = 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(73), 1, - sym__namedot, - STATE(2093), 2, - sym_comment, - sym_include, - ACTIONS(71), 10, - sym_identifier, + ACTIONS(2136), 1, anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - [107321] = 6, + ACTIONS(2519), 1, + anon_sym_COLON, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2581), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2711), 1, + sym_on_quit_phrase, + STATE(3117), 1, + sym_on_stop_phrase, + STATE(3118), 1, + aux_sym_for_statement_repeat1, + STATE(2086), 2, + sym_comment, + sym_include, + [104514] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(551), 1, - sym_accumulate_aggregate, - STATE(2094), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2527), 1, + anon_sym_COLON, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2560), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2862), 1, + sym_on_quit_phrase, + STATE(3397), 1, + sym_on_stop_phrase, + STATE(3398), 1, + aux_sym_for_statement_repeat1, + STATE(2087), 2, sym_comment, sym_include, - ACTIONS(3154), 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, - [107350] = 15, + [104561] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2536), 1, + ACTIONS(3237), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2663), 1, + STATE(2566), 1, sym_on_error_phrase, - STATE(2729), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3279), 1, + STATE(2864), 1, + sym_on_quit_phrase, + STATE(3401), 1, sym_on_stop_phrase, - STATE(3280), 1, + STATE(3405), 1, aux_sym_for_statement_repeat1, - STATE(2095), 2, + STATE(2088), 2, sym_comment, sym_include, - [107397] = 11, + [104608] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1180), 1, + ACTIONS(1171), 1, aux_sym_where_clause_token1, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3238), 1, + ACTIONS(2968), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2264), 1, + STATE(2225), 1, aux_sym_for_phrase_repeat1, - STATE(2284), 1, + STATE(2226), 1, sym_where_clause, - STATE(2096), 2, + STATE(2089), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [107436] = 6, + [104647] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(430), 1, - sym_accumulate_aggregate, - STATE(2097), 2, + ACTIONS(1171), 1, + aux_sym_where_clause_token1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3239), 1, + sym__terminator, + STATE(1967), 1, + sym_query_tuning, + STATE(2185), 1, + sym_where_clause, + STATE(2224), 1, + aux_sym_for_phrase_repeat1, + STATE(2090), 2, sym_comment, sym_include, - ACTIONS(3154), 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, - [107465] = 15, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [104686] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2347), 1, + ACTIONS(2525), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2564), 1, + STATE(2570), 1, sym_on_error_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(2877), 1, - sym_on_quit_phrase, - STATE(3141), 1, - aux_sym_for_statement_repeat1, - STATE(3142), 1, - sym_on_stop_phrase, - STATE(2098), 2, - sym_comment, - sym_include, - [107512] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(2407), 1, - anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2614), 1, - sym_on_error_phrase, - STATE(2797), 1, + STATE(2866), 1, sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3207), 1, + STATE(3406), 1, sym_on_stop_phrase, - STATE(3208), 1, + STATE(3408), 1, aux_sym_for_statement_repeat1, - STATE(2099), 2, + STATE(2091), 2, sym_comment, sym_include, - [107559] = 6, + [104733] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3148), 1, - sym_accumulate_aggregate, - STATE(2100), 2, + ACTIONS(2934), 1, + aux_sym_variable_tuning_token1, + STATE(2010), 1, + aux_sym_field_definition_repeat1, + STATE(2296), 1, + sym_field_option, + ACTIONS(2938), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + STATE(2092), 2, sym_comment, sym_include, - ACTIONS(3172), 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, - [107588] = 15, + ACTIONS(2932), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(2936), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + [104770] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(3240), 1, + ACTIONS(2523), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2668), 1, + STATE(2571), 1, sym_on_error_phrase, - STATE(2695), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3269), 1, + STATE(2867), 1, + sym_on_quit_phrase, + STATE(3416), 1, sym_on_stop_phrase, - STATE(3270), 1, + STATE(3418), 1, aux_sym_for_statement_repeat1, - STATE(2101), 2, + STATE(2093), 2, sym_comment, sym_include, - [107635] = 15, + [104817] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2532), 1, + ACTIONS(2384), 1, anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2605), 1, + STATE(2664), 1, sym_on_error_phrase, - STATE(2811), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3202), 1, - sym_on_stop_phrase, - STATE(3203), 1, + STATE(2847), 1, + sym_on_quit_phrase, + STATE(3431), 1, aux_sym_for_statement_repeat1, - STATE(2102), 2, + STATE(3432), 1, + sym_on_stop_phrase, + STATE(2094), 2, sym_comment, sym_include, - [107682] = 10, + [104864] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2936), 1, + ACTIONS(2934), 1, aux_sym_variable_tuning_token1, - STATE(2083), 1, + STATE(2011), 1, aux_sym_field_definition_repeat1, - STATE(2203), 1, + STATE(2296), 1, sym_field_option, - ACTIONS(2940), 2, + ACTIONS(2938), 2, aux_sym_variable_tuning_token5, aux_sym_property_tuning_token1, - STATE(2103), 2, + STATE(2095), 2, sym_comment, sym_include, - ACTIONS(2938), 3, + ACTIONS(2936), 3, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, - ACTIONS(3242), 3, + ACTIONS(3241), 3, sym__terminator, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [107719] = 9, + [104901] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(3246), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(2265), 1, - aux_sym_inherits_repeat1, - STATE(2104), 2, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2406), 1, + anon_sym_COLON, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2572), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2869), 1, + sym_on_quit_phrase, + STATE(3420), 1, + sym_on_stop_phrase, + STATE(3421), 1, + aux_sym_for_statement_repeat1, + STATE(2096), 2, sym_comment, sym_include, - ACTIONS(3244), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_final_token1, - [107754] = 5, + [104948] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2105), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + ACTIONS(2521), 1, + anon_sym_COLON, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2586), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_sort_clause, + STATE(2857), 1, + sym_on_quit_phrase, + STATE(3424), 1, + sym_on_stop_phrase, + STATE(3426), 1, + aux_sym_for_statement_repeat1, + STATE(2097), 2, sym_comment, sym_include, - ACTIONS(3248), 11, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - aux_sym__using_and_token1, - [107781] = 10, + [104995] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2936), 1, - aux_sym_variable_tuning_token1, - STATE(2083), 1, - aux_sym_field_definition_repeat1, - STATE(2203), 1, - sym_field_option, - ACTIONS(2940), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - STATE(2106), 2, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(3243), 1, + anon_sym_COLON, + STATE(2510), 1, + aux_sym_do_block_repeat1, + STATE(2829), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(2098), 2, sym_comment, sym_include, - ACTIONS(2938), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - ACTIONS(3250), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [107818] = 6, + STATE(4195), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [105035] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(420), 1, - sym_accumulate_aggregate, - STATE(2107), 2, + ACTIONS(3247), 1, + aux_sym_variable_definition_token2, + STATE(2099), 2, sym_comment, sym_include, - ACTIONS(3154), 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, - [107847] = 11, - ACTIONS(59), 1, + ACTIONS(3245), 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, + [105063] = 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(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3252), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2227), 1, - aux_sym_for_phrase_repeat1, - STATE(2230), 1, - sym_where_clause, - STATE(2108), 2, + STATE(2100), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [107886] = 15, + ACTIONS(155), 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, + [105089] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - ACTIONS(3254), 1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(3249), 1, anon_sym_COLON, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2665), 1, - sym_on_error_phrase, - STATE(2688), 1, - sym_on_quit_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3276), 1, - sym_on_stop_phrase, - STATE(3277), 1, - aux_sym_for_statement_repeat1, - STATE(2109), 2, + STATE(2510), 1, + aux_sym_do_block_repeat1, + STATE(2856), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(2101), 2, sym_comment, sym_include, - [107933] = 9, + STATE(4368), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [105129] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(3246), 1, - anon_sym_COMMA, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(2266), 1, - aux_sym_inherits_repeat1, - STATE(2110), 2, + STATE(2102), 2, sym_comment, sym_include, - ACTIONS(3256), 7, + ACTIONS(3251), 8, aux_sym_serialization_tuning_token1, + anon_sym_COMMA, anon_sym_COLON, aux_sym_property_type_token1, aux_sym_inherits_token1, aux_sym_implements_token1, aux_sym_use_widget_pool_token1, aux_sym_final_token1, - [107968] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1180), 1, - aux_sym_where_clause_token1, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3118), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2262), 1, - aux_sym_for_phrase_repeat1, - STATE(2272), 1, - sym_where_clause, - STATE(2111), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [108007] = 15, + [105159] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, + ACTIONS(2144), 1, aux_sym_sort_clause_token1, - ACTIONS(2151), 1, + ACTIONS(2146), 1, aux_sym_sort_clause_token2, - ACTIONS(2552), 1, - anon_sym_COLON, - STATE(2418), 1, + STATE(2420), 1, aux_sym_for_phrase_repeat2, - STATE(2666), 1, + STATE(2689), 1, sym_on_error_phrase, - STATE(2690), 1, - sym_on_quit_phrase, - STATE(2851), 1, + STATE(2696), 1, sym_sort_clause, - STATE(3274), 1, + STATE(2978), 1, + sym_on_quit_phrase, + STATE(3593), 1, sym_on_stop_phrase, - STATE(3275), 1, - aux_sym_for_statement_repeat1, - STATE(2112), 2, + ACTIONS(2440), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2103), 2, sym_comment, sym_include, - [108054] = 11, - ACTIONS(59), 1, + [105201] = 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(2582), 1, - aux_sym_method_definition_token1, - ACTIONS(3150), 1, - aux_sym_variable_definition_token1, - ACTIONS(3152), 1, - aux_sym_variable_definition_token2, - ACTIONS(3258), 1, - aux_sym__block_terminator_token1, - STATE(2166), 1, - aux_sym_interface_body_repeat1, - STATE(4281), 1, - sym_interface_body, - STATE(2113), 2, + ACTIONS(2721), 1, + sym_identifier, + ACTIONS(2725), 1, + aux_sym_while_phrase_token1, + ACTIONS(3253), 1, + anon_sym_COLON, + ACTIONS(3255), 1, + aux_sym_on_error_phrase_token1, + STATE(2440), 1, + sym_to_phrase, + STATE(2853), 1, + sym_while_phrase, + STATE(2874), 1, + sym_on_error_phrase, + STATE(3366), 1, + sym_on_quit_phrase, + STATE(4237), 1, + sym_assignment, + STATE(4301), 1, + sym_on_stop_phrase, + STATE(2104), 2, sym_comment, sym_include, - STATE(2966), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [108093] = 6, + [105245] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(456), 1, - sym_accumulate_aggregate, - STATE(2114), 2, - sym_comment, - sym_include, - ACTIONS(3154), 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, - [108122] = 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(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(3260), 1, - aux_sym_widget_field_token1, - STATE(2439), 1, - aux_sym_on_statement_repeat2, - STATE(2558), 1, - aux_sym_on_statement_repeat1, - STATE(3423), 1, - sym_do_block, - STATE(3481), 1, - sym_widget_phrase, - STATE(4282), 1, - sym_label, - STATE(2115), 2, + STATE(2105), 2, sym_comment, sym_include, - [108166] = 12, + ACTIONS(3257), 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, + [105271] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2959), 1, - anon_sym_COLON, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - STATE(2131), 1, + ACTIONS(2974), 1, + anon_sym_COLON, + STATE(2113), 1, aux_sym_do_block_repeat1, - STATE(2882), 1, + STATE(2843), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2116), 2, + STATE(2106), 2, sym_comment, sym_include, - STATE(4489), 3, + STATE(4263), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108206] = 12, + [105311] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3070), 1, + ACTIONS(3259), 1, anon_sym_COLON, - STATE(2623), 1, + STATE(2121), 1, aux_sym_do_block_repeat1, - STATE(2826), 1, + STATE(2776), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2117), 2, + STATE(2107), 2, sym_comment, sym_include, - STATE(4211), 3, + STATE(4079), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108246] = 11, + [105351] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(974), 1, - sym__integer_literal, - ACTIONS(980), 1, - anon_sym_LPAREN, - ACTIONS(3262), 1, - sym_identifier, - STATE(932), 1, - sym_object_access, - STATE(965), 1, - sym__decimal_literal, - STATE(966), 1, - sym__unary_minus_expressions, - STATE(2118), 2, + STATE(2108), 2, sym_comment, sym_include, - STATE(967), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - [108284] = 11, - ACTIONS(3), 1, + ACTIONS(191), 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, + [105377] = 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(655), 1, - sym__integer_literal, - ACTIONS(763), 1, - anon_sym_LPAREN, - ACTIONS(3264), 1, - sym_identifier, - STATE(554), 1, - sym_object_access, - STATE(559), 1, - sym__decimal_literal, - STATE(586), 1, - sym__unary_minus_expressions, - STATE(2119), 2, + STATE(2109), 2, sym_comment, sym_include, - STATE(582), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - [108322] = 12, + ACTIONS(2978), 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, + [105403] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3074), 1, + ACTIONS(2974), 1, anon_sym_COLON, - STATE(2173), 1, + STATE(2510), 1, aux_sym_do_block_repeat1, - STATE(2739), 1, + STATE(2843), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2120), 2, + STATE(2110), 2, sym_comment, sym_include, - STATE(4136), 3, + STATE(4263), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108362] = 14, + [105443] = 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(1272), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(3266), 1, - aux_sym_widget_field_token1, - STATE(1293), 1, - sym_do_block, - STATE(2378), 1, - aux_sym_on_statement_repeat2, - STATE(2558), 1, - aux_sym_on_statement_repeat1, - STATE(3481), 1, - sym_widget_phrase, - STATE(4507), 1, - sym_label, - STATE(2121), 2, + ACTIONS(2725), 1, + aux_sym_while_phrase_token1, + ACTIONS(3255), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3261), 1, + anon_sym_COLON, + STATE(2446), 1, + sym_to_phrase, + STATE(2846), 1, + sym_while_phrase, + STATE(2876), 1, + sym_on_error_phrase, + STATE(3354), 1, + sym_on_quit_phrase, + STATE(4237), 1, + sym_assignment, + STATE(4271), 1, + sym_on_stop_phrase, + STATE(2111), 2, sym_comment, sym_include, - [108406] = 12, + [105487] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3268), 1, + ACTIONS(3263), 1, anon_sym_COLON, - STATE(2623), 1, + STATE(2510), 1, aux_sym_do_block_repeat1, - STATE(2879), 1, + STATE(2715), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2122), 2, + STATE(2112), 2, sym_comment, sym_include, - STATE(4284), 3, + STATE(4308), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108446] = 12, + [105527] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3070), 1, + ACTIONS(2984), 1, anon_sym_COLON, - STATE(2163), 1, + STATE(2510), 1, aux_sym_do_block_repeat1, - STATE(2826), 1, + STATE(2835), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2123), 2, + STATE(2113), 2, sym_comment, sym_include, - STATE(4211), 3, + STATE(4223), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108486] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(2124), 2, - sym_comment, - sym_include, - ACTIONS(3270), 8, - aux_sym_serialization_tuning_token1, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_final_token1, - [108516] = 14, + [105567] = 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(1272), 1, + ACTIONS(325), 1, + sym__integer_literal, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(3265), 1, sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(1304), 1, - aux_sym_widget_field_token1, - STATE(1494), 1, - sym_do_block, - STATE(2447), 1, - aux_sym_on_statement_repeat2, - STATE(2558), 1, - aux_sym_on_statement_repeat1, - STATE(3481), 1, - sym_widget_phrase, - STATE(4507), 1, - sym_label, - STATE(2125), 2, + STATE(27), 1, + sym__decimal_literal, + STATE(28), 1, + sym_object_access, + STATE(38), 1, + sym__unary_minus_expressions, + STATE(2114), 2, sym_comment, sym_include, - [108560] = 12, + STATE(36), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_function_call, + [105605] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3110), 1, + ACTIONS(2984), 1, anon_sym_COLON, - STATE(2189), 1, + STATE(2098), 1, aux_sym_do_block_repeat1, - STATE(2869), 1, + STATE(2835), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2126), 2, + STATE(2115), 2, sym_comment, sym_include, - STATE(4424), 3, + STATE(4223), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108600] = 14, + [105645] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(888), 1, + ACTIONS(834), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - ACTIONS(1276), 1, + ACTIONS(1269), 1, anon_sym_COMMA, - ACTIONS(1288), 1, + ACTIONS(1302), 1, aux_sym_widget_field_token1, - STATE(1070), 1, + STATE(906), 1, sym_do_block, - STATE(2443), 1, + STATE(2468), 1, aux_sym_on_statement_repeat2, - STATE(2558), 1, + STATE(2635), 1, aux_sym_on_statement_repeat1, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4155), 1, + STATE(4197), 1, sym_label, - STATE(2127), 2, + STATE(2116), 2, sym_comment, sym_include, - [108644] = 11, - ACTIONS(3), 1, + [105689] = 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(1136), 1, - sym__integer_literal, - ACTIONS(1142), 1, - anon_sym_LPAREN, - ACTIONS(3272), 1, - sym_identifier, - STATE(719), 1, - sym_object_access, - STATE(736), 1, - sym__decimal_literal, - STATE(742), 1, - sym__unary_minus_expressions, - STATE(2128), 2, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(2986), 1, + anon_sym_COLON, + STATE(2172), 1, + aux_sym_do_block_repeat1, + STATE(2781), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(2117), 2, sym_comment, sym_include, - STATE(741), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - [108682] = 11, + STATE(4051), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [105729] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(926), 1, + ACTIONS(1021), 1, sym__integer_literal, - ACTIONS(932), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(3274), 1, + ACTIONS(3267), 1, sym_identifier, - STATE(837), 1, + STATE(982), 1, sym_object_access, - STATE(937), 1, - sym__decimal_literal, - STATE(941), 1, + STATE(1399), 1, sym__unary_minus_expressions, - STATE(2129), 2, + STATE(1404), 1, + sym__decimal_literal, + STATE(2118), 2, sym_comment, sym_include, - STATE(899), 4, + STATE(1400), 4, sym_qualified_name, sym_number_literal, sym_parenthesized_expression, sym_function_call, - [108720] = 13, + [105767] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2804), 1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(2986), 1, + anon_sym_COLON, + STATE(2510), 1, + aux_sym_do_block_repeat1, + STATE(2781), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(2119), 2, + sym_comment, + sym_include, + STATE(4051), 3, sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2933), 1, - sym_on_quit_phrase, - STATE(3926), 1, sym_on_stop_phrase, - ACTIONS(2421), 2, - anon_sym_COMMA, + sym_on_quit_phrase, + [105807] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(3269), 1, anon_sym_COLON, - STATE(2130), 2, + STATE(2510), 1, + aux_sym_do_block_repeat1, + STATE(2668), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(2120), 2, sym_comment, sym_include, - [108762] = 12, + STATE(4264), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [105847] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3110), 1, + ACTIONS(3271), 1, anon_sym_COLON, - STATE(2623), 1, + STATE(2510), 1, aux_sym_do_block_repeat1, - STATE(2869), 1, + STATE(2764), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2131), 2, + STATE(2121), 2, sym_comment, sym_include, - STATE(4424), 3, + STATE(4105), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108802] = 14, - ACTIONS(3), 1, + [105887] = 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(2744), 1, - sym_identifier, - ACTIONS(2748), 1, - aux_sym_while_phrase_token1, - ACTIONS(3276), 1, - anon_sym_COLON, - ACTIONS(3278), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - STATE(2484), 1, - sym_to_phrase, - STATE(2796), 1, - sym_while_phrase, - STATE(2941), 1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(3273), 1, + anon_sym_COLON, + STATE(2510), 1, + aux_sym_do_block_repeat1, + STATE(2807), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(2122), 2, + sym_comment, + sym_include, + STATE(4402), 3, sym_on_error_phrase, - STATE(3381), 1, - sym_on_quit_phrase, - STATE(4240), 1, sym_on_stop_phrase, - STATE(4377), 1, - sym_assignment, - STATE(2132), 2, + sym_on_quit_phrase, + [105927] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(3275), 1, + anon_sym_COLON, + STATE(2120), 1, + aux_sym_do_block_repeat1, + STATE(2675), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(2123), 2, sym_comment, sym_include, - [108846] = 14, + STATE(4615), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [105967] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - ACTIONS(1276), 1, + ACTIONS(1269), 1, anon_sym_COMMA, - ACTIONS(1286), 1, + ACTIONS(1279), 1, aux_sym_widget_field_token1, - STATE(1279), 1, + STATE(1386), 1, sym_do_block, - STATE(2383), 1, + STATE(2389), 1, aux_sym_on_statement_repeat2, - STATE(2558), 1, + STATE(2635), 1, aux_sym_on_statement_repeat1, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4079), 1, + STATE(4133), 1, sym_label, - STATE(2133), 2, + STATE(2124), 2, sym_comment, sym_include, - [108890] = 14, - ACTIONS(3), 1, + [106011] = 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(297), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(3280), 1, - aux_sym_widget_field_token1, - STATE(1464), 1, - sym_do_block, - STATE(2476), 1, - aux_sym_on_statement_repeat2, - STATE(2558), 1, - aux_sym_on_statement_repeat1, - STATE(3481), 1, - sym_widget_phrase, - STATE(4370), 1, - sym_label, - STATE(2134), 2, + STATE(2125), 2, sym_comment, sym_include, - [108934] = 11, + ACTIONS(3277), 10, + anon_sym_RPAREN, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + [106037] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(945), 1, sym__integer_literal, - ACTIONS(339), 1, + ACTIONS(951), 1, anon_sym_LPAREN, - ACTIONS(3282), 1, + ACTIONS(3279), 1, sym_identifier, - STATE(11), 1, - sym__decimal_literal, - STATE(42), 1, + STATE(1165), 1, sym_object_access, - STATE(43), 1, + STATE(1539), 1, sym__unary_minus_expressions, - STATE(2135), 2, + STATE(1545), 1, + sym__decimal_literal, + STATE(2126), 2, sym_comment, sym_include, - STATE(44), 4, + STATE(1541), 4, sym_qualified_name, sym_number_literal, sym_parenthesized_expression, sym_function_call, - [108972] = 14, + [106075] = 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(1272), 1, + ACTIONS(659), 1, + sym__integer_literal, + ACTIONS(802), 1, + anon_sym_LPAREN, + ACTIONS(3281), 1, sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(1298), 1, - aux_sym_widget_field_token1, - STATE(2509), 1, - aux_sym_on_statement_repeat2, - STATE(2558), 1, - aux_sym_on_statement_repeat1, - STATE(3371), 1, - sym_do_block, - STATE(3481), 1, - sym_widget_phrase, - STATE(4282), 1, - sym_label, - STATE(2136), 2, + STATE(549), 1, + sym_object_access, + STATE(550), 1, + sym__unary_minus_expressions, + STATE(577), 1, + sym__decimal_literal, + STATE(2127), 2, sym_comment, sym_include, - [109016] = 12, + STATE(553), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_function_call, + [106113] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3284), 1, - anon_sym_COLON, - STATE(2623), 1, - aux_sym_do_block_repeat1, - STATE(2706), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(2137), 2, + ACTIONS(3285), 1, + aux_sym_variable_definition_token2, + STATE(2128), 2, sym_comment, sym_include, - STATE(4103), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [109056] = 14, + ACTIONS(3283), 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, + [106141] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, + ACTIONS(907), 1, + sym__integer_literal, + ACTIONS(913), 1, + anon_sym_LPAREN, + ACTIONS(3287), 1, sym_identifier, - ACTIONS(2748), 1, - aux_sym_while_phrase_token1, - ACTIONS(3278), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3286), 1, - anon_sym_COLON, - STATE(2481), 1, - sym_to_phrase, - STATE(2705), 1, - sym_while_phrase, - STATE(3008), 1, - sym_on_error_phrase, - STATE(3252), 1, - sym_on_quit_phrase, - STATE(4077), 1, - sym_on_stop_phrase, - STATE(4377), 1, - sym_assignment, - STATE(2138), 2, - sym_comment, - sym_include, - [109100] = 12, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3288), 1, - anon_sym_COLON, - STATE(2623), 1, - aux_sym_do_block_repeat1, - STATE(2786), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(2139), 2, + STATE(718), 1, + sym_object_access, + STATE(732), 1, + sym__unary_minus_expressions, + STATE(752), 1, + sym__decimal_literal, + STATE(2129), 2, sym_comment, sym_include, - STATE(4107), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [109140] = 14, + STATE(730), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_function_call, + [106179] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, + ACTIONS(273), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(2748), 1, - aux_sym_while_phrase_token1, - ACTIONS(3278), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3290), 1, - anon_sym_COLON, - STATE(2395), 1, - sym_to_phrase, - STATE(2852), 1, - sym_while_phrase, - STATE(2908), 1, - sym_on_error_phrase, - STATE(3163), 1, - sym_on_quit_phrase, - STATE(4214), 1, - sym_on_stop_phrase, - STATE(4377), 1, - sym_assignment, - STATE(2140), 2, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1290), 1, + aux_sym_widget_field_token1, + STATE(1502), 1, + sym_do_block, + STATE(2431), 1, + aux_sym_on_statement_repeat2, + STATE(2635), 1, + aux_sym_on_statement_repeat1, + STATE(3215), 1, + sym_widget_phrase, + STATE(4405), 1, + sym_label, + STATE(2130), 2, sym_comment, sym_include, - [109184] = 11, + [106223] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1016), 1, - sym__integer_literal, - ACTIONS(1022), 1, - anon_sym_LPAREN, - ACTIONS(3292), 1, + ACTIONS(273), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, sym_identifier, - STATE(946), 1, - sym_object_access, - STATE(980), 1, - sym__unary_minus_expressions, - STATE(999), 1, - sym__decimal_literal, - STATE(2141), 2, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1296), 1, + aux_sym_widget_field_token1, + STATE(1138), 1, + sym_do_block, + STATE(2467), 1, + aux_sym_on_statement_repeat2, + STATE(2635), 1, + aux_sym_on_statement_repeat1, + STATE(3215), 1, + sym_widget_phrase, + STATE(4405), 1, + sym_label, + STATE(2131), 2, sym_comment, sym_include, - STATE(981), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - [109222] = 13, - ACTIONS(59), 1, + [106267] = 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(2145), 1, + ACTIONS(2721), 1, + sym_identifier, + ACTIONS(2725), 1, + aux_sym_while_phrase_token1, + ACTIONS(3255), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2743), 1, + ACTIONS(3289), 1, + anon_sym_COLON, + STATE(2481), 1, + sym_to_phrase, + STATE(2790), 1, + sym_while_phrase, + STATE(2899), 1, sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2979), 1, + STATE(3267), 1, sym_on_quit_phrase, - STATE(3569), 1, + STATE(4024), 1, sym_on_stop_phrase, - ACTIONS(3294), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2142), 2, + STATE(4237), 1, + sym_assignment, + STATE(2132), 2, sym_comment, sym_include, - [109264] = 12, + [106311] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3049), 1, + ACTIONS(3291), 1, anon_sym_COLON, - STATE(2200), 1, + STATE(2510), 1, aux_sym_do_block_repeat1, - STATE(2784), 1, + STATE(2726), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2143), 2, + STATE(2133), 2, sym_comment, sym_include, - STATE(4099), 3, + STATE(4282), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [109304] = 12, + [106351] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(834), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1304), 1, + aux_sym_widget_field_token1, + STATE(890), 1, + sym_do_block, + STATE(2494), 1, + aux_sym_on_statement_repeat2, + STATE(2635), 1, + aux_sym_on_statement_repeat1, + STATE(3215), 1, + sym_widget_phrase, + STATE(4197), 1, + sym_label, + STATE(2134), 2, + sym_comment, + sym_include, + [106395] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3030), 1, + ACTIONS(3037), 1, anon_sym_COLON, - STATE(2122), 1, + STATE(2510), 1, aux_sym_do_block_repeat1, - STATE(2875), 1, + STATE(2788), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2144), 2, + STATE(2135), 2, sym_comment, sym_include, - STATE(4256), 3, + STATE(4017), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [109344] = 12, + [106435] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(834), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(3293), 1, + aux_sym_widget_field_token1, + STATE(879), 1, + sym_do_block, + STATE(2475), 1, + aux_sym_on_statement_repeat2, + STATE(2635), 1, + aux_sym_on_statement_repeat1, + STATE(3215), 1, + sym_widget_phrase, + STATE(4197), 1, + sym_label, + STATE(2136), 2, + sym_comment, + sym_include, + [106479] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2954), 1, + anon_sym_COLON, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3030), 1, - anon_sym_COLON, - STATE(2623), 1, + STATE(2122), 1, aux_sym_do_block_repeat1, - STATE(2875), 1, + STATE(2799), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2145), 2, + STATE(2137), 2, sym_comment, sym_include, - STATE(4256), 3, + STATE(4445), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [109384] = 5, - ACTIONS(3), 1, + [106519] = 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, - STATE(2146), 2, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(3273), 1, + anon_sym_COLON, + STATE(2101), 1, + aux_sym_do_block_repeat1, + STATE(2807), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(2138), 2, sym_comment, sym_include, - ACTIONS(179), 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, - [109410] = 12, + STATE(4402), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [106559] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3296), 1, + ACTIONS(3037), 1, anon_sym_COLON, - STATE(2623), 1, + STATE(2119), 1, aux_sym_do_block_repeat1, - STATE(2857), 1, + STATE(2788), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2147), 2, + STATE(2139), 2, sym_comment, sym_include, - STATE(4310), 3, + STATE(4017), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [109450] = 6, + [106599] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3300), 1, - aux_sym_variable_definition_token2, - STATE(2148), 2, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2696), 1, + sym_sort_clause, + STATE(2824), 1, + sym_on_error_phrase, + STATE(2884), 1, + sym_on_quit_phrase, + STATE(3900), 1, + sym_on_stop_phrase, + ACTIONS(3295), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2140), 2, sym_comment, sym_include, - ACTIONS(3298), 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, - [109478] = 6, + [106641] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3304), 1, + ACTIONS(3299), 1, aux_sym_variable_definition_token2, - STATE(2149), 2, + STATE(2141), 2, sym_comment, sym_include, - ACTIONS(3302), 9, + ACTIONS(3297), 9, aux_sym__block_terminator_token1, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, @@ -135651,427 +132069,508 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [109506] = 12, + [106669] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2696), 1, + sym_sort_clause, + STATE(2783), 1, + sym_on_error_phrase, + STATE(2904), 1, + sym_on_quit_phrase, + STATE(3580), 1, + sym_on_stop_phrase, + ACTIONS(2392), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2142), 2, + sym_comment, + sym_include, + [106711] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3038), 1, + ACTIONS(3291), 1, anon_sym_COLON, - STATE(2183), 1, + STATE(2112), 1, aux_sym_do_block_repeat1, - STATE(2721), 1, + STATE(2726), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2150), 2, + STATE(2143), 2, sym_comment, sym_include, - STATE(4038), 3, + STATE(4282), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [109546] = 14, + [106751] = 13, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2696), 1, + sym_sort_clause, + STATE(2736), 1, + sym_on_error_phrase, + STATE(2952), 1, + sym_on_quit_phrase, + STATE(3841), 1, + sym_on_stop_phrase, + ACTIONS(2555), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2144), 2, + sym_comment, + sym_include, + [106793] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(729), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - ACTIONS(1276), 1, + ACTIONS(1269), 1, anon_sym_COMMA, - ACTIONS(1284), 1, + ACTIONS(1273), 1, aux_sym_widget_field_token1, - STATE(1255), 1, - sym_do_block, - STATE(2415), 1, + STATE(2458), 1, aux_sym_on_statement_repeat2, - STATE(2558), 1, + STATE(2635), 1, aux_sym_on_statement_repeat1, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4079), 1, + STATE(3245), 1, + sym_do_block, + STATE(4280), 1, sym_label, - STATE(2151), 2, + STATE(2145), 2, sym_comment, sym_include, - [109590] = 12, + [106837] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3038), 1, + ACTIONS(3243), 1, anon_sym_COLON, - STATE(2623), 1, + STATE(2152), 1, aux_sym_do_block_repeat1, - STATE(2721), 1, + STATE(2829), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2152), 2, + STATE(2146), 2, sym_comment, sym_include, - STATE(4038), 3, + STATE(4195), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [109630] = 13, - ACTIONS(59), 1, + [106877] = 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(2145), 1, + ACTIONS(2721), 1, + sym_identifier, + ACTIONS(2725), 1, + aux_sym_while_phrase_token1, + ACTIONS(3255), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2851), 1, - sym_sort_clause, - STATE(2868), 1, + ACTIONS(3301), 1, + anon_sym_COLON, + STATE(2478), 1, + sym_to_phrase, + STATE(2802), 1, + sym_while_phrase, + STATE(2890), 1, sym_on_error_phrase, - STATE(2903), 1, + STATE(3275), 1, sym_on_quit_phrase, - STATE(3778), 1, + STATE(4058), 1, sym_on_stop_phrase, - ACTIONS(2459), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2153), 2, + STATE(4237), 1, + sym_assignment, + STATE(2147), 2, sym_comment, sym_include, - [109672] = 14, + [106921] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(2748), 1, + ACTIONS(2725), 1, aux_sym_while_phrase_token1, - ACTIONS(3278), 1, + ACTIONS(3255), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3306), 1, + ACTIONS(3303), 1, anon_sym_COLON, - STATE(2451), 1, + STATE(2390), 1, sym_to_phrase, - STATE(2717), 1, + STATE(2782), 1, sym_while_phrase, - STATE(3018), 1, + STATE(2903), 1, sym_on_error_phrase, - STATE(3250), 1, + STATE(3473), 1, sym_on_quit_phrase, - STATE(4046), 1, - sym_on_stop_phrase, - STATE(4377), 1, + STATE(4237), 1, sym_assignment, - STATE(2154), 2, + STATE(4495), 1, + sym_on_stop_phrase, + STATE(2148), 2, sym_comment, sym_include, - [109716] = 5, - ACTIONS(59), 1, + [106965] = 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(2155), 2, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(3305), 1, + aux_sym_widget_field_token1, + STATE(1416), 1, + sym_do_block, + STATE(2455), 1, + aux_sym_on_statement_repeat2, + STATE(2635), 1, + aux_sym_on_statement_repeat1, + STATE(3215), 1, + sym_widget_phrase, + STATE(4133), 1, + sym_label, + STATE(2149), 2, sym_comment, sym_include, - ACTIONS(3308), 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, - [109742] = 12, + [107009] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2959), 1, - anon_sym_COLON, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - STATE(2623), 1, + ACTIONS(3033), 1, + anon_sym_COLON, + STATE(2167), 1, aux_sym_do_block_repeat1, - STATE(2882), 1, + STATE(2681), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2156), 2, + STATE(2150), 2, sym_comment, sym_include, - STATE(4489), 3, + STATE(4517), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [109782] = 13, + [107049] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2832), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(2924), 1, - sym_on_quit_phrase, - STATE(3690), 1, - sym_on_stop_phrase, - ACTIONS(2572), 2, - anon_sym_COMMA, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(3069), 1, anon_sym_COLON, - STATE(2157), 2, + STATE(2510), 1, + aux_sym_do_block_repeat1, + STATE(2791), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(2151), 2, sym_comment, sym_include, - [109824] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2744), 1, - sym_identifier, - ACTIONS(2748), 1, - aux_sym_while_phrase_token1, - ACTIONS(3278), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3310), 1, - anon_sym_COLON, - STATE(2495), 1, - sym_to_phrase, - STATE(2763), 1, - sym_while_phrase, - STATE(2990), 1, + STATE(4484), 3, sym_on_error_phrase, - STATE(3367), 1, - sym_on_quit_phrase, - STATE(4218), 1, sym_on_stop_phrase, - STATE(4377), 1, - sym_assignment, - STATE(2158), 2, - sym_comment, - sym_include, - [109868] = 9, + sym_on_quit_phrase, + [107089] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3312), 1, - aux_sym__block_terminator_token1, - ACTIONS(3314), 1, - aux_sym_variable_definition_token1, - ACTIONS(3317), 1, - aux_sym_variable_definition_token2, - ACTIONS(3320), 1, - aux_sym_method_definition_token1, - STATE(2159), 3, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(3307), 1, + anon_sym_COLON, + STATE(2510), 1, + aux_sym_do_block_repeat1, + STATE(2819), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(2152), 2, sym_comment, sym_include, - aux_sym_interface_body_repeat1, - STATE(2966), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [109902] = 12, + STATE(4170), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [107129] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3004), 1, + ACTIONS(3069), 1, anon_sym_COLON, - STATE(2623), 1, + STATE(2160), 1, aux_sym_do_block_repeat1, - STATE(2856), 1, + STATE(2791), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2160), 2, + STATE(2153), 2, sym_comment, sym_include, - STATE(4222), 3, + STATE(4484), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [109942] = 6, - ACTIONS(3), 1, + [107169] = 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(3323), 1, - sym__namedot, - STATE(2161), 3, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + ACTIONS(3071), 1, + anon_sym_COLON, + STATE(2184), 1, + aux_sym_do_block_repeat1, + STATE(2669), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(2154), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(71), 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, - [109970] = 6, + STATE(4564), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [107209] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3328), 1, - aux_sym_variable_definition_token2, - STATE(2162), 2, - sym_comment, - sym_include, - ACTIONS(3326), 9, + ACTIONS(3309), 1, aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, + ACTIONS(3311), 1, aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, + ACTIONS(3314), 1, + aux_sym_variable_definition_token2, + ACTIONS(3317), 1, aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [109998] = 12, - ACTIONS(59), 1, + STATE(2155), 3, + sym_comment, + sym_include, + aux_sym_interface_body_repeat1, + STATE(2920), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [107243] = 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(2963), 1, + ACTIONS(2721), 1, + sym_identifier, + ACTIONS(2725), 1, + aux_sym_while_phrase_token1, + ACTIONS(3255), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3026), 1, + ACTIONS(3320), 1, anon_sym_COLON, - STATE(2623), 1, - aux_sym_do_block_repeat1, - STATE(2683), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(2163), 2, - sym_comment, - sym_include, - STATE(4172), 3, + STATE(2371), 1, + sym_to_phrase, + STATE(2769), 1, + sym_while_phrase, + STATE(2909), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(3484), 1, sym_on_quit_phrase, - [110038] = 12, + STATE(4237), 1, + sym_assignment, + STATE(4534), 1, + sym_on_stop_phrase, + STATE(2156), 2, + sym_comment, + sym_include, + [107287] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(872), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(3322), 1, + aux_sym_widget_field_token1, + STATE(845), 1, + sym_do_block, + STATE(2410), 1, + aux_sym_on_statement_repeat2, + STATE(2635), 1, + aux_sym_on_statement_repeat1, + STATE(3215), 1, + sym_widget_phrase, + STATE(4077), 1, + sym_label, + STATE(2157), 2, + sym_comment, + sym_include, + [107331] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3026), 1, + ACTIONS(3071), 1, anon_sym_COLON, - STATE(2198), 1, + STATE(2510), 1, aux_sym_do_block_repeat1, - STATE(2683), 1, + STATE(2669), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2164), 2, + STATE(2158), 2, sym_comment, sym_include, - STATE(4172), 3, + STATE(4564), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [110078] = 7, + [107371] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2849), 1, sym__namedot, STATE(2161), 1, aux_sym_qualified_name_repeat1, - STATE(2165), 2, + STATE(2159), 2, sym_comment, sym_include, - ACTIONS(63), 8, + ACTIONS(79), 8, sym_identifier, sym__terminator, aux_sym_sort_order_token1, @@ -136080,3261 +132579,2927 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_order_token4, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [110108] = 10, + [107401] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2582), 1, - aux_sym_method_definition_token1, - ACTIONS(3150), 1, - aux_sym_variable_definition_token1, - ACTIONS(3152), 1, - aux_sym_variable_definition_token2, - ACTIONS(3330), 1, - aux_sym__block_terminator_token1, - STATE(2159), 1, - aux_sym_interface_body_repeat1, - STATE(2166), 2, + ACTIONS(2954), 1, + anon_sym_COLON, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2960), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2962), 1, + aux_sym_do_tuning_token1, + STATE(2510), 1, + aux_sym_do_block_repeat1, + STATE(2799), 1, + sym_stop_after_phrase, + STATE(2916), 1, + sym_do_tuning, + STATE(2160), 2, sym_comment, sym_include, - STATE(2966), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [110144] = 14, + STATE(4445), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [107441] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, - sym_identifier, - ACTIONS(2748), 1, - aux_sym_while_phrase_token1, - ACTIONS(3278), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3332), 1, - anon_sym_COLON, - STATE(2396), 1, - sym_to_phrase, - STATE(2834), 1, - sym_while_phrase, - STATE(2898), 1, - sym_on_error_phrase, - STATE(3159), 1, - sym_on_quit_phrase, - STATE(4247), 1, - sym_on_stop_phrase, - STATE(4377), 1, - sym_assignment, - STATE(2167), 2, + ACTIONS(3324), 1, + sym__namedot, + STATE(2161), 3, sym_comment, sym_include, - [110188] = 14, + aux_sym_qualified_name_repeat1, + 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, + [107469] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(2748), 1, + ACTIONS(2725), 1, aux_sym_while_phrase_token1, - ACTIONS(3278), 1, + ACTIONS(3255), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3334), 1, + ACTIONS(3327), 1, anon_sym_COLON, - STATE(2406), 1, + STATE(2454), 1, sym_to_phrase, - STATE(2874), 1, + STATE(2748), 1, sym_while_phrase, - STATE(2899), 1, + STATE(2924), 1, sym_on_error_phrase, - STATE(3497), 1, + STATE(3183), 1, sym_on_quit_phrase, - STATE(4377), 1, - sym_assignment, - STATE(4506), 1, + STATE(4185), 1, sym_on_stop_phrase, - STATE(2168), 2, + STATE(4237), 1, + sym_assignment, + STATE(2162), 2, + sym_comment, + sym_include, + [107513] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(872), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1283), 1, + aux_sym_widget_field_token1, + STATE(1025), 1, + sym_do_block, + STATE(2418), 1, + aux_sym_on_statement_repeat2, + STATE(2635), 1, + aux_sym_on_statement_repeat1, + STATE(3215), 1, + sym_widget_phrase, + STATE(4077), 1, + sym_label, + STATE(2163), 2, sym_comment, sym_include, - [110232] = 11, + [107557] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(333), 1, + ACTIONS(1059), 1, sym__integer_literal, - ACTIONS(339), 1, + ACTIONS(1065), 1, anon_sym_LPAREN, - ACTIONS(3336), 1, + ACTIONS(3329), 1, sym_identifier, - STATE(11), 1, - sym__decimal_literal, - STATE(42), 1, + STATE(1540), 1, sym_object_access, - STATE(43), 1, + STATE(1590), 1, sym__unary_minus_expressions, - STATE(2169), 2, + STATE(1593), 1, + sym__decimal_literal, + STATE(2164), 2, sym_comment, sym_include, - STATE(44), 4, + STATE(1591), 4, sym_qualified_name, sym_number_literal, sym_parenthesized_expression, sym_function_call, - [110270] = 12, + [107595] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3338), 1, + ACTIONS(3091), 1, anon_sym_COLON, - STATE(2175), 1, + STATE(2133), 1, aux_sym_do_block_repeat1, - STATE(2859), 1, + STATE(2730), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2170), 2, + STATE(2165), 2, sym_comment, sym_include, - STATE(4367), 3, + STATE(4254), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [110310] = 12, + [107635] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2721), 1, + sym_identifier, + ACTIONS(2725), 1, + aux_sym_while_phrase_token1, + ACTIONS(3255), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3331), 1, + anon_sym_COLON, + STATE(2403), 1, + sym_to_phrase, + STATE(2686), 1, + sym_while_phrase, + STATE(2976), 1, + sym_on_error_phrase, + STATE(3095), 1, + sym_on_quit_phrase, + STATE(4237), 1, + sym_assignment, + STATE(4338), 1, + sym_on_stop_phrase, + STATE(2166), 2, + sym_comment, + sym_include, + [107679] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3340), 1, + ACTIONS(3275), 1, anon_sym_COLON, - STATE(2623), 1, + STATE(2510), 1, aux_sym_do_block_repeat1, - STATE(2704), 1, + STATE(2675), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2171), 2, + STATE(2167), 2, sym_comment, sym_include, - STATE(4142), 3, + STATE(4615), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [110350] = 12, + [107719] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3004), 1, - anon_sym_COLON, - STATE(2145), 1, - aux_sym_do_block_repeat1, - STATE(2856), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(2172), 2, + ACTIONS(3335), 1, + aux_sym_variable_definition_token2, + STATE(2168), 2, sym_comment, sym_include, - STATE(4222), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [110390] = 12, + ACTIONS(3333), 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, + [107747] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3342), 1, + ACTIONS(3091), 1, anon_sym_COLON, - STATE(2623), 1, + STATE(2510), 1, aux_sym_do_block_repeat1, - STATE(2865), 1, + STATE(2730), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2173), 2, + STATE(2169), 2, sym_comment, sym_include, - STATE(4412), 3, + STATE(4254), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [110430] = 13, - ACTIONS(59), 1, + [107787] = 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(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2149), 1, - aux_sym_sort_clause_token1, - ACTIONS(2151), 1, - aux_sym_sort_clause_token2, - STATE(2418), 1, - aux_sym_for_phrase_repeat2, - STATE(2716), 1, - sym_on_error_phrase, - STATE(2851), 1, - sym_sort_clause, - STATE(3001), 1, - sym_on_quit_phrase, - STATE(3530), 1, - sym_on_stop_phrase, - ACTIONS(2570), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2174), 2, + ACTIONS(983), 1, + sym__integer_literal, + ACTIONS(989), 1, + anon_sym_LPAREN, + ACTIONS(3337), 1, + sym_identifier, + STATE(656), 1, + sym_object_access, + STATE(663), 1, + sym__unary_minus_expressions, + STATE(704), 1, + sym__decimal_literal, + STATE(2170), 2, sym_comment, sym_include, - [110472] = 12, - ACTIONS(59), 1, + STATE(662), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_function_call, + [107825] = 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(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3344), 1, - anon_sym_COLON, - STATE(2623), 1, - aux_sym_do_block_repeat1, - STATE(2823), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(2175), 2, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1271), 1, + aux_sym_widget_field_token1, + STATE(1281), 1, + sym_do_block, + STATE(2448), 1, + aux_sym_on_statement_repeat2, + STATE(2635), 1, + aux_sym_on_statement_repeat1, + STATE(3215), 1, + sym_widget_phrase, + STATE(4133), 1, + sym_label, + STATE(2171), 2, sym_comment, sym_include, - STATE(4350), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [110512] = 12, + [107869] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3342), 1, + ACTIONS(3259), 1, anon_sym_COLON, - STATE(2137), 1, + STATE(2510), 1, aux_sym_do_block_repeat1, - STATE(2865), 1, + STATE(2776), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2176), 2, + STATE(2172), 2, sym_comment, sym_include, - STATE(4412), 3, + STATE(4079), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [110552] = 12, + [107909] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3268), 1, + ACTIONS(2144), 1, + aux_sym_sort_clause_token1, + ACTIONS(2146), 1, + aux_sym_sort_clause_token2, + STATE(2420), 1, + aux_sym_for_phrase_repeat2, + STATE(2696), 1, + sym_sort_clause, + STATE(2784), 1, + sym_on_error_phrase, + STATE(2901), 1, + sym_on_quit_phrase, + STATE(3989), 1, + sym_on_stop_phrase, + ACTIONS(2557), 2, + anon_sym_COMMA, anon_sym_COLON, - STATE(2147), 1, - aux_sym_do_block_repeat1, - STATE(2879), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(2177), 2, + STATE(2173), 2, sym_comment, sym_include, - STATE(4284), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [110592] = 14, + [107951] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(872), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - ACTIONS(1276), 1, + ACTIONS(1269), 1, anon_sym_COMMA, - ACTIONS(3346), 1, + ACTIONS(1294), 1, aux_sym_widget_field_token1, - STATE(1012), 1, + STATE(1050), 1, sym_do_block, - STATE(2377), 1, + STATE(2438), 1, aux_sym_on_statement_repeat2, - STATE(2558), 1, + STATE(2635), 1, aux_sym_on_statement_repeat1, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4079), 1, + STATE(4077), 1, sym_label, - STATE(2178), 2, + STATE(2174), 2, sym_comment, sym_include, - [110636] = 5, + [107995] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2179), 2, - sym_comment, - sym_include, - ACTIONS(175), 10, + ACTIONS(2721), 1, sym_identifier, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2725), 1, + aux_sym_while_phrase_token1, + ACTIONS(3255), 1, aux_sym_on_error_phrase_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [110662] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(888), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(1282), 1, - aux_sym_widget_field_token1, - STATE(1047), 1, - sym_do_block, - STATE(2470), 1, - aux_sym_on_statement_repeat2, - STATE(2558), 1, - aux_sym_on_statement_repeat1, - STATE(3481), 1, - sym_widget_phrase, - STATE(4155), 1, - sym_label, - STATE(2180), 2, + ACTIONS(3339), 1, + anon_sym_COLON, + STATE(2451), 1, + sym_to_phrase, + STATE(2740), 1, + sym_while_phrase, + STATE(2949), 1, + sym_on_error_phrase, + STATE(3175), 1, + sym_on_quit_phrase, + STATE(4212), 1, + sym_on_stop_phrase, + STATE(4237), 1, + sym_assignment, + STATE(2175), 2, sym_comment, sym_include, - [110706] = 14, + [108039] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(297), 1, + ACTIONS(273), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - ACTIONS(1276), 1, + ACTIONS(1269), 1, anon_sym_COMMA, - ACTIONS(1300), 1, + ACTIONS(3341), 1, aux_sym_widget_field_token1, - STATE(1591), 1, + STATE(1470), 1, sym_do_block, - STATE(2510), 1, + STATE(2362), 1, aux_sym_on_statement_repeat2, - STATE(2558), 1, + STATE(2635), 1, aux_sym_on_statement_repeat1, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4370), 1, + STATE(4405), 1, sym_label, - STATE(2181), 2, + STATE(2176), 2, sym_comment, sym_include, - [110750] = 12, + [108083] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3348), 1, + ACTIONS(3123), 1, anon_sym_COLON, - STATE(2623), 1, + STATE(2510), 1, aux_sym_do_block_repeat1, - STATE(2758), 1, + STATE(2737), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2182), 2, + STATE(2177), 2, sym_comment, sym_include, - STATE(4081), 3, + STATE(4220), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [110790] = 12, - ACTIONS(59), 1, + [108123] = 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(2963), 1, + ACTIONS(2721), 1, + sym_identifier, + ACTIONS(2725), 1, + aux_sym_while_phrase_token1, + ACTIONS(3255), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3055), 1, + ACTIONS(3343), 1, anon_sym_COLON, - STATE(2623), 1, - aux_sym_do_block_repeat1, - STATE(2748), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(2183), 2, - sym_comment, - sym_include, - STATE(4053), 3, + STATE(2436), 1, + sym_to_phrase, + STATE(2841), 1, + sym_while_phrase, + STATE(2878), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(3368), 1, sym_on_quit_phrase, - [110830] = 12, + STATE(4183), 1, + sym_on_stop_phrase, + STATE(4237), 1, + sym_assignment, + STATE(2178), 2, + sym_comment, + sym_include, + [108167] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3055), 1, + ACTIONS(3123), 1, anon_sym_COLON, - STATE(2182), 1, + STATE(2169), 1, aux_sym_do_block_repeat1, - STATE(2748), 1, + STATE(2737), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2184), 2, + STATE(2179), 2, sym_comment, sym_include, - STATE(4053), 3, + STATE(4220), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [110870] = 14, + [108207] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, + ACTIONS(729), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(2748), 1, - aux_sym_while_phrase_token1, - ACTIONS(3278), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3350), 1, - anon_sym_COLON, - STATE(2472), 1, - sym_to_phrase, - STATE(2746), 1, - sym_while_phrase, - STATE(2989), 1, - sym_on_error_phrase, - STATE(3289), 1, - sym_on_quit_phrase, - STATE(4138), 1, - sym_on_stop_phrase, - STATE(4377), 1, - sym_assignment, - STATE(2185), 2, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1306), 1, + aux_sym_widget_field_token1, + STATE(2489), 1, + aux_sym_on_statement_repeat2, + STATE(2635), 1, + aux_sym_on_statement_repeat1, + STATE(3215), 1, + sym_widget_phrase, + STATE(3365), 1, + sym_do_block, + STATE(4280), 1, + sym_label, + STATE(2180), 2, sym_comment, sym_include, - [110914] = 11, - ACTIONS(3), 1, + [108251] = 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(1086), 1, - sym__integer_literal, - ACTIONS(1092), 1, - anon_sym_LPAREN, - ACTIONS(3352), 1, - sym_identifier, - STATE(639), 1, - sym_object_access, - STATE(674), 1, - sym__decimal_literal, - STATE(689), 1, - sym__unary_minus_expressions, - STATE(2186), 2, + ACTIONS(2565), 1, + aux_sym_method_definition_token1, + ACTIONS(3137), 1, + aux_sym_variable_definition_token1, + ACTIONS(3139), 1, + aux_sym_variable_definition_token2, + ACTIONS(3345), 1, + aux_sym__block_terminator_token1, + STATE(2155), 1, + aux_sym_interface_body_repeat1, + STATE(2181), 2, sym_comment, sym_include, - STATE(692), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - [110952] = 14, + STATE(2920), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [108287] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, + ACTIONS(729), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(2748), 1, - aux_sym_while_phrase_token1, - ACTIONS(3278), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3354), 1, - anon_sym_COLON, - STATE(2384), 1, - sym_to_phrase, - STATE(2835), 1, - sym_while_phrase, - STATE(2952), 1, - sym_on_error_phrase, - STATE(3172), 1, - sym_on_quit_phrase, - STATE(4187), 1, - sym_on_stop_phrase, - STATE(4377), 1, - sym_assignment, - STATE(2187), 2, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(3347), 1, + aux_sym_widget_field_token1, + STATE(2435), 1, + aux_sym_on_statement_repeat2, + STATE(2635), 1, + aux_sym_on_statement_repeat1, + STATE(3215), 1, + sym_widget_phrase, + STATE(3469), 1, + sym_do_block, + STATE(4280), 1, + sym_label, + STATE(2182), 2, sym_comment, sym_include, - [110996] = 12, + [108331] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3049), 1, - anon_sym_COLON, - STATE(2623), 1, - aux_sym_do_block_repeat1, - STATE(2784), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(2188), 2, + ACTIONS(3351), 1, + aux_sym_variable_definition_token2, + STATE(2183), 2, sym_comment, sym_include, - STATE(4099), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [111036] = 12, + ACTIONS(3349), 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, + [108359] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, + ACTIONS(2960), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, + ACTIONS(2962), 1, aux_sym_do_tuning_token1, - ACTIONS(3338), 1, + ACTIONS(3033), 1, anon_sym_COLON, - STATE(2623), 1, + STATE(2510), 1, aux_sym_do_block_repeat1, - STATE(2859), 1, + STATE(2681), 1, sym_stop_after_phrase, - STATE(3017), 1, + STATE(2916), 1, sym_do_tuning, - STATE(2189), 2, + STATE(2184), 2, sym_comment, sym_include, - STATE(4367), 3, + STATE(4517), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [111076] = 6, + [108399] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3358), 1, - aux_sym_variable_definition_token2, - STATE(2190), 2, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3353), 1, + sym__terminator, + STATE(1967), 1, + sym_query_tuning, + STATE(2233), 1, + aux_sym_for_phrase_repeat1, + STATE(2185), 2, sym_comment, sym_include, - ACTIONS(3356), 9, - aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [111104] = 14, - ACTIONS(3), 1, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [108432] = 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(789), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(1302), 1, - aux_sym_widget_field_token1, - STATE(2372), 1, - aux_sym_on_statement_repeat2, - STATE(2558), 1, - aux_sym_on_statement_repeat1, - STATE(3390), 1, - sym_do_block, - STATE(3481), 1, - sym_widget_phrase, - STATE(4282), 1, - sym_label, - STATE(2191), 2, + ACTIONS(3355), 1, + sym__terminator, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + STATE(2214), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2186), 2, sym_comment, sym_include, - [111148] = 6, + ACTIONS(3357), 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, + [108465] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3362), 1, - aux_sym_variable_definition_token2, - STATE(2192), 2, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3361), 1, + sym__terminator, + STATE(1894), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2187), 2, sym_comment, sym_include, - ACTIONS(3360), 9, - aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [111176] = 5, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [108498] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2193), 2, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3363), 1, + sym__terminator, + STATE(2214), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2188), 2, sym_comment, sym_include, - ACTIONS(3084), 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, - [111202] = 12, + ACTIONS(3357), 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, + [108531] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3364), 1, - anon_sym_COLON, - STATE(2171), 1, - aux_sym_do_block_repeat1, - STATE(2691), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(2194), 2, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3365), 1, + sym__terminator, + STATE(2214), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2189), 2, sym_comment, sym_include, - STATE(4152), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [111242] = 12, + ACTIONS(3357), 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, + [108564] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3348), 1, - anon_sym_COLON, - STATE(2139), 1, - aux_sym_do_block_repeat1, - STATE(2758), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(2195), 2, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3367), 1, + sym__terminator, + STATE(2214), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2190), 2, sym_comment, sym_include, - STATE(4081), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [111282] = 5, + ACTIONS(3357), 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, + [108597] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2196), 2, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3369), 1, + sym__terminator, + STATE(1894), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2191), 2, sym_comment, sym_include, - ACTIONS(3366), 10, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - [111308] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(888), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(3368), 1, - aux_sym_widget_field_token1, - STATE(1036), 1, - sym_do_block, - STATE(2478), 1, - aux_sym_on_statement_repeat2, - STATE(2558), 1, - aux_sym_on_statement_repeat1, - STATE(3481), 1, - sym_widget_phrase, - STATE(4155), 1, - sym_label, - STATE(2197), 2, - sym_comment, - sym_include, - [111352] = 12, + [108630] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3364), 1, - anon_sym_COLON, - STATE(2623), 1, - aux_sym_do_block_repeat1, - STATE(2691), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(2198), 2, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3371), 1, + sym__terminator, + STATE(1967), 1, + sym_query_tuning, + STATE(2191), 1, + aux_sym_for_phrase_repeat1, + STATE(2192), 2, sym_comment, sym_include, - STATE(4152), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [111392] = 14, - ACTIONS(3), 1, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [108663] = 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(297), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(1311), 1, - aux_sym_widget_field_token1, - STATE(1507), 1, - sym_do_block, - STATE(2491), 1, - aux_sym_on_statement_repeat2, - STATE(2558), 1, - aux_sym_on_statement_repeat1, - STATE(3481), 1, - sym_widget_phrase, - STATE(4370), 1, - sym_label, - STATE(2199), 2, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3373), 1, + sym__terminator, + STATE(2188), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2193), 2, sym_comment, sym_include, - [111436] = 12, + ACTIONS(3357), 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, + [108696] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2965), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2967), 1, - aux_sym_do_tuning_token1, - ACTIONS(3074), 1, - anon_sym_COLON, - STATE(2623), 1, - aux_sym_do_block_repeat1, - STATE(2739), 1, - sym_stop_after_phrase, - STATE(3017), 1, - sym_do_tuning, - STATE(2200), 2, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3375), 1, + sym__terminator, + STATE(2189), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2194), 2, sym_comment, sym_include, - STATE(4136), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [111476] = 14, - ACTIONS(3), 1, + ACTIONS(3357), 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, + [108729] = 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(43), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - ACTIONS(1276), 1, - anon_sym_COMMA, - ACTIONS(1280), 1, - aux_sym_widget_field_token1, - STATE(1361), 1, - sym_do_block, - STATE(2482), 1, - aux_sym_on_statement_repeat2, - STATE(2558), 1, - aux_sym_on_statement_repeat1, - STATE(3481), 1, - sym_widget_phrase, - STATE(4507), 1, - sym_label, - STATE(2201), 2, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3377), 1, + sym__terminator, + STATE(2214), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2195), 2, sym_comment, sym_include, - [111520] = 14, - ACTIONS(3), 1, + ACTIONS(3357), 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, + [108762] = 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(2744), 1, - sym_identifier, - ACTIONS(2748), 1, - aux_sym_while_phrase_token1, - ACTIONS(3278), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3370), 1, - anon_sym_COLON, - STATE(2469), 1, - sym_to_phrase, - STATE(2829), 1, - sym_while_phrase, - STATE(2921), 1, - sym_on_error_phrase, - STATE(3503), 1, - sym_on_quit_phrase, - STATE(4377), 1, - sym_assignment, - STATE(4561), 1, - sym_on_stop_phrase, - STATE(2202), 2, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3379), 1, + sym__terminator, + STATE(2214), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2196), 2, sym_comment, sym_include, - [111564] = 5, + ACTIONS(3357), 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, + [108795] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2203), 2, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3381), 1, + sym__terminator, + STATE(2190), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2197), 2, sym_comment, sym_include, - ACTIONS(3372), 9, - sym__terminator, + ACTIONS(3357), 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, - [111589] = 9, + [108828] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3374), 1, + ACTIONS(3188), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2204), 2, + STATE(2277), 1, + aux_sym_for_phrase_repeat1, + STATE(2198), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [111622] = 9, + [108861] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3092), 1, + ACTIONS(3188), 1, sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2323), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2205), 2, + STATE(1967), 1, + sym_query_tuning, + STATE(2199), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [111655] = 9, + [108894] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3090), 1, + ACTIONS(3383), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2232), 1, + STATE(2187), 1, aux_sym_for_phrase_repeat1, - STATE(2206), 2, + STATE(2200), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [111688] = 9, + [108927] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(2969), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2282), 1, - aux_sym_for_phrase_repeat1, - STATE(2207), 2, + STATE(2201), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [111721] = 9, + ACTIONS(1314), 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, + [108952] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2969), 1, + ACTIONS(3383), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2208), 2, + STATE(2202), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [111754] = 9, + [108985] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3199), 1, - sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, - sym_query_tuning, - STATE(2209), 2, + ACTIONS(3174), 1, + anon_sym_COMMA, + STATE(2284), 1, + aux_sym_inherits_repeat1, + STATE(2203), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [111787] = 9, + ACTIONS(3172), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + [109014] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3199), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2294), 1, - aux_sym_for_phrase_repeat1, - STATE(2210), 2, + ACTIONS(3174), 1, + anon_sym_COMMA, + STATE(2283), 1, + aux_sym_inherits_repeat1, + STATE(2204), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [111820] = 9, + ACTIONS(3176), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + [109043] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3376), 1, + ACTIONS(3043), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2211), 2, + STATE(2212), 1, + aux_sym_for_phrase_repeat1, + STATE(2205), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [111853] = 9, + [109076] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3378), 1, + ACTIONS(3385), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2212), 2, + STATE(2264), 1, + aux_sym_for_phrase_repeat1, + STATE(2206), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [111886] = 9, + [109109] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3378), 1, + ACTIONS(3043), 1, sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2241), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2213), 2, + STATE(1967), 1, + sym_query_tuning, + STATE(2207), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [111919] = 9, + [109142] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(2991), 1, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3387), 1, sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2306), 1, - aux_sym_for_phrase_repeat1, - STATE(2214), 2, + STATE(2214), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2208), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [111952] = 9, + ACTIONS(3357), 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, + [109175] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3380), 1, - sym__terminator, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - STATE(2269), 1, + ACTIONS(3389), 1, + sym__terminator, + STATE(2195), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2215), 2, + STATE(2209), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [111985] = 9, + [109208] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3386), 1, + ACTIONS(3391), 1, sym__terminator, - STATE(2256), 1, + STATE(2196), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2216), 2, + STATE(2210), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [112018] = 9, + [109241] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3388), 1, + ACTIONS(3393), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2217), 2, + STATE(2211), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [112051] = 9, + [109274] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3390), 1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3239), 1, sym__terminator, - STATE(2303), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2218), 2, + STATE(1894), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2212), 2, sym_comment, sym_include, - ACTIONS(3382), 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, - [112084] = 9, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [109307] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3392), 1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3239), 1, sym__terminator, - STATE(2304), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2219), 2, + STATE(1967), 1, + sym_query_tuning, + STATE(2224), 1, + aux_sym_for_phrase_repeat1, + STATE(2213), 2, sym_comment, sym_include, - ACTIONS(3382), 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, - [112117] = 9, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [109340] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3394), 1, + ACTIONS(3395), 1, sym__terminator, - STATE(2296), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, + ACTIONS(3400), 1, + aux_sym_variable_tuning_token6, + STATE(2392), 1, sym_variable_tuning, - STATE(2220), 2, + STATE(2214), 3, sym_comment, sym_include, - ACTIONS(3382), 5, + aux_sym_variable_definition_repeat2, + ACTIONS(3397), 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, - [112150] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3246), 1, - anon_sym_COMMA, - STATE(2265), 1, - aux_sym_inherits_repeat1, - STATE(2221), 2, - sym_comment, - sym_include, - ACTIONS(3244), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_final_token1, - [112179] = 7, + [109371] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3246), 1, - anon_sym_COMMA, - STATE(2266), 1, - aux_sym_inherits_repeat1, - STATE(2222), 2, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2968), 1, + sym__terminator, + STATE(1967), 1, + sym_query_tuning, + STATE(2225), 1, + aux_sym_for_phrase_repeat1, + STATE(2215), 2, sym_comment, sym_include, - ACTIONS(3256), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_final_token1, - [112208] = 9, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [109404] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3396), 1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2976), 1, sym__terminator, - STATE(2296), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2223), 2, + STATE(1894), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2216), 2, sym_comment, sym_include, - ACTIONS(3382), 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, - [112241] = 9, - ACTIONS(59), 1, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [109437] = 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(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3398), 1, - sym__terminator, - STATE(2296), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2224), 2, + ACTIONS(2926), 1, + sym_identifier, + STATE(2299), 1, + aux_sym_sort_clause_repeat1, + STATE(2925), 1, + sym_sort_column, + STATE(4312), 1, + sym_object_access, + STATE(2217), 2, sym_comment, sym_include, - ACTIONS(3382), 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, - [112274] = 9, + STATE(2297), 2, + sym_qualified_name, + sym_function_call, + ACTIONS(3403), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [109472] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2991), 1, + ACTIONS(2976), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2225), 2, + STATE(2199), 1, + aux_sym_for_phrase_repeat1, + STATE(2218), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [112307] = 9, + [109505] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3400), 1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(2968), 1, sym__terminator, - STATE(2267), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2226), 2, + STATE(1894), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2219), 2, sym_comment, sym_include, - ACTIONS(3382), 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, - [112340] = 9, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [109538] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3402), 1, + ACTIONS(3211), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2227), 2, + STATE(2202), 1, + aux_sym_for_phrase_repeat1, + STATE(2220), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [112373] = 9, + [109571] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3028), 1, + ACTIONS(3211), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2228), 2, + STATE(2221), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [112406] = 9, + [109604] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3404), 1, + ACTIONS(3405), 1, sym__terminator, - STATE(2296), 1, + STATE(2227), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2229), 2, + STATE(2222), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [112439] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3402), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2298), 1, - aux_sym_for_phrase_repeat1, - STATE(2230), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [112472] = 9, + [109637] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3406), 1, + ACTIONS(3407), 1, sym__terminator, - STATE(2296), 1, + STATE(2228), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2231), 2, + STATE(2223), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [112505] = 9, + [109670] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3238), 1, + ACTIONS(3353), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2232), 2, + STATE(2224), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [112538] = 9, + [109703] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3118), 1, + ACTIONS(3219), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2233), 2, + STATE(2225), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [112571] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3408), 1, - sym__terminator, - STATE(2296), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2234), 2, - sym_comment, - sym_include, - ACTIONS(3382), 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, - [112604] = 9, + [109736] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3238), 1, + ACTIONS(3219), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2264), 1, + STATE(2234), 1, aux_sym_for_phrase_repeat1, - STATE(2235), 2, + STATE(2226), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [112637] = 9, + [109769] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3410), 1, + ACTIONS(3409), 1, sym__terminator, - STATE(2296), 1, + STATE(2214), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2236), 2, + STATE(2227), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [112670] = 9, + [109802] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3412), 1, + ACTIONS(3411), 1, sym__terminator, - STATE(2296), 1, + STATE(2214), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2237), 2, + STATE(2228), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [112703] = 9, + [109835] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3414), 1, + ACTIONS(3413), 1, sym__terminator, - STATE(2257), 1, + STATE(2238), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2238), 2, + STATE(2229), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [112736] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3044), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2299), 1, - aux_sym_for_phrase_repeat1, - STATE(2239), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [112769] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(2240), 2, - sym_comment, - sym_include, - ACTIONS(1554), 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, - [112794] = 9, + [109868] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3416), 1, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3415), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, - sym_query_tuning, - STATE(2241), 2, + STATE(2239), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2230), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [112827] = 9, + ACTIONS(3357), 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, + [109901] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3044), 1, + ACTIONS(3097), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, - sym_query_tuning, - STATE(2242), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [112860] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3252), 1, - sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2227), 1, - aux_sym_for_phrase_repeat1, - STATE(2243), 2, + STATE(2231), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [112893] = 9, + [109934] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3028), 1, + ACTIONS(3097), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2209), 1, + STATE(2221), 1, aux_sym_for_phrase_repeat1, - STATE(2244), 2, + STATE(2232), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [112926] = 9, + [109967] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3252), 1, + ACTIONS(3417), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2245), 2, + STATE(2233), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [112959] = 9, + [110000] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3118), 1, + ACTIONS(3419), 1, sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2262), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2246), 2, + STATE(1967), 1, + sym_query_tuning, + STATE(2234), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [112992] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3418), 1, - sym__terminator, - STATE(2224), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2247), 2, - sym_comment, - sym_include, - ACTIONS(3382), 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, - [113025] = 9, + [110033] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3420), 1, + ACTIONS(3419), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2217), 1, + STATE(2240), 1, aux_sym_for_phrase_repeat1, - STATE(2248), 2, + STATE(2235), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [113058] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3422), 1, - sym__terminator, - STATE(2223), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2249), 2, - sym_comment, - sym_include, - ACTIONS(3382), 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, - [113091] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3424), 1, - sym__terminator, - STATE(2318), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2250), 2, - sym_comment, - sym_include, - ACTIONS(3382), 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, - [113124] = 9, + [110066] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3426), 1, + ACTIONS(3421), 1, sym__terminator, - STATE(2319), 1, + STATE(2214), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2251), 2, - sym_comment, - sym_include, - ACTIONS(3382), 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, - [113157] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(2252), 2, + STATE(2236), 2, sym_comment, sym_include, - ACTIONS(1315), 9, - sym__terminator, + ACTIONS(3357), 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, - [113182] = 9, + [110099] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3428), 1, + ACTIONS(3423), 1, sym__terminator, - STATE(2295), 1, + STATE(2214), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2253), 2, + STATE(2237), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [113215] = 9, + [110132] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3430), 1, + ACTIONS(3425), 1, sym__terminator, - STATE(2296), 1, + STATE(2214), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2254), 2, + STATE(2238), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [113248] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_COMMA, - STATE(2255), 3, - sym_comment, - sym_include, - aux_sym_inherits_repeat1, - ACTIONS(3270), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_final_token1, - [113275] = 9, + [110165] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3435), 1, + ACTIONS(3427), 1, sym__terminator, - STATE(2296), 1, + STATE(2214), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2256), 2, + STATE(2239), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [113308] = 9, + [110198] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3437), 1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3429), 1, sym__terminator, - STATE(2296), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2257), 2, + STATE(1894), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2240), 2, sym_comment, sym_include, - ACTIONS(3382), 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, - [113341] = 9, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [110231] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3439), 1, + ACTIONS(2992), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2258), 2, + STATE(2241), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [113374] = 9, + [110264] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3439), 1, + ACTIONS(2992), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2270), 1, + STATE(2257), 1, aux_sym_for_phrase_repeat1, - STATE(2259), 2, + STATE(2242), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [113407] = 9, + [110297] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3420), 1, + ACTIONS(3103), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2260), 2, + STATE(2246), 1, + aux_sym_for_phrase_repeat1, + STATE(2243), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [113440] = 9, + [110330] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3441), 1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3103), 1, sym__terminator, - STATE(2329), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2261), 2, + STATE(1894), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2244), 2, sym_comment, sym_include, - ACTIONS(3382), 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, - [113473] = 9, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [110363] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3197), 1, + ACTIONS(3385), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2262), 2, + STATE(2245), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [113506] = 9, + [110396] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3090), 1, + ACTIONS(3141), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2263), 2, + STATE(2246), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [113539] = 9, + [110429] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3443), 1, + ACTIONS(3141), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2264), 2, + STATE(2259), 1, + aux_sym_for_phrase_repeat1, + STATE(2247), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [113572] = 7, + [110462] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3246), 1, - anon_sym_COMMA, - STATE(2255), 1, - aux_sym_inherits_repeat1, - STATE(2265), 2, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3105), 1, + sym__terminator, + STATE(1967), 1, + sym_query_tuning, + STATE(2261), 1, + aux_sym_for_phrase_repeat1, + STATE(2248), 2, sym_comment, sym_include, - ACTIONS(3445), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_final_token1, - [113601] = 7, - ACTIONS(59), 1, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [110495] = 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(3246), 1, - anon_sym_COMMA, - STATE(2255), 1, - aux_sym_inherits_repeat1, - STATE(2266), 2, + ACTIONS(93), 1, + sym__namedot, + STATE(2249), 2, sym_comment, sym_include, - ACTIONS(3447), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_final_token1, - [113630] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3449), 1, + ACTIONS(91), 8, + sym_identifier, sym__terminator, - STATE(2296), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2267), 2, - sym_comment, - sym_include, - ACTIONS(3382), 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, - [113663] = 9, + 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, + [110522] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3451), 1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3105), 1, sym__terminator, - STATE(2220), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2268), 2, + STATE(1894), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2250), 2, sym_comment, sym_include, - ACTIONS(3382), 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, - [113696] = 9, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [110555] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3453), 1, + ACTIONS(3431), 1, sym__terminator, - STATE(2296), 1, + STATE(2266), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2269), 2, + STATE(2251), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [113729] = 9, + [110588] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3455), 1, + ACTIONS(3433), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2270), 2, + STATE(2252), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [113762] = 9, + [110621] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3457), 1, + ACTIONS(3433), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2271), 2, + STATE(2211), 1, + aux_sym_for_phrase_repeat1, + STATE(2253), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [113795] = 9, + [110654] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3197), 1, + ACTIONS(3168), 1, sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2271), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2272), 2, + STATE(1967), 1, + sym_query_tuning, + STATE(2254), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [113828] = 9, + [110687] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3457), 1, + ACTIONS(3168), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2316), 1, + STATE(2245), 1, aux_sym_for_phrase_repeat1, - STATE(2273), 2, + STATE(2255), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [113861] = 9, + [110720] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3459), 1, + ACTIONS(3435), 1, sym__terminator, - STATE(2328), 1, + STATE(2267), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2274), 2, + STATE(2256), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [113894] = 9, + [110753] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3461), 1, + ACTIONS(3180), 1, sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2289), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2275), 2, + STATE(1967), 1, + sym_query_tuning, + STATE(2257), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [113927] = 9, + [110786] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3463), 1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3180), 1, sym__terminator, - STATE(2296), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2276), 2, + STATE(1967), 1, + sym_query_tuning, + STATE(2252), 1, + aux_sym_for_phrase_repeat1, + STATE(2258), 2, sym_comment, sym_include, - ACTIONS(3382), 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, - [113960] = 9, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [110819] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3465), 1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3437), 1, sym__terminator, - STATE(2236), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2277), 2, + STATE(1894), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2259), 2, sym_comment, sym_include, - ACTIONS(3382), 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, - [113993] = 9, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [110852] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3217), 1, + ACTIONS(3437), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2258), 1, + STATE(2270), 1, aux_sym_for_phrase_repeat1, - STATE(2278), 2, + STATE(2260), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [114026] = 9, + [110885] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3461), 1, + ACTIONS(3149), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2279), 2, + STATE(2261), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [114059] = 10, - ACTIONS(3), 1, + [110918] = 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(2926), 1, - sym_identifier, - STATE(2290), 1, - aux_sym_sort_clause_repeat1, - STATE(2890), 1, - sym_sort_column, - STATE(4255), 1, - sym_object_access, - STATE(2280), 2, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3045), 1, + sym__terminator, + STATE(1967), 1, + sym_query_tuning, + STATE(2254), 1, + aux_sym_for_phrase_repeat1, + STATE(2262), 2, sym_comment, sym_include, - STATE(2321), 2, - sym_qualified_name, - sym_function_call, - ACTIONS(2928), 3, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [110951] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3149), 1, sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [114094] = 9, + STATE(1967), 1, + sym_query_tuning, + STATE(2271), 1, + aux_sym_for_phrase_repeat1, + STATE(2263), 2, + sym_comment, + sym_include, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [110984] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3467), 1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3439), 1, sym__terminator, - STATE(2234), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2281), 2, + STATE(1894), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2264), 2, sym_comment, sym_include, - ACTIONS(3382), 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, - [114127] = 9, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [111017] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3217), 1, + ACTIONS(3045), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2282), 2, + STATE(2265), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [114160] = 9, + [111050] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3469), 1, + ACTIONS(3441), 1, sym__terminator, - STATE(2296), 1, + STATE(2214), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2283), 2, + STATE(2266), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [114193] = 9, + [111083] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, ACTIONS(3443), 1, sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2287), 1, - aux_sym_for_phrase_repeat1, - STATE(2284), 2, + STATE(2214), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2267), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [114226] = 9, + ACTIONS(3357), 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, + [111116] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3205), 1, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3445), 1, sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2212), 1, - aux_sym_for_phrase_repeat1, - STATE(2285), 2, + STATE(2275), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2268), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [114259] = 9, + ACTIONS(3357), 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, + [111149] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3205), 1, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3447), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, - sym_query_tuning, - STATE(2286), 2, + STATE(2276), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2269), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [114292] = 9, + ACTIONS(3357), 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] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3471), 1, + ACTIONS(3449), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2287), 2, + STATE(2270), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [114325] = 9, + [111215] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3374), 1, + ACTIONS(3451), 1, sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2211), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2288), 2, + STATE(1967), 1, + sym_query_tuning, + STATE(2271), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [114358] = 9, + [111248] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3473), 1, + ACTIONS(3451), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2289), 2, + STATE(2279), 1, + aux_sym_for_phrase_repeat1, + STATE(2272), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [114391] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3475), 1, - sym_identifier, - STATE(2890), 1, - sym_sort_column, - STATE(4255), 1, - sym_object_access, - STATE(2321), 2, - sym_qualified_name, - sym_function_call, - ACTIONS(3189), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - STATE(2290), 3, - sym_comment, - sym_include, - aux_sym_sort_clause_repeat1, - [114424] = 9, + [111281] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3478), 1, + ACTIONS(3453), 1, sym__terminator, - STATE(2229), 1, + STATE(2237), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2291), 2, + STATE(2273), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [114457] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - sym__namedot, - STATE(2292), 2, - sym_comment, - sym_include, - ACTIONS(71), 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, - [114484] = 9, + [111314] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3480), 1, + ACTIONS(3455), 1, sym__terminator, - STATE(2231), 1, + STATE(2236), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2293), 2, + STATE(2274), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [114517] = 9, + [111347] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3482), 1, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3457), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, - sym_query_tuning, - STATE(2294), 2, + STATE(2214), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2275), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [114550] = 9, + ACTIONS(3357), 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, + [111380] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3484), 1, + ACTIONS(3459), 1, sym__terminator, - STATE(2296), 1, + STATE(2214), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2295), 2, + STATE(2276), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [114583] = 8, + [111413] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3486), 1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3371), 1, sym__terminator, - ACTIONS(3491), 1, - aux_sym_variable_tuning_token6, - STATE(2490), 1, - sym_variable_tuning, - STATE(2296), 3, + STATE(1894), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2277), 2, sym_comment, sym_include, - aux_sym_variable_definition_repeat2, - ACTIONS(3488), 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, - [114614] = 10, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [111446] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -139343,1930 +135508,1806 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2926), 1, sym_identifier, - STATE(2290), 1, + STATE(2299), 1, aux_sym_sort_clause_repeat1, - STATE(2890), 1, + STATE(2925), 1, sym_sort_column, - STATE(4255), 1, + STATE(4312), 1, sym_object_access, - STATE(2297), 2, + STATE(2278), 2, sym_comment, sym_include, - STATE(2321), 2, + STATE(2297), 2, sym_qualified_name, sym_function_call, - ACTIONS(3494), 3, + ACTIONS(2928), 3, sym__terminator, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [114649] = 9, + [111481] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3496), 1, + ACTIONS(3461), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2298), 2, + STATE(2279), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [114682] = 9, + [111514] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3174), 1, + STATE(2280), 2, + sym_comment, + sym_include, + ACTIONS(1404), 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, + [111539] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3463), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, - sym_query_tuning, - STATE(2299), 2, + STATE(2214), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2281), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [114715] = 9, + ACTIONS(3357), 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, + [111572] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3482), 1, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3465), 1, sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2312), 1, - aux_sym_for_phrase_repeat1, - STATE(2300), 2, + STATE(2214), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2282), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [114748] = 9, + ACTIONS(3357), 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, + [111605] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, ACTIONS(3174), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2279), 1, - aux_sym_for_phrase_repeat1, - STATE(2301), 2, + anon_sym_COMMA, + STATE(2290), 1, + aux_sym_inherits_repeat1, + STATE(2283), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [114781] = 9, + ACTIONS(3467), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + [111634] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3072), 1, - sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, - sym_query_tuning, - STATE(2302), 2, + ACTIONS(3174), 1, + anon_sym_COMMA, + STATE(2290), 1, + aux_sym_inherits_repeat1, + STATE(2284), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [114814] = 9, + ACTIONS(3469), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + [111663] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3498), 1, + ACTIONS(3471), 1, sym__terminator, - STATE(2296), 1, + STATE(2282), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2303), 2, + STATE(2285), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [114847] = 9, + [111696] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3500), 1, + ACTIONS(3473), 1, sym__terminator, - STATE(2296), 1, + STATE(2281), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2304), 2, + STATE(2286), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [114880] = 8, + [111729] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(3504), 1, + ACTIONS(3477), 1, anon_sym_LIKE, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(2305), 2, + STATE(2287), 2, sym_comment, sym_include, - ACTIONS(3502), 6, + ACTIONS(3475), 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, - [114911] = 9, + [111760] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3221), 1, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3479), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, - sym_query_tuning, - STATE(2306), 2, + STATE(2208), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2288), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [114944] = 9, + ACTIONS(3357), 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, + [111793] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3506), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2326), 1, - aux_sym_for_phrase_repeat1, - STATE(2307), 2, + ACTIONS(3486), 1, + anon_sym_LIKE, + STATE(2377), 1, + sym_temp_table_tuning, + ACTIONS(3483), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(2289), 3, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [114977] = 9, + aux_sym_temp_table_definition_repeat1, + ACTIONS(3481), 4, + sym__terminator, + aux_sym_variable_definition_token6, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [111824] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3072), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2245), 1, - aux_sym_for_phrase_repeat1, - STATE(2308), 2, + ACTIONS(3489), 1, + anon_sym_COMMA, + STATE(2290), 3, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [115010] = 9, + aux_sym_inherits_repeat1, + ACTIONS(3251), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + [111851] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3156), 1, + ACTIONS(3031), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2260), 1, + STATE(2293), 1, aux_sym_for_phrase_repeat1, - STATE(2309), 2, + STATE(2291), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [115043] = 9, + [111884] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3506), 1, + ACTIONS(3031), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2310), 2, + STATE(2292), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [115076] = 9, + [111917] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3156), 1, + ACTIONS(3221), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2311), 2, + STATE(2293), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [115109] = 9, + [111950] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3508), 1, + ACTIONS(3221), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2312), 2, + STATE(2302), 1, + aux_sym_for_phrase_repeat1, + STATE(2294), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [115142] = 9, + [111983] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3022), 1, + ACTIONS(2994), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2313), 2, + STATE(2304), 1, + aux_sym_for_phrase_repeat1, + STATE(2295), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [115175] = 8, + [112016] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3515), 1, - anon_sym_LIKE, - STATE(2473), 1, - sym_temp_table_tuning, - ACTIONS(3512), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(2314), 3, + STATE(2296), 2, sym_comment, sym_include, - aux_sym_temp_table_definition_repeat1, - ACTIONS(3510), 4, + ACTIONS(3492), 9, sym__terminator, - aux_sym_variable_definition_token6, + 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, - [115206] = 9, - ACTIONS(59), 1, + [112041] = 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(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3221), 1, - sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2310), 1, - aux_sym_for_phrase_repeat1, - STATE(2315), 2, + STATE(2934), 1, + sym_sort_order, + STATE(2297), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [115239] = 9, + ACTIONS(2597), 4, + sym_identifier, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(2847), 4, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + [112070] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3518), 1, + ACTIONS(2994), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2316), 2, + STATE(2298), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [115272] = 9, - ACTIONS(59), 1, + [112103] = 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(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3022), 1, + ACTIONS(3494), 1, + sym_identifier, + STATE(2925), 1, + sym_sort_column, + STATE(4312), 1, + sym_object_access, + STATE(2297), 2, + sym_qualified_name, + sym_function_call, + ACTIONS(3197), 3, sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2311), 1, - aux_sym_for_phrase_repeat1, - STATE(2317), 2, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + STATE(2299), 3, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [115305] = 9, + aux_sym_sort_clause_repeat1, + [112136] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3520), 1, + ACTIONS(3497), 1, sym__terminator, - STATE(2296), 1, + STATE(2306), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2318), 2, + STATE(2300), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [115338] = 9, + [112169] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3522), 1, + ACTIONS(3499), 1, sym__terminator, - STATE(2296), 1, + STATE(2307), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2319), 2, + STATE(2301), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [115371] = 9, + [112202] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2973), 1, + ACTIONS(3501), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2320), 2, + STATE(2302), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [115404] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2896), 1, - sym_sort_order, - STATE(2321), 2, - sym_comment, - sym_include, - ACTIONS(2730), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - ACTIONS(2914), 4, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - [115433] = 9, + [112235] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3524), 1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3501), 1, sym__terminator, - STATE(2276), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2322), 2, + STATE(1967), 1, + sym_query_tuning, + STATE(2310), 1, + aux_sym_for_phrase_repeat1, + STATE(2303), 2, sym_comment, sym_include, - ACTIONS(3382), 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, - [115466] = 9, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [112268] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3158), 1, + ACTIONS(3184), 1, sym__terminator, - STATE(1930), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2323), 2, + STATE(2304), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [115499] = 9, + [112301] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(3158), 1, + ACTIONS(3184), 1, sym__terminator, - STATE(2001), 1, + STATE(1967), 1, sym_query_tuning, - STATE(2204), 1, + STATE(2311), 1, aux_sym_for_phrase_repeat1, - STATE(2324), 2, + STATE(2305), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [115532] = 9, + [112334] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3526), 1, + ACTIONS(3503), 1, sym__terminator, - STATE(2283), 1, + STATE(2214), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2325), 2, + STATE(2306), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [115565] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3528), 1, - sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, - sym_query_tuning, - STATE(2326), 2, - sym_comment, - sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [115598] = 9, + [112367] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, - aux_sym_query_tuning_token6, - ACTIONS(3092), 1, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3505), 1, sym__terminator, - STATE(1930), 1, - aux_sym_for_phrase_repeat1, - STATE(2001), 1, - sym_query_tuning, - STATE(2327), 2, + STATE(2214), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2307), 2, sym_comment, sym_include, - ACTIONS(1182), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [115631] = 9, + ACTIONS(3357), 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, + [112400] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3530), 1, + ACTIONS(3507), 1, sym__terminator, - STATE(2296), 1, + STATE(2314), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2328), 2, + STATE(2308), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [115664] = 9, + [112433] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3359), 1, aux_sym_variable_tuning_token6, - ACTIONS(3532), 1, + ACTIONS(3509), 1, sym__terminator, - STATE(2296), 1, + STATE(2186), 1, aux_sym_variable_definition_repeat2, - STATE(2490), 1, + STATE(2392), 1, sym_variable_tuning, - STATE(2329), 2, + STATE(2309), 2, sym_comment, sym_include, - ACTIONS(3382), 5, + ACTIONS(3357), 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, - [115697] = 9, + [112466] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1175), 1, aux_sym_query_tuning_token6, - ACTIONS(2973), 1, + ACTIONS(3511), 1, sym__terminator, - STATE(2001), 1, - sym_query_tuning, - STATE(2286), 1, + STATE(1894), 1, aux_sym_for_phrase_repeat1, - STATE(2330), 2, + STATE(1967), 1, + sym_query_tuning, + STATE(2310), 2, sym_comment, sym_include, - ACTIONS(1182), 5, + ACTIONS(1173), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [115730] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3534), 1, - sym__terminator, - STATE(2254), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2331), 2, - sym_comment, - sym_include, - ACTIONS(3382), 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, - [115763] = 9, + [112499] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3536), 1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3513), 1, sym__terminator, - STATE(2237), 1, - aux_sym_variable_definition_repeat2, - STATE(2490), 1, - sym_variable_tuning, - STATE(2332), 2, - sym_comment, - sym_include, - ACTIONS(3382), 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, - [115796] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2333), 2, + STATE(1894), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2311), 2, sym_comment, sym_include, - ACTIONS(179), 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, - [115820] = 11, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [112532] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3538), 1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3513), 1, sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(2526), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2334), 2, + STATE(1967), 1, + sym_query_tuning, + STATE(2313), 1, + aux_sym_for_phrase_repeat1, + STATE(2312), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [115856] = 11, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [112565] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3540), 1, + ACTIONS(1175), 1, + aux_sym_query_tuning_token6, + ACTIONS(3515), 1, sym__terminator, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3546), 1, - aux_sym_query_definition_token2, - ACTIONS(3548), 1, - aux_sym_query_definition_token3, - STATE(2529), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2335), 2, + STATE(1894), 1, + aux_sym_for_phrase_repeat1, + STATE(1967), 1, + sym_query_tuning, + STATE(2313), 2, sym_comment, sym_include, - [115892] = 11, + ACTIONS(1173), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [112598] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3550), 1, + ACTIONS(3359), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3517), 1, sym__terminator, - ACTIONS(3552), 1, - aux_sym_query_definition_token2, - ACTIONS(3554), 1, - aux_sym_query_definition_token3, - STATE(2646), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2336), 2, + STATE(2214), 1, + aux_sym_variable_definition_repeat2, + STATE(2392), 1, + sym_variable_tuning, + STATE(2314), 2, sym_comment, sym_include, - [115928] = 11, + ACTIONS(3357), 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, + [112631] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3556), 1, + ACTIONS(3519), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(2617), 1, + STATE(2594), 1, aux_sym_temp_table_definition_repeat2, - STATE(2337), 2, + STATE(2315), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [115964] = 7, + [112667] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2642), 1, - sym_index_tuning, - ACTIONS(3560), 2, - aux_sym_variable_definition_token5, - aux_sym_index_tuning_token1, - STATE(2338), 3, - sym_comment, - sym_include, - aux_sym_index_definition_repeat1, - ACTIONS(3558), 4, + ACTIONS(3521), 1, sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [115992] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(3523), 1, anon_sym_LBRACE, - STATE(2339), 2, + ACTIONS(3525), 1, + anon_sym_RBRACE, + ACTIONS(3527), 1, + anon_sym_DQUOTE, + ACTIONS(3529), 1, + aux_sym_include_argument_token1, + STATE(2342), 1, + aux_sym_include_repeat1, + STATE(2941), 1, + sym_constant, + STATE(2943), 1, + sym_double_quoted_string, + STATE(2944), 1, + sym_include_argument, + STATE(2316), 2, sym_comment, sym_include, - ACTIONS(175), 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, - [116016] = 11, + [112705] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3010), 1, + ACTIONS(3531), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(2637), 1, + STATE(2615), 1, aux_sym_temp_table_definition_repeat2, - STATE(2340), 2, + STATE(2317), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [116052] = 11, + [112741] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(2987), 1, + ACTIONS(3533), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(2656), 1, + STATE(2659), 1, aux_sym_temp_table_definition_repeat2, - STATE(2341), 2, + STATE(2318), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [116088] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3563), 1, - sym__terminator, - ACTIONS(3565), 1, - aux_sym_query_definition_token2, - ACTIONS(3567), 1, - aux_sym_query_definition_token3, - STATE(2647), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2342), 2, - sym_comment, - sym_include, - [116124] = 11, + [112777] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3569), 1, + ACTIONS(3535), 1, sym__terminator, - ACTIONS(3571), 1, - aux_sym_query_definition_token2, - ACTIONS(3573), 1, - aux_sym_query_definition_token3, - STATE(2625), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2343), 2, - sym_comment, - sym_include, - [116160] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3575), 1, - sym__terminator, - ACTIONS(3577), 1, + ACTIONS(3541), 1, aux_sym_query_definition_token2, - ACTIONS(3579), 1, - aux_sym_query_definition_token3, - STATE(2586), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2344), 2, - sym_comment, - sym_include, - [116196] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3581), 1, - aux_sym_property_definition_token1, - STATE(2465), 1, - aux_sym_property_definition_repeat1, - STATE(2714), 1, - sym_property_type, - STATE(4044), 1, - sym_serialization_tuning, - ACTIONS(1377), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(1391), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(2345), 2, - sym_comment, - sym_include, - [116230] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3583), 1, - sym_identifier, - STATE(1917), 1, - sym_qualified_name, - STATE(3994), 1, - sym__find_type, - STATE(2346), 2, + ACTIONS(3543), 1, + aux_sym_query_definition_token3, + STATE(2524), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2319), 2, sym_comment, sym_include, - ACTIONS(3585), 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, - [116260] = 11, + [112813] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3018), 1, + ACTIONS(3545), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(2622), 1, + STATE(2639), 1, aux_sym_temp_table_definition_repeat2, - STATE(2347), 2, + STATE(2320), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [116296] = 11, - ACTIONS(59), 1, + [112849] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(3547), 1, + sym_identifier, + ACTIONS(3550), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3587), 1, - sym__terminator, - ACTIONS(3589), 1, - aux_sym_query_definition_token2, - ACTIONS(3591), 1, - aux_sym_query_definition_token3, - STATE(2545), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2348), 2, + ACTIONS(3553), 1, + anon_sym_RBRACE, + ACTIONS(3555), 1, + anon_sym_DQUOTE, + ACTIONS(3558), 1, + aux_sym_include_argument_token1, + STATE(2941), 1, + sym_constant, + STATE(2943), 1, + sym_double_quoted_string, + STATE(2944), 1, + sym_include_argument, + STATE(2321), 3, sym_comment, sym_include, - [116332] = 11, + aux_sym_include_repeat1, + [112885] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3561), 1, + sym_identifier, + STATE(1886), 1, + sym_qualified_name, + STATE(3992), 1, + sym__find_type, + STATE(2322), 2, + sym_comment, + sym_include, + ACTIONS(3563), 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, + [112915] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3128), 1, + ACTIONS(3565), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(2547), 1, + STATE(2520), 1, aux_sym_temp_table_definition_repeat2, - STATE(2349), 2, + STATE(2323), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [116368] = 11, + [112951] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3593), 1, + ACTIONS(3099), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(2592), 1, + STATE(2537), 1, aux_sym_temp_table_definition_repeat2, - STATE(2350), 2, + STATE(2324), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [116404] = 11, + [112987] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3595), 1, + ACTIONS(3567), 1, sym__terminator, - ACTIONS(3597), 1, + ACTIONS(3569), 1, aux_sym_query_definition_token2, - ACTIONS(3599), 1, + ACTIONS(3571), 1, aux_sym_query_definition_token3, - STATE(2609), 1, + STATE(2557), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2351), 2, + STATE(2325), 2, sym_comment, sym_include, - [116440] = 11, + [113023] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3601), 1, + ACTIONS(3573), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(2576), 1, + STATE(2528), 1, aux_sym_temp_table_definition_repeat2, - STATE(2352), 2, + STATE(2326), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [116476] = 11, - ACTIONS(59), 1, + [113059] = 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(69), 1, - sym__namedot, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3603), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(2662), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2353), 2, + STATE(2327), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [116512] = 8, + ACTIONS(155), 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, + [113083] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3605), 1, + ACTIONS(3575), 1, sym_identifier, - STATE(1909), 1, + STATE(1900), 1, sym_qualified_name, - STATE(3791), 1, + STATE(3875), 1, sym__find_type, - STATE(2354), 2, + STATE(2328), 2, sym_comment, sym_include, - ACTIONS(3585), 5, + ACTIONS(3563), 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, - [116542] = 8, + [113113] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3577), 1, + sym__terminator, + ACTIONS(3579), 1, + aux_sym_query_definition_token2, + ACTIONS(3581), 1, + aux_sym_query_definition_token3, + STATE(2511), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2329), 2, + sym_comment, + sym_include, + [113149] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3607), 1, - sym_identifier, - STATE(1928), 1, - sym_qualified_name, - STATE(3563), 1, - sym__find_type, - STATE(2355), 2, + STATE(2330), 2, sym_comment, sym_include, - ACTIONS(3585), 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, - [116572] = 5, + ACTIONS(191), 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, + [113173] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2356), 2, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3583), 1, + sym__terminator, + ACTIONS(3585), 1, + aux_sym_query_definition_token2, + ACTIONS(3587), 1, + aux_sym_query_definition_token3, + STATE(2495), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2331), 2, sym_comment, sym_include, - ACTIONS(3270), 8, - aux_sym_serialization_tuning_token1, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_final_token1, - [116596] = 11, + [113209] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3609), 1, + ACTIONS(3589), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(2648), 1, + STATE(2568), 1, aux_sym_temp_table_definition_repeat2, - STATE(2357), 2, + STATE(2332), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [116632] = 11, + [113245] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3591), 1, + sym__terminator, + ACTIONS(3593), 1, + aux_sym_query_definition_token2, + ACTIONS(3595), 1, + aux_sym_query_definition_token3, + STATE(2585), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2333), 2, + sym_comment, + sym_include, + [113281] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3076), 1, + ACTIONS(3597), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(2544), 1, + STATE(2662), 1, aux_sym_temp_table_definition_repeat2, - STATE(2358), 2, + STATE(2334), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [116668] = 11, + [113317] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3611), 1, - sym_identifier, - ACTIONS(3614), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3617), 1, - anon_sym_RBRACE, - ACTIONS(3619), 1, - anon_sym_DQUOTE, - ACTIONS(3622), 1, - aux_sym_include_argument_token1, - STATE(2932), 1, - sym_constant, - STATE(2934), 1, - sym_double_quoted_string, - STATE(2936), 1, - sym_include_argument, - STATE(2359), 3, + ACTIONS(3599), 1, + sym_identifier, + STATE(1875), 1, + sym_qualified_name, + STATE(3789), 1, + sym__find_type, + STATE(2335), 2, sym_comment, sym_include, - aux_sym_include_repeat1, - [116704] = 11, + ACTIONS(3563), 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, + [113347] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3625), 1, + ACTIONS(3601), 1, sym__terminator, - ACTIONS(3627), 1, + ACTIONS(3603), 1, aux_sym_query_definition_token2, - ACTIONS(3629), 1, + ACTIONS(3605), 1, aux_sym_query_definition_token3, - STATE(2655), 1, + STATE(2539), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2360), 2, - sym_comment, - sym_include, - [116740] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3631), 1, - sym_identifier, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(3635), 1, - anon_sym_RBRACE, - ACTIONS(3637), 1, - anon_sym_DQUOTE, - ACTIONS(3639), 1, - aux_sym_include_argument_token1, - STATE(2359), 1, - aux_sym_include_repeat1, - STATE(2932), 1, - sym_constant, - STATE(2934), 1, - sym_double_quoted_string, - STATE(2936), 1, - sym_include_argument, - STATE(2361), 2, + STATE(2336), 2, sym_comment, sym_include, - [116778] = 11, + [113383] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3641), 1, + ACTIONS(2988), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(2629), 1, + STATE(2542), 1, aux_sym_temp_table_definition_repeat2, - STATE(2362), 2, + STATE(2337), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [116814] = 11, + [113419] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2588), 1, + sym_index_tuning, + ACTIONS(3609), 2, + aux_sym_variable_definition_token5, + aux_sym_index_tuning_token1, + STATE(2338), 3, + sym_comment, + sym_include, + aux_sym_index_definition_repeat1, + ACTIONS(3607), 4, + sym_identifier, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [113447] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3643), 1, + ACTIONS(3612), 1, sym__terminator, - ACTIONS(3645), 1, + ACTIONS(3614), 1, aux_sym_query_definition_token2, - ACTIONS(3647), 1, + ACTIONS(3616), 1, aux_sym_query_definition_token3, - STATE(2553), 1, + STATE(2652), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2363), 2, + STATE(2339), 2, sym_comment, sym_include, - [116850] = 11, + [113483] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3649), 1, + ACTIONS(3618), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(2594), 1, + STATE(2546), 1, aux_sym_temp_table_definition_repeat2, - STATE(2364), 2, + STATE(2340), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [116886] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3651), 1, - sym__terminator, - ACTIONS(3653), 1, - aux_sym_query_definition_token2, - ACTIONS(3655), 1, - aux_sym_query_definition_token3, - STATE(2514), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2365), 2, - sym_comment, - sym_include, - [116922] = 11, + [113519] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3657), 1, + ACTIONS(3047), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(2534), 1, + STATE(2640), 1, aux_sym_temp_table_definition_repeat2, - STATE(2366), 2, + STATE(2341), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [116958] = 12, + [113555] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3631), 1, + ACTIONS(3521), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3523), 1, anon_sym_LBRACE, - ACTIONS(3637), 1, + ACTIONS(3527), 1, anon_sym_DQUOTE, - ACTIONS(3639), 1, + ACTIONS(3529), 1, aux_sym_include_argument_token1, - ACTIONS(3659), 1, + ACTIONS(3620), 1, anon_sym_RBRACE, - STATE(2361), 1, + STATE(2321), 1, aux_sym_include_repeat1, - STATE(2932), 1, + STATE(2941), 1, sym_constant, - STATE(2934), 1, + STATE(2943), 1, sym_double_quoted_string, - STATE(2936), 1, + STATE(2944), 1, sym_include_argument, - STATE(2367), 2, + STATE(2342), 2, sym_comment, sym_include, - [116996] = 10, + [113593] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1558), 1, + ACTIONS(1408), 1, aux_sym_property_definition_token1, - STATE(2465), 1, + STATE(2365), 1, aux_sym_property_definition_repeat1, - STATE(2714), 1, + STATE(2698), 1, sym_property_type, - STATE(4299), 1, + STATE(4117), 1, sym_serialization_tuning, - ACTIONS(1377), 2, + ACTIONS(1324), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - ACTIONS(1391), 2, + ACTIONS(1338), 2, aux_sym_property_type_token1, aux_sym_property_type_token2, - STATE(2368), 2, + STATE(2343), 2, + sym_comment, + sym_include, + [113627] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3622), 1, + sym__terminator, + ACTIONS(3624), 1, + aux_sym_query_definition_token2, + ACTIONS(3626), 1, + aux_sym_query_definition_token3, + STATE(2643), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2344), 2, + sym_comment, + sym_include, + [113663] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3628), 1, + sym__terminator, + ACTIONS(3630), 1, + aux_sym_query_definition_token2, + ACTIONS(3632), 1, + aux_sym_query_definition_token3, + STATE(2657), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2345), 2, + sym_comment, + sym_include, + [113699] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3634), 1, + sym__terminator, + ACTIONS(3636), 1, + aux_sym_query_definition_token2, + ACTIONS(3638), 1, + aux_sym_query_definition_token3, + STATE(2567), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2346), 2, sym_comment, sym_include, - [117030] = 11, + [113735] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3661), 1, + ACTIONS(2964), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(2678), 1, + STATE(2598), 1, aux_sym_temp_table_definition_repeat2, - STATE(2369), 2, + STATE(2347), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [117066] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3663), 1, - sym_identifier, - STATE(1918), 1, - sym_qualified_name, - STATE(3777), 1, - sym__find_type, - STATE(2370), 2, - sym_comment, - sym_include, - ACTIONS(3585), 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, - [117096] = 8, + [113771] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3665), 1, + ACTIONS(3640), 1, sym_identifier, - STATE(1926), 1, + STATE(1882), 1, sym_qualified_name, - STATE(3825), 1, + STATE(3510), 1, sym__find_type, - STATE(2371), 2, + STATE(2348), 2, sym_comment, sym_include, - ACTIONS(3585), 5, + ACTIONS(3563), 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, - [117126] = 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(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(2693), 1, - aux_sym_on_statement_repeat2, - STATE(3423), 1, - sym_do_block, - STATE(3481), 1, - sym_widget_phrase, - STATE(4282), 1, - sym_label, - STATE(2372), 2, - sym_comment, - sym_include, - [117161] = 6, + [113801] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2071), 1, - aux_sym_variable_definition_token2, - STATE(2373), 2, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(2942), 1, + sym__terminator, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(2654), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2349), 2, sym_comment, sym_include, - ACTIONS(2113), 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, - [117186] = 11, - ACTIONS(3), 1, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [113837] = 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(749), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(1127), 1, - sym_do_block, - STATE(2416), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4079), 1, - sym_label, - STATE(2374), 2, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3642), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(2656), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2350), 2, sym_comment, sym_include, - [117221] = 5, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [113873] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2375), 2, + STATE(2351), 2, sym_comment, sym_include, - ACTIONS(3667), 7, + ACTIONS(3251), 8, aux_sym_serialization_tuning_token1, + anon_sym_COMMA, anon_sym_COLON, aux_sym_property_type_token1, aux_sym_inherits_token1, aux_sym_implements_token1, aux_sym_use_widget_pool_token1, aux_sym_final_token1, - [117244] = 11, - ACTIONS(3), 1, + [113897] = 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(43), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(1361), 1, - sym_do_block, - STATE(2693), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4507), 1, - sym_label, - STATE(2376), 2, + ACTIONS(3644), 1, + aux_sym_property_definition_token1, + STATE(2365), 1, + aux_sym_property_definition_repeat1, + STATE(2698), 1, + sym_property_type, + STATE(4052), 1, + sym_serialization_tuning, + ACTIONS(1324), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(1338), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(2352), 2, sym_comment, sym_include, - [117279] = 11, + [113931] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(749), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(3646), 1, sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(1127), 1, - sym_do_block, - STATE(2693), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4079), 1, - sym_label, - STATE(2377), 2, + STATE(1896), 1, + sym_qualified_name, + STATE(3567), 1, + sym__find_type, + STATE(2353), 2, sym_comment, sym_include, - [117314] = 11, + ACTIONS(3563), 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, + [113961] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -141275,12504 +137316,12939 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1434), 1, + STATE(1278), 1, sym_do_block, - STATE(2693), 1, + STATE(2863), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4507), 1, + STATE(4133), 1, sym_label, - STATE(2378), 2, + STATE(2354), 2, + sym_comment, + sym_include, + [113996] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2017), 1, + aux_sym_variable_definition_token2, + STATE(2355), 2, sym_comment, sym_include, - [117349] = 11, + ACTIONS(2025), 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, + [114021] = 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(1272), 1, + ACTIONS(3648), 1, sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(1434), 1, - sym_do_block, - STATE(2410), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4507), 1, - sym_label, - STATE(2379), 2, + ACTIONS(3650), 1, + anon_sym_DQUOTE, + ACTIONS(3652), 1, + anon_sym_SQUOTE, + STATE(1785), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(1891), 2, + sym_qualified_name, + sym__string_literal, + STATE(2356), 2, sym_comment, sym_include, - [117384] = 10, + [114052] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3669), 1, + ACTIONS(3654), 1, sym__terminator, - ACTIONS(3671), 1, + ACTIONS(3656), 1, aux_sym_query_definition_token3, - STATE(2613), 1, + STATE(2627), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2380), 2, + STATE(2357), 2, sym_comment, sym_include, - [117417] = 11, + [114085] = 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(1272), 1, + ACTIONS(3650), 1, + anon_sym_DQUOTE, + ACTIONS(3652), 1, + anon_sym_SQUOTE, + ACTIONS(3658), 1, sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(1361), 1, - sym_do_block, - STATE(2482), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4507), 1, - sym_label, - STATE(2381), 2, + STATE(1785), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2358), 2, sym_comment, sym_include, - [117452] = 11, + STATE(3054), 2, + sym_qualified_name, + sym__string_literal, + [114116] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(749), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(3650), 1, + anon_sym_DQUOTE, + ACTIONS(3652), 1, + anon_sym_SQUOTE, + ACTIONS(3660), 1, sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(1012), 1, - sym_do_block, - STATE(2377), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4079), 1, - sym_label, - STATE(2382), 2, + STATE(1785), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(1901), 2, + sym_qualified_name, + sym__string_literal, + STATE(2359), 2, sym_comment, sym_include, - [117487] = 11, + [114147] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(749), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(3662), 1, sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(1012), 1, - sym_do_block, - STATE(2693), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4079), 1, - sym_label, - STATE(2383), 2, + ACTIONS(3664), 1, + anon_sym_RPAREN, + ACTIONS(3668), 1, + aux_sym_function_parameter_token1, + STATE(3039), 1, + sym_function_parameter, + STATE(3563), 1, + sym_function_parameter_mode, + ACTIONS(3666), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2360), 2, sym_comment, sym_include, - [117522] = 11, - ACTIONS(59), 1, + [114180] = 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(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2961), 1, - aux_sym_while_phrase_token1, - ACTIONS(3673), 1, - anon_sym_COLON, - STATE(2852), 1, - sym_while_phrase, - STATE(2908), 1, - sym_on_error_phrase, - STATE(3163), 1, - sym_on_quit_phrase, - STATE(4214), 1, - sym_on_stop_phrase, - STATE(2384), 2, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(3668), 1, + aux_sym_function_parameter_token1, + ACTIONS(3670), 1, + anon_sym_RPAREN, + STATE(3010), 1, + sym_function_parameter, + STATE(3563), 1, + sym_function_parameter_mode, + ACTIONS(3666), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2361), 2, sym_comment, sym_include, - [117557] = 11, + [114213] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(888), 1, + ACTIONS(273), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1070), 1, + STATE(1448), 1, sym_do_block, - STATE(2443), 1, + STATE(2863), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4155), 1, + STATE(4405), 1, sym_label, - STATE(2385), 2, + STATE(2362), 2, sym_comment, sym_include, - [117592] = 6, + [114248] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2033), 1, - aux_sym_variable_definition_token2, - STATE(2386), 2, + ACTIONS(1318), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1340), 1, + aux_sym_property_tuning_token1, + ACTIONS(3672), 1, + aux_sym_event_definition_token1, + STATE(1857), 1, + sym_property_tuning, + STATE(2366), 1, + aux_sym_property_definition_repeat2, + ACTIONS(1316), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(2363), 2, sym_comment, sym_include, - ACTIONS(2065), 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, - [117617] = 10, + [114281] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3675), 1, + ACTIONS(273), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(3677), 1, - anon_sym_RPAREN, - ACTIONS(3681), 1, - aux_sym_function_parameter_token1, - STATE(3119), 1, - sym_function_parameter, - STATE(3948), 1, - sym_function_parameter_mode, - ACTIONS(3679), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2387), 2, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(1448), 1, + sym_do_block, + STATE(2367), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4405), 1, + sym_label, + STATE(2364), 2, sym_comment, sym_include, - [117650] = 6, + [114316] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2031), 1, - aux_sym_variable_definition_token2, - STATE(2388), 2, + STATE(2698), 1, + sym_property_type, + ACTIONS(3676), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + ACTIONS(3674), 3, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_property_definition_token1, + STATE(2365), 3, sym_comment, sym_include, - ACTIONS(2029), 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, - [117675] = 6, + aux_sym_property_definition_repeat1, + [114343] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2075), 1, - aux_sym_variable_definition_token2, - STATE(2389), 2, + ACTIONS(2613), 1, + aux_sym_event_definition_token1, + ACTIONS(2618), 1, + aux_sym_variable_tuning_token6, + ACTIONS(2623), 1, + aux_sym_property_tuning_token1, + STATE(1857), 1, + sym_property_tuning, + ACTIONS(3679), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(2366), 3, sym_comment, sym_include, - ACTIONS(2115), 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, - [117700] = 10, + aux_sym_property_definition_repeat2, + [114374] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3675), 1, + ACTIONS(273), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(3681), 1, - aux_sym_function_parameter_token1, - ACTIONS(3683), 1, - anon_sym_RPAREN, - STATE(3273), 1, - sym_function_parameter, - STATE(3948), 1, - sym_function_parameter_mode, - ACTIONS(3679), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2390), 2, - sym_comment, - sym_include, - [117733] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2079), 1, - aux_sym_variable_definition_token2, - STATE(2391), 2, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(1433), 1, + sym_do_block, + STATE(2863), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4405), 1, + sym_label, + STATE(2367), 2, sym_comment, sym_include, - ACTIONS(2117), 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, - [117758] = 6, - ACTIONS(59), 1, + [114409] = 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(2081), 1, - aux_sym_variable_definition_token2, - STATE(2392), 2, + ACTIONS(3650), 1, + anon_sym_DQUOTE, + ACTIONS(3652), 1, + anon_sym_SQUOTE, + ACTIONS(3682), 1, + sym_identifier, + STATE(1785), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2368), 2, sym_comment, sym_include, - ACTIONS(2119), 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, - [117783] = 6, + STATE(3065), 2, + sym_qualified_name, + sym__string_literal, + [114440] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2083), 1, - aux_sym_variable_definition_token2, - STATE(2393), 2, + STATE(2369), 2, sym_comment, sym_include, - ACTIONS(2121), 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, - [117808] = 11, + ACTIONS(3684), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + [114463] = 9, 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(1272), 1, + ACTIONS(3650), 1, + anon_sym_DQUOTE, + ACTIONS(3652), 1, + anon_sym_SQUOTE, + ACTIONS(3686), 1, sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(2693), 1, - aux_sym_on_statement_repeat2, - STATE(3444), 1, - sym_do_block, - STATE(3481), 1, - sym_widget_phrase, - STATE(4282), 1, - sym_label, - STATE(2394), 2, - sym_comment, - sym_include, - [117843] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2961), 1, - aux_sym_while_phrase_token1, - ACTIONS(3685), 1, - anon_sym_COLON, - STATE(2836), 1, - sym_while_phrase, - STATE(2901), 1, - sym_on_error_phrase, - STATE(3151), 1, - sym_on_quit_phrase, - STATE(4248), 1, - sym_on_stop_phrase, - STATE(2395), 2, + STATE(1785), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(1904), 2, + sym_qualified_name, + sym__string_literal, + STATE(2370), 2, sym_comment, sym_include, - [117878] = 11, + [114494] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2961), 1, + ACTIONS(2956), 1, aux_sym_while_phrase_token1, - ACTIONS(3687), 1, + ACTIONS(3688), 1, anon_sym_COLON, - STATE(2746), 1, + STATE(2782), 1, sym_while_phrase, - STATE(2989), 1, + STATE(2903), 1, sym_on_error_phrase, - STATE(3289), 1, + STATE(3473), 1, sym_on_quit_phrase, - STATE(4138), 1, + STATE(4495), 1, sym_on_stop_phrase, - STATE(2396), 2, + STATE(2371), 2, sym_comment, sym_include, - [117913] = 9, + [114529] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(335), 1, - anon_sym_DQUOTE, - ACTIONS(337), 1, - anon_sym_SQUOTE, - ACTIONS(3689), 1, + ACTIONS(3662), 1, sym_identifier, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2356), 2, - sym_qualified_name, - sym__string_literal, - STATE(2397), 2, + ACTIONS(3668), 1, + aux_sym_function_parameter_token1, + ACTIONS(3690), 1, + anon_sym_RPAREN, + STATE(3284), 1, + sym_function_parameter, + STATE(3563), 1, + sym_function_parameter_mode, + ACTIONS(3666), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2372), 2, sym_comment, sym_include, - [117944] = 11, + [114562] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3691), 1, + ACTIONS(3692), 1, aux_sym__block_terminator_token1, - ACTIONS(3693), 1, + ACTIONS(3694), 1, aux_sym_case_when_branch_token1, - STATE(1112), 1, - sym__case_terminator, - STATE(1113), 1, - sym__block_terminator, - STATE(2680), 1, + STATE(2500), 1, aux_sym_case_body_repeat1, - STATE(3173), 1, + STATE(3035), 1, + sym__block_terminator, + STATE(3044), 1, sym_case_body, - STATE(3405), 1, + STATE(3067), 1, + sym__case_terminator, + STATE(3085), 1, sym_case_when_branch, - STATE(2398), 2, + STATE(2373), 2, sym_comment, sym_include, - [117979] = 6, + [114597] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2085), 1, + ACTIONS(1473), 1, aux_sym_variable_definition_token2, - STATE(2399), 2, + STATE(2374), 2, sym_comment, sym_include, - ACTIONS(2123), 6, + ACTIONS(1471), 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, - [118004] = 6, + [114622] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2087), 1, - aux_sym_variable_definition_token2, - STATE(2400), 2, + STATE(2375), 2, sym_comment, sym_include, - ACTIONS(2125), 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, - [118029] = 6, + ACTIONS(3696), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + [114645] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2089), 1, + ACTIONS(1565), 1, aux_sym_variable_definition_token2, - STATE(2401), 2, + STATE(2376), 2, sym_comment, sym_include, - ACTIONS(2127), 6, + ACTIONS(1563), 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, - [118054] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3695), 1, - sym__terminator, - ACTIONS(3697), 1, - aux_sym_query_definition_token3, - STATE(2590), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2402), 2, - sym_comment, - sym_include, - [118087] = 6, + [114670] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2091), 1, - aux_sym_variable_definition_token2, - STATE(2403), 2, + ACTIONS(3700), 1, + anon_sym_LIKE, + STATE(2377), 2, sym_comment, sym_include, - ACTIONS(2129), 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, - [118112] = 5, + ACTIONS(3698), 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, + [114695] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2404), 2, + ACTIONS(3704), 1, + anon_sym_LIKE, + STATE(2378), 2, sym_comment, sym_include, - ACTIONS(3699), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_final_token1, - [118135] = 6, - ACTIONS(59), 1, + ACTIONS(3702), 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, + [114720] = 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(2093), 1, - aux_sym_variable_definition_token2, - STATE(2405), 2, + ACTIONS(3650), 1, + anon_sym_DQUOTE, + ACTIONS(3652), 1, + anon_sym_SQUOTE, + ACTIONS(3706), 1, + sym_identifier, + STATE(1785), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2204), 2, + sym_qualified_name, + sym__string_literal, + STATE(2379), 2, sym_comment, sym_include, - ACTIONS(2131), 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, - [118160] = 11, - ACTIONS(59), 1, + [114751] = 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(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2961), 1, - aux_sym_while_phrase_token1, - ACTIONS(3701), 1, - anon_sym_COLON, - STATE(2864), 1, - sym_while_phrase, - STATE(2902), 1, - sym_on_error_phrase, - STATE(3483), 1, - sym_on_quit_phrase, - STATE(4443), 1, - sym_on_stop_phrase, - STATE(2406), 2, + ACTIONS(3650), 1, + anon_sym_DQUOTE, + ACTIONS(3652), 1, + anon_sym_SQUOTE, + ACTIONS(3708), 1, + sym_identifier, + STATE(1785), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2203), 2, + sym_qualified_name, + sym__string_literal, + STATE(2380), 2, sym_comment, sym_include, - [118195] = 6, + [114782] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2095), 1, - aux_sym_variable_definition_token2, - STATE(2407), 2, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3710), 1, + sym__terminator, + ACTIONS(3712), 1, + aux_sym_query_definition_token3, + STATE(2620), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2381), 2, sym_comment, sym_include, - ACTIONS(2133), 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, - [118220] = 6, + [114815] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2097), 1, - aux_sym_variable_definition_token2, - STATE(2408), 2, + STATE(2382), 2, sym_comment, sym_include, - ACTIONS(2135), 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, - [118245] = 9, - ACTIONS(3), 1, + ACTIONS(3714), 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, + [114838] = 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(335), 1, - anon_sym_DQUOTE, - ACTIONS(337), 1, - anon_sym_SQUOTE, - ACTIONS(3703), 1, - sym_identifier, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2222), 2, - sym_qualified_name, - sym__string_literal, - STATE(2409), 2, + STATE(2383), 2, sym_comment, sym_include, - [118276] = 11, - ACTIONS(3), 1, + ACTIONS(3716), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + [114861] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(1345), 1, - sym_do_block, - STATE(2693), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4507), 1, - sym_label, - STATE(2410), 2, + ACTIONS(3477), 1, + anon_sym_LIKE, + STATE(2384), 2, sym_comment, sym_include, - [118311] = 11, + ACTIONS(3475), 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, + [114886] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(888), 1, + ACTIONS(273), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1070), 1, + STATE(1138), 1, sym_do_block, - STATE(2693), 1, + STATE(2863), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4155), 1, + STATE(4405), 1, sym_label, - STATE(2411), 2, + STATE(2385), 2, sym_comment, sym_include, - [118346] = 6, + [114921] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2099), 1, + ACTIONS(1895), 1, aux_sym_variable_definition_token2, - STATE(2412), 2, + STATE(2386), 2, sym_comment, sym_include, - ACTIONS(2137), 6, + ACTIONS(1893), 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, - [118371] = 6, + [114946] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2101), 1, - aux_sym_variable_definition_token2, - STATE(2413), 2, + STATE(2387), 2, sym_comment, sym_include, - ACTIONS(2139), 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, - [118396] = 11, + ACTIONS(3718), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + [114969] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1279), 1, + STATE(1416), 1, sym_do_block, - STATE(2383), 1, + STATE(2455), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4079), 1, + STATE(4133), 1, sym_label, - STATE(2414), 2, + STATE(2388), 2, sym_comment, sym_include, - [118431] = 11, + [115004] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1279), 1, + STATE(1416), 1, sym_do_block, - STATE(2693), 1, + STATE(2863), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4079), 1, + STATE(4133), 1, sym_label, - STATE(2415), 2, + STATE(2389), 2, + sym_comment, + sym_include, + [115039] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2956), 1, + aux_sym_while_phrase_token1, + ACTIONS(3720), 1, + anon_sym_COLON, + STATE(2801), 1, + sym_while_phrase, + STATE(2893), 1, + sym_on_error_phrase, + STATE(3456), 1, + sym_on_quit_phrase, + STATE(4452), 1, + sym_on_stop_phrase, + STATE(2390), 2, sym_comment, sym_include, - [118466] = 11, + [115074] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(273), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1103), 1, + STATE(1138), 1, sym_do_block, - STATE(2693), 1, + STATE(2467), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4079), 1, + STATE(4405), 1, sym_label, - STATE(2416), 2, - sym_comment, - sym_include, - [118501] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(335), 1, - anon_sym_DQUOTE, - ACTIONS(337), 1, - anon_sym_SQUOTE, - ACTIONS(3705), 1, - sym_identifier, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2221), 2, - sym_qualified_name, - sym__string_literal, - STATE(2417), 2, + STATE(2391), 2, sym_comment, sym_include, - [118532] = 8, + [115109] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3709), 1, - aux_sym_sort_clause_token1, - ACTIONS(3712), 1, - aux_sym_sort_clause_token2, - STATE(2851), 1, - sym_sort_clause, - ACTIONS(3707), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - STATE(2418), 3, + STATE(2392), 2, sym_comment, sym_include, - aux_sym_for_phrase_repeat2, - [118561] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3715), 1, + ACTIONS(3722), 7, sym__terminator, - ACTIONS(3717), 1, - aux_sym_query_definition_token3, - STATE(2571), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2419), 2, - sym_comment, - sym_include, - [118594] = 6, + 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, + [115132] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2053), 1, + ACTIONS(1891), 1, aux_sym_variable_definition_token2, - STATE(2420), 2, + STATE(2393), 2, sym_comment, sym_include, - ACTIONS(2051), 6, + ACTIONS(1889), 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, - [118619] = 6, + [115157] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(3668), 1, + aux_sym_function_parameter_token1, + ACTIONS(3724), 1, + anon_sym_RPAREN, + STATE(3478), 1, + sym_function_parameter, + STATE(3563), 1, + sym_function_parameter_mode, + ACTIONS(3666), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2394), 2, + sym_comment, + sym_include, + [115190] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2049), 1, + ACTIONS(1951), 1, aux_sym_variable_definition_token2, - STATE(2421), 2, + STATE(2395), 2, sym_comment, sym_include, - ACTIONS(2047), 6, + ACTIONS(1949), 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, - [118644] = 7, - ACTIONS(59), 1, + [115215] = 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(69), 1, - sym__namedot, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(2422), 2, + ACTIONS(3650), 1, + anon_sym_DQUOTE, + ACTIONS(3652), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + sym_identifier, + STATE(1785), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2351), 2, + sym_qualified_name, + sym__string_literal, + STATE(2396), 2, sym_comment, sym_include, - ACTIONS(3719), 5, - sym__terminator, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - [118671] = 6, + [115246] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2045), 1, + ACTIONS(1555), 1, aux_sym_variable_definition_token2, - STATE(2423), 2, + STATE(2397), 2, sym_comment, sym_include, - ACTIONS(2043), 6, + ACTIONS(1553), 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, - [118696] = 6, - ACTIONS(59), 1, + [115271] = 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(2041), 1, - aux_sym_variable_definition_token2, - STATE(2424), 2, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(3668), 1, + aux_sym_function_parameter_token1, + ACTIONS(3728), 1, + anon_sym_RPAREN, + STATE(3474), 1, + sym_function_parameter, + STATE(3563), 1, + sym_function_parameter_mode, + ACTIONS(3666), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2398), 2, sym_comment, sym_include, - ACTIONS(2039), 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, - [118721] = 6, + [115304] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2037), 1, + ACTIONS(1551), 1, aux_sym_variable_definition_token2, - STATE(2425), 2, + STATE(2399), 2, sym_comment, sym_include, - ACTIONS(2035), 6, + ACTIONS(1549), 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, - [118746] = 5, + [115329] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2426), 2, + ACTIONS(3694), 1, + aux_sym_case_when_branch_token1, + ACTIONS(3730), 1, + aux_sym__block_terminator_token1, + STATE(940), 1, + sym__case_terminator, + STATE(941), 1, + sym__block_terminator, + STATE(2500), 1, + aux_sym_case_body_repeat1, + STATE(3059), 1, + sym_case_body, + STATE(3085), 1, + sym_case_when_branch, + STATE(2400), 2, sym_comment, sym_include, - ACTIONS(3721), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_final_token1, - [118769] = 11, + [115364] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(3668), 1, + aux_sym_function_parameter_token1, + ACTIONS(3732), 1, + anon_sym_RPAREN, + STATE(3436), 1, + sym_function_parameter, + STATE(3563), 1, + sym_function_parameter_mode, + ACTIONS(3666), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2401), 2, + sym_comment, + sym_include, + [115397] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(297), 1, + ACTIONS(872), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1507), 1, + STATE(970), 1, sym_do_block, - STATE(2491), 1, + STATE(2863), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4370), 1, + STATE(4077), 1, sym_label, - STATE(2427), 2, + STATE(2402), 2, sym_comment, sym_include, - [118804] = 11, + [115432] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3693), 1, - aux_sym_case_when_branch_token1, - ACTIONS(3723), 1, - aux_sym__block_terminator_token1, - STATE(1447), 1, - sym__case_terminator, - STATE(1453), 1, - sym__block_terminator, - STATE(2680), 1, - aux_sym_case_body_repeat1, - STATE(3307), 1, - sym_case_body, - STATE(3405), 1, - sym_case_when_branch, - STATE(2428), 2, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2956), 1, + aux_sym_while_phrase_token1, + ACTIONS(3734), 1, + anon_sym_COLON, + STATE(2693), 1, + sym_while_phrase, + STATE(2963), 1, + sym_on_error_phrase, + STATE(3348), 1, + sym_on_quit_phrase, + STATE(4225), 1, + sym_on_stop_phrase, + STATE(2403), 2, sym_comment, sym_include, - [118839] = 6, + [115467] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2025), 1, + ACTIONS(1919), 1, aux_sym_variable_definition_token2, - STATE(2429), 2, + STATE(2404), 2, sym_comment, sym_include, - ACTIONS(2023), 6, + ACTIONS(1917), 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, - [118864] = 6, + [115492] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(3668), 1, + aux_sym_function_parameter_token1, + ACTIONS(3736), 1, + anon_sym_RPAREN, + STATE(3136), 1, + sym_function_parameter, + STATE(3563), 1, + sym_function_parameter_mode, + ACTIONS(3666), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2405), 2, + sym_comment, + sym_include, + [115525] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1985), 1, - aux_sym_variable_definition_token2, - STATE(2430), 2, + ACTIONS(1318), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1340), 1, + aux_sym_property_tuning_token1, + ACTIONS(1410), 1, + aux_sym_event_definition_token1, + STATE(1857), 1, + sym_property_tuning, + STATE(2366), 1, + aux_sym_property_definition_repeat2, + ACTIONS(1316), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(2406), 2, sym_comment, sym_include, - ACTIONS(1983), 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, - [118889] = 11, + [115558] = 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(729), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(2394), 1, + STATE(2458), 1, aux_sym_on_statement_repeat2, - STATE(3437), 1, - sym_do_block, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4282), 1, + STATE(3245), 1, + sym_do_block, + STATE(4280), 1, sym_label, - STATE(2431), 2, + STATE(2407), 2, sym_comment, sym_include, - [118924] = 6, - ACTIONS(59), 1, + [115593] = 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(1981), 1, - aux_sym_variable_definition_token2, - STATE(2432), 2, + ACTIONS(729), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(2863), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(3245), 1, + sym_do_block, + STATE(4280), 1, + sym_label, + STATE(2408), 2, sym_comment, sym_include, - ACTIONS(1979), 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, - [118949] = 6, - ACTIONS(59), 1, + [115628] = 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(1975), 1, - aux_sym_variable_definition_token2, - STATE(2433), 2, + ACTIONS(872), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(934), 1, + sym_do_block, + STATE(2402), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4077), 1, + sym_label, + STATE(2409), 2, sym_comment, sym_include, - ACTIONS(1973), 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, - [118974] = 6, - ACTIONS(59), 1, + [115663] = 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(1923), 1, - aux_sym_variable_definition_token2, - STATE(2434), 2, + ACTIONS(872), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(934), 1, + sym_do_block, + STATE(2863), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4077), 1, + sym_label, + STATE(2410), 2, sym_comment, sym_include, - ACTIONS(1921), 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, - [118999] = 10, + [115698] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3675), 1, + ACTIONS(3662), 1, sym_identifier, - ACTIONS(3681), 1, + ACTIONS(3668), 1, aux_sym_function_parameter_token1, - ACTIONS(3725), 1, + ACTIONS(3738), 1, anon_sym_RPAREN, - STATE(3160), 1, + STATE(3447), 1, sym_function_parameter, - STATE(3948), 1, + STATE(3563), 1, sym_function_parameter_mode, - ACTIONS(3679), 2, + ACTIONS(3666), 2, aux_sym_input_expression_token1, aux_sym_argument_mode_token1, - STATE(2435), 2, + STATE(2411), 2, + sym_comment, + sym_include, + [115731] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3740), 1, + sym__terminator, + ACTIONS(3742), 1, + aux_sym_query_definition_token3, + STATE(2601), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2412), 2, sym_comment, sym_include, - [119032] = 6, + [115764] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1837), 1, + ACTIONS(1509), 1, aux_sym_variable_definition_token2, - STATE(2436), 2, + STATE(2413), 2, sym_comment, sym_include, - ACTIONS(1835), 6, + ACTIONS(1507), 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, - [119057] = 6, + [115789] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1767), 1, + ACTIONS(1505), 1, aux_sym_variable_definition_token2, - STATE(2437), 2, + STATE(2414), 2, sym_comment, sym_include, - ACTIONS(1765), 6, + ACTIONS(1503), 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, - [119082] = 6, + [115814] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1771), 1, + ACTIONS(1501), 1, aux_sym_variable_definition_token2, - STATE(2438), 2, + STATE(2415), 2, sym_comment, sym_include, - ACTIONS(1769), 6, + ACTIONS(1499), 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, - [119107] = 11, + [115839] = 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(872), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(2693), 1, - aux_sym_on_statement_repeat2, - STATE(3437), 1, + STATE(845), 1, sym_do_block, - STATE(3481), 1, + STATE(2410), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, sym_widget_phrase, - STATE(4282), 1, + STATE(4077), 1, sym_label, - STATE(2439), 2, + STATE(2416), 2, sym_comment, sym_include, - [119142] = 10, - ACTIONS(3), 1, + [115874] = 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(3675), 1, - sym_identifier, - ACTIONS(3681), 1, - aux_sym_function_parameter_token1, - ACTIONS(3727), 1, - anon_sym_RPAREN, - STATE(3027), 1, - sym_function_parameter, - STATE(3948), 1, - sym_function_parameter_mode, - ACTIONS(3679), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2440), 2, + ACTIONS(1497), 1, + aux_sym_variable_definition_token2, + STATE(2417), 2, sym_comment, sym_include, - [119175] = 10, + ACTIONS(1495), 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, + [115899] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3675), 1, + ACTIONS(872), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(3681), 1, - aux_sym_function_parameter_token1, - ACTIONS(3729), 1, - anon_sym_RPAREN, - STATE(3170), 1, - sym_function_parameter, - STATE(3948), 1, - sym_function_parameter_mode, - ACTIONS(3679), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2441), 2, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(845), 1, + sym_do_block, + STATE(2863), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4077), 1, + sym_label, + STATE(2418), 2, sym_comment, sym_include, - [119208] = 6, + [115934] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2063), 1, + ACTIONS(1997), 1, aux_sym_variable_definition_token2, - STATE(2442), 2, + STATE(2419), 2, sym_comment, sym_include, - ACTIONS(2107), 6, + ACTIONS(1995), 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, - [119233] = 11, - ACTIONS(3), 1, + [115959] = 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(888), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(1047), 1, - sym_do_block, - STATE(2693), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4155), 1, - sym_label, - STATE(2443), 2, + ACTIONS(3746), 1, + aux_sym_sort_clause_token1, + ACTIONS(3749), 1, + aux_sym_sort_clause_token2, + STATE(2696), 1, + sym_sort_clause, + ACTIONS(3744), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + STATE(2420), 3, sym_comment, sym_include, - [119268] = 5, + aux_sym_for_phrase_repeat2, + [115988] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2444), 2, + ACTIONS(893), 1, + sym__namedot, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(2421), 2, sym_comment, sym_include, - ACTIONS(3731), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_final_token1, - [119291] = 11, + ACTIONS(3752), 5, + sym__terminator, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + [116015] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1487), 1, + aux_sym_variable_definition_token2, + STATE(2422), 2, + sym_comment, + sym_include, + ACTIONS(1485), 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, + [116040] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(3662), 1, sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(1293), 1, - sym_do_block, - STATE(2378), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4507), 1, - sym_label, - STATE(2445), 2, + ACTIONS(3668), 1, + aux_sym_function_parameter_token1, + ACTIONS(3754), 1, + anon_sym_RPAREN, + STATE(3233), 1, + sym_function_parameter, + STATE(3563), 1, + sym_function_parameter_mode, + ACTIONS(3666), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2423), 2, sym_comment, sym_include, - [119326] = 11, + [116073] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(888), 1, + ACTIONS(729), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1047), 1, - sym_do_block, - STATE(2470), 1, + STATE(2863), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4155), 1, + STATE(3433), 1, + sym_do_block, + STATE(4280), 1, sym_label, - STATE(2446), 2, + STATE(2424), 2, sym_comment, sym_include, - [119361] = 11, + [116108] = 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(1272), 1, + ACTIONS(3650), 1, + anon_sym_DQUOTE, + ACTIONS(3652), 1, + anon_sym_SQUOTE, + ACTIONS(3756), 1, sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(1293), 1, - sym_do_block, - STATE(2693), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4507), 1, - sym_label, - STATE(2447), 2, + STATE(1785), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2425), 2, sym_comment, sym_include, - [119396] = 9, + STATE(3049), 2, + sym_qualified_name, + sym__string_literal, + [116139] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3733), 1, - anon_sym_DQUOTE, - ACTIONS(3735), 1, - anon_sym_SQUOTE, - STATE(2931), 1, - sym__string_literal, - ACTIONS(3737), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2448), 2, + ACTIONS(2015), 1, + aux_sym_variable_definition_token2, + STATE(2426), 2, + sym_comment, + sym_include, + ACTIONS(2023), 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, + [116164] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2013), 1, + aux_sym_variable_definition_token2, + STATE(2427), 2, sym_comment, sym_include, - [119427] = 10, + ACTIONS(2021), 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, + [116189] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3739), 1, + ACTIONS(3758), 1, sym__terminator, - ACTIONS(3741), 1, + ACTIONS(3760), 1, aux_sym_query_definition_token3, - STATE(2575), 1, + STATE(2590), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2449), 2, + STATE(2428), 2, sym_comment, sym_include, - [119460] = 6, + [116222] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3504), 1, - anon_sym_LIKE, - STATE(2450), 2, + ACTIONS(2009), 1, + aux_sym_variable_definition_token2, + STATE(2429), 2, sym_comment, sym_include, - ACTIONS(3502), 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, - [119485] = 11, + ACTIONS(2011), 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, + [116247] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2961), 1, - aux_sym_while_phrase_token1, - ACTIONS(3743), 1, - anon_sym_COLON, - STATE(2750), 1, - sym_while_phrase, - STATE(2973), 1, - sym_on_error_phrase, - STATE(3236), 1, - sym_on_quit_phrase, - STATE(4045), 1, - sym_on_stop_phrase, - STATE(2451), 2, + ACTIONS(2003), 1, + aux_sym_variable_definition_token2, + STATE(2430), 2, sym_comment, sym_include, - [119520] = 11, + ACTIONS(2001), 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, + [116272] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(297), 1, + ACTIONS(273), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1591), 1, + STATE(1470), 1, sym_do_block, - STATE(2510), 1, + STATE(2863), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4370), 1, + STATE(4405), 1, sym_label, - STATE(2452), 2, - sym_comment, - sym_include, - [119555] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3745), 1, - sym__terminator, - ACTIONS(3747), 1, - aux_sym_query_definition_token3, - STATE(2619), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2453), 2, + STATE(2431), 2, sym_comment, sym_include, - [119588] = 11, + [116307] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(297), 1, + ACTIONS(729), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1591), 1, - sym_do_block, - STATE(2693), 1, + STATE(2424), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4370), 1, + STATE(3492), 1, + sym_do_block, + STATE(4280), 1, sym_label, - STATE(2454), 2, - sym_comment, - sym_include, - [119623] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3675), 1, - sym_identifier, - ACTIONS(3681), 1, - aux_sym_function_parameter_token1, - ACTIONS(3749), 1, - anon_sym_RPAREN, - STATE(3192), 1, - sym_function_parameter, - STATE(3948), 1, - sym_function_parameter_mode, - ACTIONS(3679), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2455), 2, - sym_comment, - sym_include, - [119656] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3675), 1, - sym_identifier, - ACTIONS(3681), 1, - aux_sym_function_parameter_token1, - ACTIONS(3751), 1, - anon_sym_RPAREN, - STATE(3213), 1, - sym_function_parameter, - STATE(3948), 1, - sym_function_parameter_mode, - ACTIONS(3679), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2456), 2, + STATE(2432), 2, sym_comment, sym_include, - [119689] = 5, + [116342] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2457), 2, + ACTIONS(1965), 1, + aux_sym_variable_definition_token2, + STATE(2433), 2, sym_comment, sym_include, - ACTIONS(3753), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_final_token1, - [119712] = 10, + ACTIONS(1963), 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, + [116367] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3755), 1, - sym__terminator, - ACTIONS(3757), 1, - aux_sym_query_definition_token3, - STATE(2527), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2458), 2, + ACTIONS(1993), 1, + aux_sym_variable_definition_token2, + STATE(2434), 2, sym_comment, sym_include, - [119745] = 11, + ACTIONS(1991), 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, + [116392] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(297), 1, + ACTIONS(729), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1405), 1, - sym_do_block, - STATE(2693), 1, + STATE(2863), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4370), 1, + STATE(3492), 1, + sym_do_block, + STATE(4280), 1, sym_label, - STATE(2459), 2, + STATE(2435), 2, sym_comment, sym_include, - [119780] = 11, + [116427] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3693), 1, - aux_sym_case_when_branch_token1, - ACTIONS(3759), 1, - aux_sym__block_terminator_token1, - STATE(2680), 1, - aux_sym_case_body_repeat1, - STATE(3327), 1, - sym__block_terminator, - STATE(3330), 1, - sym__case_terminator, - STATE(3331), 1, - sym_case_body, - STATE(3405), 1, - sym_case_when_branch, - STATE(2460), 2, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2956), 1, + aux_sym_while_phrase_token1, + ACTIONS(3762), 1, + anon_sym_COLON, + STATE(2686), 1, + sym_while_phrase, + STATE(2976), 1, + sym_on_error_phrase, + STATE(3095), 1, + sym_on_quit_phrase, + STATE(4338), 1, + sym_on_stop_phrase, + STATE(2436), 2, sym_comment, sym_include, - [119815] = 11, + [116462] = 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(872), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(2439), 1, - aux_sym_on_statement_repeat2, - STATE(3423), 1, + STATE(1025), 1, sym_do_block, - STATE(3481), 1, + STATE(2418), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, sym_widget_phrase, - STATE(4282), 1, + STATE(4077), 1, sym_label, - STATE(2461), 2, - sym_comment, - sym_include, - [119850] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1371), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1393), 1, - aux_sym_property_tuning_token1, - ACTIONS(3761), 1, - aux_sym_event_definition_token1, - STATE(1857), 1, - sym_property_tuning, - STATE(2466), 1, - aux_sym_property_definition_repeat2, - ACTIONS(1369), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(2462), 2, + STATE(2437), 2, sym_comment, sym_include, - [119883] = 11, + [116497] = 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(872), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(2509), 1, - aux_sym_on_statement_repeat2, - STATE(3371), 1, + STATE(1025), 1, sym_do_block, - STATE(3481), 1, + STATE(2863), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, sym_widget_phrase, - STATE(4282), 1, + STATE(4077), 1, sym_label, - STATE(2463), 2, + STATE(2438), 2, + sym_comment, + sym_include, + [116532] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1915), 1, + aux_sym_variable_definition_token2, + STATE(2439), 2, + sym_comment, + sym_include, + ACTIONS(1921), 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, + [116557] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2956), 1, + aux_sym_while_phrase_token1, + ACTIONS(3764), 1, + anon_sym_COLON, + STATE(2846), 1, + sym_while_phrase, + STATE(2876), 1, + sym_on_error_phrase, + STATE(3354), 1, + sym_on_quit_phrase, + STATE(4271), 1, + sym_on_stop_phrase, + STATE(2440), 2, sym_comment, sym_include, - [119918] = 11, + [116592] = 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(834), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(2693), 1, - aux_sym_on_statement_repeat2, - STATE(3371), 1, + STATE(906), 1, sym_do_block, - STATE(3481), 1, + STATE(2468), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, sym_widget_phrase, - STATE(4282), 1, + STATE(4197), 1, sym_label, - STATE(2464), 2, + STATE(2441), 2, sym_comment, sym_include, - [119953] = 7, + [116627] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2714), 1, - sym_property_type, - ACTIONS(3765), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - ACTIONS(3763), 3, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_property_definition_token1, - STATE(2465), 3, + ACTIONS(1989), 1, + aux_sym_variable_definition_token2, + STATE(2442), 2, sym_comment, sym_include, - aux_sym_property_definition_repeat1, - [119980] = 9, - ACTIONS(59), 1, + ACTIONS(1987), 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, + [116652] = 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(2680), 1, - aux_sym_event_definition_token1, - ACTIONS(2685), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3771), 1, - aux_sym_property_tuning_token1, - STATE(1857), 1, - sym_property_tuning, - ACTIONS(3768), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(2466), 3, + ACTIONS(834), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(906), 1, + sym_do_block, + STATE(2863), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4197), 1, + sym_label, + STATE(2443), 2, sym_comment, sym_include, - aux_sym_property_definition_repeat2, - [120011] = 11, + [116687] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(273), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1255), 1, + STATE(1470), 1, sym_do_block, - STATE(2693), 1, + STATE(2362), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4079), 1, + STATE(4405), 1, sym_label, - STATE(2467), 2, + STATE(2444), 2, sym_comment, sym_include, - [120046] = 11, + [116722] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(749), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1255), 1, + STATE(1386), 1, sym_do_block, - STATE(2415), 1, + STATE(2389), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4079), 1, + STATE(4133), 1, sym_label, - STATE(2468), 2, + STATE(2445), 2, sym_comment, sym_include, - [120081] = 11, + [116757] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2961), 1, + ACTIONS(2956), 1, aux_sym_while_phrase_token1, - ACTIONS(3774), 1, + ACTIONS(3766), 1, anon_sym_COLON, - STATE(2874), 1, + STATE(2834), 1, sym_while_phrase, - STATE(2899), 1, + STATE(2879), 1, sym_on_error_phrase, - STATE(3497), 1, + STATE(3344), 1, sym_on_quit_phrase, - STATE(4506), 1, + STATE(4234), 1, sym_on_stop_phrase, - STATE(2469), 2, + STATE(2446), 2, sym_comment, sym_include, - [120116] = 11, + [116792] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(888), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(3650), 1, + anon_sym_DQUOTE, + ACTIONS(3652), 1, + anon_sym_SQUOTE, + ACTIONS(3768), 1, sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(1036), 1, - sym_do_block, - STATE(2693), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4155), 1, - sym_label, - STATE(2470), 2, + STATE(1785), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(1885), 2, + sym_qualified_name, + sym__string_literal, + STATE(2447), 2, sym_comment, sym_include, - [120151] = 11, + [116823] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(888), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1036), 1, + STATE(1386), 1, sym_do_block, - STATE(2478), 1, + STATE(2863), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4155), 1, + STATE(4133), 1, sym_label, - STATE(2471), 2, + STATE(2448), 2, + sym_comment, + sym_include, + [116858] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1985), 1, + aux_sym_variable_definition_token2, + STATE(2449), 2, + sym_comment, + sym_include, + ACTIONS(1983), 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, + [116883] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3770), 1, + sym__terminator, + ACTIONS(3772), 1, + aux_sym_query_definition_token3, + STATE(2646), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2450), 2, sym_comment, sym_include, - [120186] = 11, + [116916] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2961), 1, + ACTIONS(2956), 1, aux_sym_while_phrase_token1, - ACTIONS(3776), 1, + ACTIONS(3774), 1, anon_sym_COLON, - STATE(2824), 1, + STATE(2728), 1, sym_while_phrase, - STATE(2960), 1, + STATE(2954), 1, sym_on_error_phrase, - STATE(3256), 1, + STATE(3165), 1, sym_on_quit_phrase, - STATE(4082), 1, + STATE(4246), 1, sym_on_stop_phrase, - STATE(2472), 2, + STATE(2451), 2, sym_comment, sym_include, - [120221] = 6, + [116951] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3780), 1, - anon_sym_LIKE, - STATE(2473), 2, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3776), 1, + sym__terminator, + ACTIONS(3778), 1, + aux_sym_query_definition_token3, + STATE(2617), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2452), 2, sym_comment, sym_include, - ACTIONS(3778), 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, - [120246] = 11, + [116984] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(2453), 2, + sym_comment, + sym_include, + ACTIONS(3780), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_final_token1, + [117007] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2956), 1, + aux_sym_while_phrase_token1, + ACTIONS(3782), 1, + anon_sym_COLON, + STATE(2740), 1, + sym_while_phrase, + STATE(2949), 1, + sym_on_error_phrase, + STATE(3175), 1, + sym_on_quit_phrase, + STATE(4212), 1, + sym_on_stop_phrase, + STATE(2454), 2, + sym_comment, + sym_include, + [117042] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(297), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1430), 1, + STATE(1190), 1, sym_do_block, - STATE(2459), 1, + STATE(2863), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4370), 1, + STATE(4133), 1, sym_label, - STATE(2474), 2, + STATE(2455), 2, + sym_comment, + sym_include, + [117077] = 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(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(1190), 1, + sym_do_block, + STATE(2354), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4133), 1, + sym_label, + STATE(2456), 2, sym_comment, sym_include, - [120281] = 10, + [117112] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3782), 1, - sym__terminator, ACTIONS(3784), 1, + sym__terminator, + ACTIONS(3786), 1, aux_sym_query_definition_token3, - STATE(2521), 1, + STATE(2651), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2475), 2, + STATE(2457), 2, sym_comment, sym_include, - [120314] = 11, + [117145] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(297), 1, + ACTIONS(729), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1430), 1, + STATE(2863), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(3365), 1, sym_do_block, - STATE(2693), 1, + STATE(4280), 1, + sym_label, + STATE(2458), 2, + sym_comment, + sym_include, + [117180] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(2489), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4370), 1, + STATE(3365), 1, + sym_do_block, + STATE(4280), 1, sym_label, - STATE(2476), 2, + STATE(2459), 2, sym_comment, sym_include, - [120349] = 10, + [117215] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3675), 1, + ACTIONS(3650), 1, + anon_sym_DQUOTE, + ACTIONS(3652), 1, + anon_sym_SQUOTE, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3681), 1, - aux_sym_function_parameter_token1, - ACTIONS(3786), 1, - anon_sym_RPAREN, - STATE(3450), 1, - sym_function_parameter, - STATE(3948), 1, - sym_function_parameter_mode, - ACTIONS(3679), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2477), 2, + STATE(1785), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(1913), 2, + sym_qualified_name, + sym__string_literal, + STATE(2460), 2, + sym_comment, + sym_include, + [117246] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1969), 1, + aux_sym_variable_definition_token2, + STATE(2461), 2, sym_comment, sym_include, - [120382] = 11, + ACTIONS(1967), 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, + [117271] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(888), 1, + ACTIONS(872), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1030), 1, + STATE(1050), 1, sym_do_block, - STATE(2693), 1, + STATE(2863), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4155), 1, + STATE(4077), 1, sym_label, - STATE(2478), 2, + STATE(2462), 2, sym_comment, sym_include, - [120417] = 11, + [117306] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(888), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1030), 1, + STATE(1281), 1, sym_do_block, - STATE(2486), 1, + STATE(2448), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4155), 1, + STATE(4133), 1, sym_label, - STATE(2479), 2, + STATE(2463), 2, + sym_comment, + sym_include, + [117341] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1973), 1, + aux_sym_variable_definition_token2, + STATE(2464), 2, sym_comment, sym_include, - [120452] = 10, + ACTIONS(1971), 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, + [117366] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3675), 1, + ACTIONS(872), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(3681), 1, - aux_sym_function_parameter_token1, - ACTIONS(3788), 1, - anon_sym_RPAREN, - STATE(3248), 1, - sym_function_parameter, - STATE(3948), 1, - sym_function_parameter_mode, - ACTIONS(3679), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2480), 2, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(1050), 1, + sym_do_block, + STATE(2438), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4077), 1, + sym_label, + STATE(2465), 2, sym_comment, sym_include, - [120485] = 11, + [117401] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2961), 1, - aux_sym_while_phrase_token1, ACTIONS(3790), 1, - anon_sym_COLON, - STATE(2717), 1, - sym_while_phrase, - STATE(3018), 1, - sym_on_error_phrase, - STATE(3250), 1, - sym_on_quit_phrase, - STATE(4046), 1, - sym_on_stop_phrase, - STATE(2481), 2, + anon_sym_DQUOTE, + ACTIONS(3792), 1, + anon_sym_SQUOTE, + STATE(2991), 1, + sym__string_literal, + ACTIONS(3794), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(1785), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2466), 2, sym_comment, sym_include, - [120520] = 11, + [117432] = 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(273), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1494), 1, + STATE(1502), 1, sym_do_block, - STATE(2693), 1, + STATE(2863), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4507), 1, + STATE(4405), 1, sym_label, - STATE(2482), 2, + STATE(2467), 2, sym_comment, sym_include, - [120555] = 5, - ACTIONS(59), 1, + [117467] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2483), 2, + ACTIONS(834), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(890), 1, + sym_do_block, + STATE(2863), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4197), 1, + sym_label, + STATE(2468), 2, sym_comment, sym_include, - ACTIONS(3792), 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, - [120578] = 11, + [117502] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2961), 1, - aux_sym_while_phrase_token1, - ACTIONS(3794), 1, - anon_sym_COLON, - STATE(2763), 1, - sym_while_phrase, - STATE(2990), 1, - sym_on_error_phrase, - STATE(3367), 1, - sym_on_quit_phrase, - STATE(4218), 1, - sym_on_stop_phrase, - STATE(2484), 2, + ACTIONS(3694), 1, + aux_sym_case_when_branch_token1, + ACTIONS(3796), 1, + aux_sym__block_terminator_token1, + STATE(1263), 1, + sym__case_terminator, + STATE(1264), 1, + sym__block_terminator, + STATE(2500), 1, + aux_sym_case_body_repeat1, + STATE(3085), 1, + sym_case_when_branch, + STATE(3494), 1, + sym_case_body, + STATE(2469), 2, sym_comment, sym_include, - [120613] = 6, - ACTIONS(59), 1, + [117537] = 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(3798), 1, - anon_sym_LIKE, - STATE(2485), 2, + ACTIONS(273), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(1502), 1, + sym_do_block, + STATE(2431), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4405), 1, + sym_label, + STATE(2470), 2, sym_comment, sym_include, - ACTIONS(3796), 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, - [120638] = 11, + [117572] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(888), 1, + ACTIONS(834), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1025), 1, + STATE(869), 1, sym_do_block, - STATE(2693), 1, + STATE(2863), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4155), 1, + STATE(4197), 1, sym_label, - STATE(2486), 2, + STATE(2471), 2, sym_comment, sym_include, - [120673] = 10, - ACTIONS(59), 1, + [117607] = 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(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3800), 1, - sym__terminator, - ACTIONS(3802), 1, - aux_sym_query_definition_token3, - STATE(2671), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2487), 2, + ACTIONS(729), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(2435), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(3469), 1, + sym_do_block, + STATE(4280), 1, + sym_label, + STATE(2472), 2, sym_comment, sym_include, - [120706] = 10, - ACTIONS(59), 1, + [117642] = 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(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3804), 1, - sym__terminator, - ACTIONS(3806), 1, - aux_sym_query_definition_token3, - STATE(2597), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2488), 2, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(3668), 1, + aux_sym_function_parameter_token1, + ACTIONS(3798), 1, + anon_sym_RPAREN, + STATE(3296), 1, + sym_function_parameter, + STATE(3563), 1, + sym_function_parameter_mode, + ACTIONS(3666), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2473), 2, sym_comment, sym_include, - [120739] = 11, + [117675] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(297), 1, + ACTIONS(834), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1464), 1, + STATE(873), 1, sym_do_block, - STATE(2476), 1, + STATE(2471), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4370), 1, + STATE(4197), 1, sym_label, - STATE(2489), 2, - sym_comment, - sym_include, - [120774] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(2490), 2, + STATE(2474), 2, sym_comment, sym_include, - ACTIONS(3808), 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, - [120797] = 11, + [117710] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(297), 1, + ACTIONS(834), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1464), 1, + STATE(873), 1, sym_do_block, - STATE(2693), 1, + STATE(2863), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4370), 1, + STATE(4197), 1, sym_label, - STATE(2491), 2, + STATE(2475), 2, sym_comment, sym_include, - [120832] = 9, + [117745] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(335), 1, - anon_sym_DQUOTE, - ACTIONS(337), 1, - anon_sym_SQUOTE, - ACTIONS(3810), 1, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, sym_identifier, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(1910), 2, - sym_qualified_name, - sym__string_literal, - STATE(2492), 2, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(1281), 1, + sym_do_block, + STATE(2863), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4133), 1, + sym_label, + STATE(2476), 2, sym_comment, sym_include, - [120863] = 9, + [117780] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(335), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(3652), 1, anon_sym_SQUOTE, - ACTIONS(3812), 1, + ACTIONS(3800), 1, sym_identifier, - STATE(6), 2, + STATE(1785), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(2493), 2, + STATE(2477), 2, sym_comment, sym_include, - STATE(3072), 2, + STATE(3041), 2, sym_qualified_name, sym__string_literal, - [120894] = 9, + [117811] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3733), 1, - anon_sym_DQUOTE, - ACTIONS(3735), 1, - anon_sym_SQUOTE, - STATE(2980), 1, - sym__string_literal, - ACTIONS(3814), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2494), 2, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2956), 1, + aux_sym_while_phrase_token1, + ACTIONS(3802), 1, + anon_sym_COLON, + STATE(2790), 1, + sym_while_phrase, + STATE(2899), 1, + sym_on_error_phrase, + STATE(3267), 1, + sym_on_quit_phrase, + STATE(4024), 1, + sym_on_stop_phrase, + STATE(2478), 2, sym_comment, sym_include, - [120925] = 11, + [117846] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2961), 1, - aux_sym_while_phrase_token1, - ACTIONS(3816), 1, - anon_sym_COLON, - STATE(2686), 1, - sym_while_phrase, - STATE(2981), 1, - sym_on_error_phrase, - STATE(3341), 1, - sym_on_quit_phrase, - STATE(4179), 1, - sym_on_stop_phrase, - STATE(2495), 2, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3804), 1, + sym__terminator, + ACTIONS(3806), 1, + aux_sym_query_definition_token3, + STATE(2517), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2479), 2, sym_comment, sym_include, - [120960] = 10, + [117879] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3818), 1, + ACTIONS(3808), 1, sym__terminator, - ACTIONS(3820), 1, + ACTIONS(3810), 1, aux_sym_query_definition_token3, STATE(2661), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2496), 2, + STATE(2480), 2, sym_comment, sym_include, - [120993] = 9, - ACTIONS(3), 1, + [117912] = 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(335), 1, - anon_sym_DQUOTE, - ACTIONS(337), 1, - anon_sym_SQUOTE, - ACTIONS(3822), 1, - sym_identifier, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(1898), 2, - sym_qualified_name, - sym__string_literal, - STATE(2497), 2, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2956), 1, + aux_sym_while_phrase_token1, + ACTIONS(3812), 1, + anon_sym_COLON, + STATE(2779), 1, + sym_while_phrase, + STATE(2902), 1, + sym_on_error_phrase, + STATE(3255), 1, + sym_on_quit_phrase, + STATE(4043), 1, + sym_on_stop_phrase, + STATE(2481), 2, sym_comment, sym_include, - [121024] = 9, - ACTIONS(3), 1, + [117947] = 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(335), 1, + ACTIONS(3790), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(3792), 1, anon_sym_SQUOTE, - ACTIONS(3824), 1, - sym_identifier, - STATE(6), 2, + STATE(2895), 1, + sym__string_literal, + ACTIONS(3814), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(1785), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(2498), 2, + STATE(2482), 2, sym_comment, sym_include, - STATE(3065), 2, - sym_qualified_name, - sym__string_literal, - [121055] = 9, - ACTIONS(3), 1, + [117978] = 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(335), 1, - anon_sym_DQUOTE, - ACTIONS(337), 1, - anon_sym_SQUOTE, - ACTIONS(3826), 1, - sym_identifier, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(1922), 2, - sym_qualified_name, - sym__string_literal, - STATE(2499), 2, + ACTIONS(1941), 1, + aux_sym_variable_definition_token2, + STATE(2483), 2, sym_comment, sym_include, - [121086] = 10, + 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, + [118003] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1371), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1393), 1, - aux_sym_property_tuning_token1, - ACTIONS(1560), 1, - aux_sym_event_definition_token1, - STATE(1857), 1, - sym_property_tuning, - STATE(2466), 1, - aux_sym_property_definition_repeat2, - ACTIONS(1369), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(2500), 2, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3816), 1, + sym__terminator, + ACTIONS(3818), 1, + aux_sym_query_definition_token3, + STATE(2521), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2484), 2, sym_comment, sym_include, - [121119] = 11, - ACTIONS(3), 1, + [118036] = 11, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(1494), 1, - sym_do_block, - STATE(2447), 1, - aux_sym_on_statement_repeat2, - STATE(3481), 1, - sym_widget_phrase, - STATE(4507), 1, - sym_label, - STATE(2501), 2, + ACTIONS(3694), 1, + aux_sym_case_when_branch_token1, + ACTIONS(3820), 1, + aux_sym__block_terminator_token1, + STATE(977), 1, + sym__block_terminator, + STATE(978), 1, + sym__case_terminator, + STATE(2500), 1, + aux_sym_case_body_repeat1, + STATE(3085), 1, + sym_case_when_branch, + STATE(3483), 1, + sym_case_body, + STATE(2485), 2, sym_comment, sym_include, - [121154] = 9, + [118071] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(335), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(337), 1, + ACTIONS(3652), 1, anon_sym_SQUOTE, - ACTIONS(3828), 1, + ACTIONS(3822), 1, sym_identifier, - STATE(6), 2, + STATE(1785), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(2502), 2, + STATE(2486), 2, sym_comment, sym_include, - STATE(3059), 2, + STATE(3493), 2, sym_qualified_name, sym__string_literal, - [121185] = 11, + [118102] = 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(834), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(2372), 1, - aux_sym_on_statement_repeat2, - STATE(3390), 1, + STATE(890), 1, sym_do_block, - STATE(3481), 1, + STATE(2494), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, sym_widget_phrase, - STATE(4282), 1, + STATE(4197), 1, sym_label, - STATE(2503), 2, + STATE(2487), 2, sym_comment, sym_include, - [121220] = 9, - ACTIONS(3), 1, + [118137] = 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(335), 1, - anon_sym_DQUOTE, - ACTIONS(337), 1, - anon_sym_SQUOTE, - ACTIONS(3830), 1, - sym_identifier, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(1919), 2, - sym_qualified_name, - sym__string_literal, - STATE(2504), 2, + ACTIONS(3694), 1, + aux_sym_case_when_branch_token1, + ACTIONS(3824), 1, + aux_sym__block_terminator_token1, + STATE(1258), 1, + sym__case_terminator, + STATE(1259), 1, + sym__block_terminator, + STATE(2500), 1, + aux_sym_case_body_repeat1, + STATE(3085), 1, + sym_case_when_branch, + STATE(3089), 1, + sym_case_body, + STATE(2488), 2, sym_comment, sym_include, - [121251] = 9, + [118172] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(335), 1, - anon_sym_DQUOTE, - ACTIONS(337), 1, - anon_sym_SQUOTE, - ACTIONS(3832), 1, + ACTIONS(729), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, sym_identifier, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2505), 2, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(2863), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(3469), 1, + sym_do_block, + STATE(4280), 1, + sym_label, + STATE(2489), 2, sym_comment, sym_include, - STATE(3053), 2, - sym_qualified_name, - sym__string_literal, - [121282] = 9, + [118207] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(335), 1, - anon_sym_DQUOTE, - ACTIONS(337), 1, - anon_sym_SQUOTE, - ACTIONS(3834), 1, + ACTIONS(834), 1, + aux_sym_do_block_token1, + ACTIONS(1265), 1, sym_identifier, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2506), 2, + ACTIONS(1267), 1, + aux_sym_input_expression_token2, + STATE(879), 1, + sym_do_block, + STATE(2475), 1, + aux_sym_on_statement_repeat2, + STATE(3215), 1, + sym_widget_phrase, + STATE(4197), 1, + sym_label, + STATE(2490), 2, sym_comment, sym_include, - STATE(3225), 2, - sym_qualified_name, - sym__string_literal, - [121313] = 11, + [118242] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3693), 1, - aux_sym_case_when_branch_token1, - ACTIONS(3836), 1, - aux_sym__block_terminator_token1, - STATE(1182), 1, - sym__block_terminator, - STATE(1183), 1, - sym__case_terminator, - STATE(2680), 1, - aux_sym_case_body_repeat1, - STATE(3242), 1, - sym_case_body, - STATE(3405), 1, - sym_case_when_branch, - STATE(2507), 2, + ACTIONS(1957), 1, + aux_sym_variable_definition_token2, + STATE(2491), 2, sym_comment, sym_include, - [121348] = 11, + ACTIONS(1955), 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, + [118267] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3693), 1, - aux_sym_case_when_branch_token1, - ACTIONS(3838), 1, - aux_sym__block_terminator_token1, - STATE(1283), 1, - sym__case_terminator, - STATE(1548), 1, - sym__block_terminator, - STATE(2680), 1, - aux_sym_case_body_repeat1, - STATE(3123), 1, - sym_case_body, - STATE(3405), 1, - sym_case_when_branch, - STATE(2508), 2, + ACTIONS(1961), 1, + aux_sym_variable_definition_token2, + STATE(2492), 2, sym_comment, sym_include, - [121383] = 11, - ACTIONS(3), 1, + ACTIONS(1959), 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, + [118292] = 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(789), 1, - aux_sym_do_block_token1, - ACTIONS(1272), 1, - sym_identifier, - ACTIONS(1274), 1, - aux_sym_input_expression_token2, - STATE(2693), 1, - aux_sym_on_statement_repeat2, - STATE(3390), 1, - sym_do_block, - STATE(3481), 1, - sym_widget_phrase, - STATE(4282), 1, - sym_label, - STATE(2509), 2, + ACTIONS(1887), 1, + aux_sym_variable_definition_token2, + STATE(2493), 2, sym_comment, sym_include, - [121418] = 11, + ACTIONS(1885), 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, + [118317] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(297), 1, + ACTIONS(834), 1, aux_sym_do_block_token1, - ACTIONS(1272), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1274), 1, + ACTIONS(1267), 1, aux_sym_input_expression_token2, - STATE(1507), 1, + STATE(879), 1, sym_do_block, - STATE(2693), 1, + STATE(2863), 1, aux_sym_on_statement_repeat2, - STATE(3481), 1, + STATE(3215), 1, sym_widget_phrase, - STATE(4370), 1, + STATE(4197), 1, sym_label, - STATE(2510), 2, + STATE(2494), 2, sym_comment, sym_include, - [121453] = 10, - ACTIONS(3), 1, + [118352] = 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(3675), 1, - sym_identifier, - ACTIONS(3681), 1, - aux_sym_function_parameter_token1, - ACTIONS(3840), 1, - anon_sym_RPAREN, - STATE(3048), 1, - sym_function_parameter, - STATE(3948), 1, - sym_function_parameter_mode, - ACTIONS(3679), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2511), 2, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3826), 1, + sym__terminator, + STATE(2533), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2495), 2, sym_comment, sym_include, - [121486] = 9, - ACTIONS(3), 1, + [118382] = 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(335), 1, - anon_sym_DQUOTE, - ACTIONS(337), 1, - anon_sym_SQUOTE, - ACTIONS(3842), 1, - sym_identifier, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(1891), 2, - sym_qualified_name, - sym__string_literal, - STATE(2512), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2511), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2679), 1, + sym_on_quit_phrase, + STATE(3027), 1, + aux_sym_for_statement_repeat1, + STATE(3032), 1, + sym_on_stop_phrase, + STATE(2496), 2, + sym_comment, + sym_include, + [118414] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2531), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2814), 1, + sym_on_quit_phrase, + STATE(3304), 1, + sym_on_stop_phrase, + STATE(3305), 1, + aux_sym_for_statement_repeat1, + STATE(2497), 2, + sym_comment, + sym_include, + [118446] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3099), 1, + sym__terminator, + STATE(2622), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2498), 2, + sym_comment, + sym_include, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [118476] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3099), 1, + sym__terminator, + STATE(2537), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2499), 2, + sym_comment, + sym_include, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [118506] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3694), 1, + aux_sym_case_when_branch_token1, + ACTIONS(3830), 1, + aux_sym__block_terminator_token1, + ACTIONS(3832), 1, + aux_sym_case_otherwise_branch_token1, + STATE(2672), 1, + aux_sym_case_body_repeat1, + STATE(3085), 1, + sym_case_when_branch, + STATE(4331), 1, + sym_case_otherwise_branch, + STATE(2500), 2, + sym_comment, + sym_include, + [118538] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3133), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2812), 1, + sym_on_quit_phrase, + STATE(3301), 1, + sym_on_stop_phrase, + STATE(3302), 1, + aux_sym_for_statement_repeat1, + STATE(2501), 2, + sym_comment, + sym_include, + [118570] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2545), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2811), 1, + sym_on_quit_phrase, + STATE(3298), 1, + sym_on_stop_phrase, + STATE(3299), 1, + aux_sym_for_statement_repeat1, + STATE(2502), 2, sym_comment, sym_include, - [121517] = 10, + [118602] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2538), 1, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3834), 1, + anon_sym_COLON, + STATE(2810), 1, + sym_on_quit_phrase, + STATE(3294), 1, + sym_on_stop_phrase, + STATE(3295), 1, + aux_sym_for_statement_repeat1, + STATE(2503), 2, + sym_comment, + sym_include, + [118634] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3182), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2734), 1, + STATE(2809), 1, sym_on_quit_phrase, - STATE(3243), 1, + STATE(3290), 1, sym_on_stop_phrase, - STATE(3245), 1, + STATE(3292), 1, aux_sym_for_statement_repeat1, - STATE(2513), 2, + STATE(2504), 2, sym_comment, sym_include, - [121549] = 9, + [118666] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3846), 1, - sym__terminator, - STATE(2681), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2514), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3836), 1, + anon_sym_COLON, + STATE(2808), 1, + sym_on_quit_phrase, + STATE(3285), 1, + sym_on_stop_phrase, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(2505), 2, sym_comment, sym_include, - [121579] = 9, + [118698] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3051), 1, + ACTIONS(3119), 1, sym__terminator, - STATE(2551), 1, + STATE(2622), 1, aux_sym_temp_table_definition_repeat2, - STATE(2515), 2, + STATE(2506), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [121609] = 10, + [118728] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3848), 1, + ACTIONS(3838), 1, anon_sym_COLON, - STATE(2722), 1, + STATE(2787), 1, sym_on_quit_phrase, - STATE(3040), 1, + STATE(3263), 1, aux_sym_for_statement_repeat1, - STATE(3041), 1, + STATE(3265), 1, sym_on_stop_phrase, - STATE(2516), 2, + STATE(2507), 2, sym_comment, sym_include, - [121641] = 9, + [118760] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3850), 1, - sym__terminator, - STATE(2681), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2517), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2354), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2778), 1, + sym_on_quit_phrase, + STATE(3249), 1, + aux_sym_for_statement_repeat1, + STATE(3250), 1, + sym_on_stop_phrase, + STATE(2508), 2, + sym_comment, + sym_include, + [118792] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2533), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2792), 1, + sym_on_quit_phrase, + STATE(3467), 1, + sym_on_stop_phrase, + STATE(3468), 1, + aux_sym_for_statement_repeat1, + STATE(2509), 2, + sym_comment, + sym_include, + [118824] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3842), 1, + aux_sym_do_tuning_token1, + STATE(2916), 1, + sym_do_tuning, + ACTIONS(3840), 3, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + STATE(2510), 3, sym_comment, sym_include, - [121671] = 9, + aux_sym_do_block_repeat1, + [118850] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3852), 1, + ACTIONS(3845), 1, sym__terminator, - STATE(2681), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2518), 2, + STATE(2511), 2, sym_comment, sym_include, - [121701] = 9, + [118880] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3854), 1, + ACTIONS(3847), 1, sym__terminator, - STATE(2518), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2519), 2, + STATE(2512), 2, + sym_comment, + sym_include, + [118910] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2408), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2770), 1, + sym_on_quit_phrase, + STATE(3231), 1, + sym_on_stop_phrase, + STATE(3232), 1, + aux_sym_for_statement_repeat1, + STATE(2513), 2, sym_comment, sym_include, - [121731] = 9, + [118942] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3856), 1, + ACTIONS(3849), 1, sym__terminator, - STATE(2681), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2520), 2, + STATE(2514), 2, sym_comment, sym_include, - [121761] = 9, + [118972] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3858), 1, + ACTIONS(3851), 1, sym__terminator, - STATE(2681), 1, + STATE(2514), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2521), 2, + STATE(2515), 2, sym_comment, sym_include, - [121791] = 9, + [119002] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3860), 1, + ACTIONS(3853), 1, sym__terminator, - STATE(2520), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2522), 2, + STATE(2516), 2, sym_comment, sym_include, - [121821] = 9, + [119032] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3076), 1, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3855), 1, sym__terminator, - STATE(2544), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2523), 2, + STATE(2533), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2517), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [121851] = 9, + [119062] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3076), 1, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3857), 1, sym__terminator, - STATE(2551), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2524), 2, + STATE(2516), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2518), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [121881] = 9, + [119092] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3782), 1, + ACTIONS(3804), 1, sym__terminator, - STATE(2521), 1, + STATE(2517), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2525), 2, + STATE(2519), 2, sym_comment, sym_include, - [121911] = 9, + [119122] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3862), 1, + ACTIONS(3859), 1, sym__terminator, - STATE(2551), 1, + STATE(2622), 1, aux_sym_temp_table_definition_repeat2, - STATE(2526), 2, + STATE(2520), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [121941] = 9, + [119152] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3864), 1, + ACTIONS(3861), 1, sym__terminator, - STATE(2681), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2527), 2, + STATE(2521), 2, sym_comment, sym_include, - [121971] = 10, + [119182] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3866), 1, + ACTIONS(2342), 1, anon_sym_COLON, - STATE(2780), 1, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2766), 1, sym_on_quit_phrase, - STATE(3088), 1, - sym_on_stop_phrase, - STATE(3089), 1, + STATE(3227), 1, aux_sym_for_statement_repeat1, - STATE(2528), 2, + STATE(3228), 1, + sym_on_stop_phrase, + STATE(2522), 2, sym_comment, sym_include, - [122003] = 9, + [119214] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3868), 1, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3531), 1, sym__terminator, - STATE(2681), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2529), 2, + STATE(2615), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2523), 2, sym_comment, sym_include, - [122033] = 9, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [119244] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3538), 1, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3863), 1, sym__terminator, - STATE(2526), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2530), 2, + STATE(2533), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2524), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [122063] = 9, + [119274] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3120), 1, + ACTIONS(3565), 1, sym__terminator, - STATE(2551), 1, + STATE(2520), 1, aux_sym_temp_table_definition_repeat2, - STATE(2531), 2, + STATE(2525), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [122093] = 10, + [119304] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3193), 1, + ACTIONS(2541), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2795), 1, + STATE(2763), 1, sym_on_quit_phrase, - STATE(3093), 1, + STATE(3220), 1, sym_on_stop_phrase, - STATE(3094), 1, + STATE(3222), 1, aux_sym_for_statement_repeat1, - STATE(2532), 2, + STATE(2526), 2, sym_comment, sym_include, - [122125] = 9, + [119336] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3755), 1, + ACTIONS(3816), 1, sym__terminator, - STATE(2527), 1, + STATE(2521), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2533), 2, + STATE(2527), 2, sym_comment, sym_include, - [122155] = 9, + [119366] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3538), 1, + ACTIONS(3565), 1, sym__terminator, - STATE(2551), 1, + STATE(2622), 1, aux_sym_temp_table_definition_repeat2, - STATE(2534), 2, + STATE(2528), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [122185] = 10, + [119396] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3844), 1, + ACTIONS(2398), 1, + anon_sym_COLON, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3870), 1, + STATE(2761), 1, + sym_on_quit_phrase, + STATE(3216), 1, + sym_on_stop_phrase, + STATE(3217), 1, + aux_sym_for_statement_repeat1, + STATE(2529), 2, + sym_comment, + sym_include, + [119428] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2543), 1, anon_sym_COLON, - STATE(2800), 1, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2758), 1, sym_on_quit_phrase, - STATE(3095), 1, + STATE(3212), 1, sym_on_stop_phrase, - STATE(3096), 1, + STATE(3213), 1, aux_sym_for_statement_repeat1, - STATE(2535), 2, + STATE(2530), 2, sym_comment, sym_include, - [122217] = 9, + [119460] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3014), 1, - sym__terminator, - STATE(2551), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2536), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2547), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2757), 1, + sym_on_quit_phrase, + STATE(3208), 1, + sym_on_stop_phrase, + STATE(3210), 1, + aux_sym_for_statement_repeat1, + STATE(2531), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [122247] = 9, + [119492] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3872), 1, - sym__terminator, - STATE(2517), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2537), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3186), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2755), 1, + sym_on_quit_phrase, + STATE(3205), 1, + sym_on_stop_phrase, + STATE(3206), 1, + aux_sym_for_statement_repeat1, + STATE(2532), 2, sym_comment, sym_include, - [122277] = 9, + [119524] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3874), 1, + ACTIONS(3865), 1, sym__terminator, - STATE(2681), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, + ACTIONS(3867), 1, + aux_sym_query_definition_tuning_token1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3870), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2538), 2, + STATE(2533), 3, sym_comment, sym_include, - [122307] = 10, + aux_sym_query_definition_repeat1, + [119552] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2558), 1, + ACTIONS(2549), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2809), 1, + STATE(2754), 1, sym_on_quit_phrase, - STATE(3099), 1, + STATE(3202), 1, sym_on_stop_phrase, - STATE(3100), 1, + STATE(3203), 1, aux_sym_for_statement_repeat1, - STATE(2539), 2, + STATE(2534), 2, sym_comment, sym_include, - [122339] = 10, + [119584] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3162), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2830), 1, - sym_on_quit_phrase, - STATE(3102), 1, - sym_on_stop_phrase, - STATE(3103), 1, - aux_sym_for_statement_repeat1, - STATE(2540), 2, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3776), 1, + sym__terminator, + STATE(2617), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2535), 2, sym_comment, sym_include, - [122371] = 10, + [119614] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2528), 1, - anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2837), 1, + ACTIONS(3873), 1, + anon_sym_COLON, + STATE(2753), 1, sym_on_quit_phrase, - STATE(3105), 1, + STATE(3199), 1, sym_on_stop_phrase, - STATE(3107), 1, + STATE(3200), 1, aux_sym_for_statement_repeat1, - STATE(2541), 2, + STATE(2536), 2, + sym_comment, + sym_include, + [119646] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3589), 1, + sym__terminator, + STATE(2622), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2537), 2, sym_comment, sym_include, - [122403] = 10, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [119676] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2564), 1, - anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2843), 1, + ACTIONS(3875), 1, + anon_sym_COLON, + STATE(2751), 1, sym_on_quit_phrase, - STATE(3109), 1, + STATE(3191), 1, sym_on_stop_phrase, - STATE(3110), 1, + STATE(3192), 1, aux_sym_for_statement_repeat1, - STATE(2542), 2, + STATE(2538), 2, sym_comment, sym_include, - [122435] = 10, + [119708] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(3878), 1, - aux_sym_data_relation_token1, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(3012), 1, - aux_sym_data_relation_repeat1, - STATE(4643), 1, - sym_data_relation, - STATE(2543), 2, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3877), 1, + sym__terminator, + STATE(2533), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2539), 2, sym_comment, sym_include, - [122467] = 9, + [119738] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3601), 1, + ACTIONS(3573), 1, sym__terminator, - STATE(2551), 1, + STATE(2528), 1, aux_sym_temp_table_definition_repeat2, - STATE(2544), 2, + STATE(2540), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [122497] = 9, + [119768] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3880), 1, - sym__terminator, - STATE(2681), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2545), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2517), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2815), 1, + sym_on_quit_phrase, + STATE(3306), 1, + sym_on_stop_phrase, + STATE(3307), 1, + aux_sym_for_statement_repeat1, + STATE(2541), 2, sym_comment, sym_include, - [122527] = 9, + [119800] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3657), 1, + ACTIONS(3573), 1, sym__terminator, - STATE(2534), 1, + STATE(2622), 1, aux_sym_temp_table_definition_repeat2, - STATE(2546), 2, + STATE(2542), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [122557] = 9, + [119830] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3657), 1, - sym__terminator, - STATE(2551), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2547), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2390), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2817), 1, + sym_on_quit_phrase, + STATE(3312), 1, + sym_on_stop_phrase, + STATE(3313), 1, + aux_sym_for_statement_repeat1, + STATE(2543), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [122587] = 9, + [119862] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3601), 1, - sym__terminator, - STATE(2576), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2548), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2535), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2818), 1, + sym_on_quit_phrase, + STATE(3314), 1, + sym_on_stop_phrase, + STATE(3315), 1, + aux_sym_for_statement_repeat1, + STATE(2544), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [122617] = 9, + [119894] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3010), 1, - sym__terminator, - STATE(2637), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2549), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2366), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2821), 1, + sym_on_quit_phrase, + STATE(3319), 1, + aux_sym_for_statement_repeat1, + STATE(3321), 1, + sym_on_stop_phrase, + STATE(2545), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [122647] = 9, + [119926] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3010), 1, + ACTIONS(3531), 1, sym__terminator, - STATE(2551), 1, + STATE(2622), 1, aux_sym_temp_table_definition_repeat2, - STATE(2550), 2, + STATE(2546), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [122677] = 8, - ACTIONS(59), 1, + [119956] = 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(3882), 1, - sym__terminator, - ACTIONS(3884), 1, - aux_sym_field_definition_token1, - ACTIONS(3887), 1, - aux_sym_index_definition_token1, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - STATE(2551), 3, + STATE(2547), 2, sym_comment, sym_include, - aux_sym_temp_table_definition_repeat2, - [122705] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(3879), 6, + sym_identifier, anon_sym_COMMA, - ACTIONS(2548), 1, anon_sym_COLON, - ACTIONS(3844), 1, aux_sym_on_error_phrase_token1, - STATE(2822), 1, - sym_on_quit_phrase, - STATE(3440), 1, - sym_on_stop_phrase, - STATE(3441), 1, - aux_sym_for_statement_repeat1, - STATE(2552), 2, - sym_comment, - sym_include, - [122737] = 9, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [119978] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3890), 1, + ACTIONS(3881), 1, sym__terminator, - STATE(2681), 1, + STATE(2512), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2553), 2, + STATE(2548), 2, sym_comment, sym_include, - [122767] = 10, + [120008] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2405), 1, + ACTIONS(2388), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2848), 1, + STATE(2825), 1, sym_on_quit_phrase, - STATE(3111), 1, + STATE(3324), 1, sym_on_stop_phrase, - STATE(3112), 1, + STATE(3325), 1, aux_sym_for_statement_repeat1, - STATE(2554), 2, + STATE(2549), 2, sym_comment, sym_include, - [122799] = 9, + [120040] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3892), 1, + ACTIONS(3885), 1, + aux_sym_field_definition_token1, + STATE(2602), 1, + aux_sym_widget_phrase_repeat1, + STATE(2970), 1, + sym_widget_field, + STATE(2550), 2, + sym_comment, + sym_include, + ACTIONS(3883), 3, sym_identifier, - STATE(2047), 1, - aux_sym_sort_clause_repeat1, - STATE(2556), 1, - sym_sort_column, - STATE(4590), 1, - sym_object_access, - STATE(2022), 2, - sym_qualified_name, - sym_function_call, - STATE(2555), 2, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + [120068] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3081), 1, + sym__terminator, + STATE(2622), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2551), 2, sym_comment, sym_include, - [122829] = 5, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [120098] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2556), 2, + STATE(2552), 2, sym_comment, sym_include, - ACTIONS(3894), 6, + ACTIONS(3887), 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, - [122851] = 10, + [120120] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2560), 1, + ACTIONS(2376), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2849), 1, + STATE(2831), 1, sym_on_quit_phrase, - STATE(3115), 1, - sym_on_stop_phrase, - STATE(3116), 1, + STATE(3336), 1, aux_sym_for_statement_repeat1, - STATE(2557), 2, - sym_comment, - sym_include, - [122883] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3896), 1, - anon_sym_COMMA, - STATE(2558), 3, + STATE(3337), 1, + sym_on_stop_phrase, + STATE(2553), 2, sym_comment, sym_include, - aux_sym_on_statement_repeat1, - ACTIONS(1347), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [122907] = 9, + [120152] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3899), 1, + ACTIONS(3889), 1, sym__terminator, - STATE(2681), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2559), 2, + STATE(2554), 2, sym_comment, sym_include, - [122937] = 10, + [120182] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2409), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2696), 1, - sym_on_quit_phrase, - STATE(3297), 1, - sym_on_stop_phrase, - STATE(3298), 1, - aux_sym_for_statement_repeat1, - STATE(2560), 2, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3533), 1, + sym__terminator, + STATE(2659), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2555), 2, sym_comment, sym_include, - [122969] = 6, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [120212] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3901), 1, - anon_sym_COMMA, - STATE(2561), 3, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3589), 1, + sym__terminator, + STATE(2568), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2556), 2, sym_comment, sym_include, - aux_sym_data_relation_repeat1, - ACTIONS(3719), 4, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [120242] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3891), 1, sym__terminator, - anon_sym_RPAREN, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - [122993] = 10, + STATE(2533), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2557), 2, + sym_comment, + sym_include, + [120272] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3893), 1, + sym_identifier, + ACTIONS(3898), 1, + aux_sym_field_definition_token1, + STATE(2970), 1, + sym_widget_field, + ACTIONS(3896), 2, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + STATE(2558), 3, + sym_comment, + sym_include, + aux_sym_widget_phrase_repeat1, + [120300] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2383), 1, - anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2881), 1, + ACTIONS(3901), 1, + anon_sym_COLON, + STATE(2858), 1, sym_on_quit_phrase, - STATE(3121), 1, - aux_sym_for_statement_repeat1, - STATE(3122), 1, + STATE(3381), 1, sym_on_stop_phrase, - STATE(2562), 2, + STATE(3382), 1, + aux_sym_for_statement_repeat1, + STATE(2559), 2, sym_comment, sym_include, - [123025] = 10, + [120332] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3236), 1, + ACTIONS(3235), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2765), 1, + STATE(2859), 1, sym_on_quit_phrase, - STATE(3054), 1, + STATE(3386), 1, sym_on_stop_phrase, - STATE(3281), 1, + STATE(3388), 1, aux_sym_for_statement_repeat1, + STATE(2560), 2, + sym_comment, + sym_include, + [120364] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(2988), 1, + sym__terminator, + STATE(2622), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2561), 2, + sym_comment, + sym_include, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [120394] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(2988), 1, + sym__terminator, + STATE(2542), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2562), 2, + sym_comment, + sym_include, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [120424] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3662), 1, + sym_identifier, + ACTIONS(3668), 1, + aux_sym_function_parameter_token1, + STATE(3563), 1, + sym_function_parameter_mode, + STATE(3653), 1, + sym_function_parameter, + ACTIONS(3666), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, STATE(2563), 2, sym_comment, sym_include, - [123057] = 10, + [120454] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2413), 1, + ACTIONS(2374), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2876), 1, + STATE(2727), 1, sym_on_quit_phrase, - STATE(3124), 1, - sym_on_stop_phrase, - STATE(3125), 1, + STATE(3157), 1, aux_sym_for_statement_repeat1, + STATE(3158), 1, + sym_on_stop_phrase, STATE(2564), 2, sym_comment, sym_include, - [123089] = 10, + [120486] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3904), 1, + ACTIONS(2394), 1, anon_sym_COLON, - STATE(2707), 1, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2720), 1, sym_on_quit_phrase, - STATE(3098), 1, + STATE(3141), 1, sym_on_stop_phrase, - STATE(3101), 1, + STATE(3142), 1, aux_sym_for_statement_repeat1, STATE(2565), 2, sym_comment, sym_include, - [123121] = 10, + [120518] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2381), 1, - anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2862), 1, + ACTIONS(3903), 1, + anon_sym_COLON, + STATE(2860), 1, sym_on_quit_phrase, - STATE(3475), 1, - aux_sym_for_statement_repeat1, - STATE(3477), 1, + STATE(3389), 1, sym_on_stop_phrase, + STATE(3395), 1, + aux_sym_for_statement_repeat1, STATE(2566), 2, sym_comment, sym_include, - [123153] = 9, - ACTIONS(3), 1, + [120550] = 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(3892), 1, - sym_identifier, - STATE(2025), 1, - aux_sym_sort_clause_repeat1, - STATE(2556), 1, - sym_sort_column, - STATE(4590), 1, - sym_object_access, - STATE(2022), 2, - sym_qualified_name, - sym_function_call, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3905), 1, + sym__terminator, + STATE(2533), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2567), 2, sym_comment, sym_include, - [123183] = 9, + [120580] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3906), 1, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3519), 1, sym__terminator, - STATE(2559), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + STATE(2622), 1, + aux_sym_temp_table_definition_repeat2, STATE(2568), 2, sym_comment, sym_include, - [123213] = 9, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [120610] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3908), 1, + ACTIONS(3758), 1, sym__terminator, - STATE(2681), 1, + STATE(2590), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, STATE(2569), 2, sym_comment, sym_include, - [123243] = 10, + [120640] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2371), 1, + ACTIONS(2527), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2880), 1, + STATE(2862), 1, sym_on_quit_phrase, - STATE(3495), 1, - aux_sym_for_statement_repeat1, - STATE(3496), 1, + STATE(3397), 1, sym_on_stop_phrase, + STATE(3398), 1, + aux_sym_for_statement_repeat1, STATE(2570), 2, sym_comment, sym_include, - [123275] = 9, + [120672] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3910), 1, - sym__terminator, - STATE(2681), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3237), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2864), 1, + sym_on_quit_phrase, + STATE(3401), 1, + sym_on_stop_phrase, + STATE(3405), 1, + aux_sym_for_statement_repeat1, STATE(2571), 2, sym_comment, sym_include, - [123305] = 9, + [120704] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3128), 1, - sym__terminator, - STATE(2551), 1, - aux_sym_temp_table_definition_repeat2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2525), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2866), 1, + sym_on_quit_phrase, + STATE(3406), 1, + sym_on_stop_phrase, + STATE(3408), 1, + aux_sym_for_statement_repeat1, STATE(2572), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [123335] = 9, + [120736] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3128), 1, - sym__terminator, - STATE(2547), 1, - aux_sym_temp_table_definition_repeat2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2356), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2717), 1, + sym_on_quit_phrase, + STATE(3131), 1, + aux_sym_for_statement_repeat1, + STATE(3135), 1, + sym_on_stop_phrase, STATE(2573), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [123365] = 10, + [120768] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(3907), 1, anon_sym_COMMA, - ACTIONS(2347), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2877), 1, - sym_on_quit_phrase, - STATE(3141), 1, - aux_sym_for_statement_repeat1, - STATE(3142), 1, - sym_on_stop_phrase, + ACTIONS(3909), 1, + aux_sym_data_relation_token1, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(2910), 1, + aux_sym_data_relation_repeat1, + STATE(4110), 1, + sym_data_relation, STATE(2574), 2, sym_comment, sym_include, - [123397] = 9, + [120800] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3912), 1, - sym__terminator, - STATE(2681), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2529), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2714), 1, + sym_on_quit_phrase, + STATE(3126), 1, + sym_on_stop_phrase, + STATE(3127), 1, + aux_sym_for_statement_repeat1, STATE(2575), 2, sym_comment, sym_include, - [123427] = 9, + [120832] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3649), 1, - sym__terminator, - STATE(2551), 1, - aux_sym_temp_table_definition_repeat2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2402), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2713), 1, + sym_on_quit_phrase, + STATE(3120), 1, + sym_on_stop_phrase, + STATE(3121), 1, + aux_sym_for_statement_repeat1, STATE(2576), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [123457] = 9, + [120864] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2577), 2, + sym_comment, + sym_include, + ACTIONS(3911), 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, + [120886] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3018), 1, - sym__terminator, - STATE(2622), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2577), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2519), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2711), 1, + sym_on_quit_phrase, + STATE(3117), 1, + sym_on_stop_phrase, + STATE(3118), 1, + aux_sym_for_statement_repeat1, + STATE(2578), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [123487] = 9, + [120918] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3018), 1, + ACTIONS(3913), 1, + anon_sym_COMMA, + STATE(2579), 3, + sym_comment, + sym_include, + aux_sym_data_relation_repeat1, + ACTIONS(3752), 4, sym__terminator, - STATE(2551), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2578), 2, + anon_sym_RPAREN, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + [120942] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2515), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2709), 1, + sym_on_quit_phrase, + STATE(3112), 1, + sym_on_stop_phrase, + STATE(3113), 1, + aux_sym_for_statement_repeat1, + STATE(2580), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [123517] = 10, + [120974] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2425), 1, + ACTIONS(3231), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2828), 1, + STATE(2706), 1, sym_on_quit_phrase, - STATE(3456), 1, + STATE(3108), 1, sym_on_stop_phrase, - STATE(3457), 1, + STATE(3109), 1, aux_sym_for_statement_repeat1, - STATE(2579), 2, + STATE(2581), 2, sym_comment, sym_include, - [123549] = 10, + [121006] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2385), 1, + ACTIONS(2513), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2701), 1, + STATE(2705), 1, sym_on_quit_phrase, - STATE(3254), 1, - aux_sym_for_statement_repeat1, - STATE(3255), 1, + STATE(3105), 1, sym_on_stop_phrase, - STATE(2580), 2, + STATE(3106), 1, + aux_sym_for_statement_repeat1, + STATE(2582), 2, sym_comment, sym_include, - [123581] = 9, + [121038] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3914), 1, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3519), 1, sym__terminator, - STATE(2569), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2581), 2, + STATE(2594), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2583), 2, sym_comment, sym_include, - [123611] = 9, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [121068] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3916), 1, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3618), 1, sym__terminator, - STATE(2538), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2582), 2, + STATE(2546), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2584), 2, sym_comment, sym_include, - [123641] = 9, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [121098] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3695), 1, + ACTIONS(3916), 1, sym__terminator, - STATE(2590), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2583), 2, + STATE(2585), 2, sym_comment, sym_include, - [123671] = 10, + [121128] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(3876), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3878), 1, - aux_sym_data_relation_token1, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(2905), 1, - aux_sym_data_relation_repeat1, - STATE(4304), 1, - sym_data_relation, - STATE(2584), 2, + ACTIONS(2523), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2867), 1, + sym_on_quit_phrase, + STATE(3416), 1, + sym_on_stop_phrase, + STATE(3418), 1, + aux_sym_for_statement_repeat1, + STATE(2586), 2, sym_comment, sym_include, - [123703] = 9, + [121160] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3649), 1, + ACTIONS(3027), 1, sym__terminator, - STATE(2594), 1, + STATE(2622), 1, aux_sym_temp_table_definition_repeat2, - STATE(2585), 2, + STATE(2587), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [123733] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3918), 1, - sym__terminator, - STATE(2681), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2586), 2, - sym_comment, - sym_include, - [123763] = 10, - ACTIONS(59), 1, + [121190] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(2377), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2825), 1, - sym_on_quit_phrase, - STATE(3447), 1, - aux_sym_for_statement_repeat1, - STATE(3449), 1, - sym_on_stop_phrase, - STATE(2587), 2, + STATE(2588), 2, sym_comment, sym_include, - [123795] = 10, + ACTIONS(3918), 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, + [121212] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2554), 1, + ACTIONS(3178), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2883), 1, + STATE(2752), 1, sym_on_quit_phrase, - STATE(3131), 1, + STATE(3197), 1, sym_on_stop_phrase, - STATE(3135), 1, + STATE(3198), 1, aux_sym_for_statement_repeat1, - STATE(2588), 2, - sym_comment, - sym_include, - [123827] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3739), 1, - sym__terminator, - STATE(2575), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, STATE(2589), 2, sym_comment, sym_include, - [123857] = 9, + [121244] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, ACTIONS(3920), 1, sym__terminator, - STATE(2681), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, STATE(2590), 2, sym_comment, sym_include, - [123887] = 9, + [121274] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3006), 1, - sym__terminator, - STATE(2551), 1, - aux_sym_temp_table_definition_repeat2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3922), 1, + anon_sym_COLON, + STATE(2704), 1, + sym_on_quit_phrase, + STATE(3101), 1, + sym_on_stop_phrase, + STATE(3103), 1, + aux_sym_for_statement_repeat1, STATE(2591), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [123917] = 9, + [121306] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3922), 1, - sym__terminator, - STATE(2551), 1, - aux_sym_temp_table_definition_repeat2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3217), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2703), 1, + sym_on_quit_phrase, + STATE(3097), 1, + sym_on_stop_phrase, + STATE(3099), 1, + aux_sym_for_statement_repeat1, STATE(2592), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [123947] = 10, + [121338] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, ACTIONS(3924), 1, anon_sym_COLON, - STATE(2827), 1, + STATE(2701), 1, sym_on_quit_phrase, - STATE(3182), 1, + STATE(3090), 1, sym_on_stop_phrase, - STATE(3183), 1, + STATE(3091), 1, aux_sym_for_statement_repeat1, STATE(2593), 2, sym_comment, sym_include, - [123979] = 9, + [121370] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, ACTIONS(3926), 1, sym__terminator, - STATE(2551), 1, + STATE(2622), 1, aux_sym_temp_table_definition_repeat2, STATE(2594), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [124009] = 10, + [121400] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2411), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2818), 1, - sym_on_quit_phrase, - STATE(3432), 1, - sym_on_stop_phrase, - STATE(3433), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3740), 1, + sym__terminator, + STATE(2601), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2595), 2, sym_comment, sym_include, - [124041] = 8, - ACTIONS(3), 1, + [121430] = 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(3928), 1, - sym_identifier, - ACTIONS(3933), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - STATE(2964), 1, - sym_widget_field, - ACTIONS(3931), 2, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - STATE(2596), 3, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3047), 1, + sym__terminator, + STATE(2640), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2596), 2, sym_comment, sym_include, - aux_sym_widget_phrase_repeat1, - [124069] = 9, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [121460] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3936), 1, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3047), 1, sym__terminator, - STATE(2681), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + STATE(2622), 1, + aux_sym_temp_table_definition_repeat2, STATE(2597), 2, sym_comment, sym_include, - [124099] = 9, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [121490] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3669), 1, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3618), 1, sym__terminator, - STATE(2613), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + STATE(2622), 1, + aux_sym_temp_table_definition_repeat2, STATE(2598), 2, sym_comment, sym_include, - [124129] = 10, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [121520] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3160), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2820), 1, - sym_on_quit_phrase, - STATE(3187), 1, - sym_on_stop_phrase, - STATE(3188), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3928), 1, + sym__terminator, + STATE(2604), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2599), 2, sym_comment, sym_include, - [124161] = 10, + [121550] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2544), 1, + ACTIONS(3225), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2816), 1, + STATE(2756), 1, sym_on_quit_phrase, - STATE(3427), 1, - sym_on_stop_phrase, - STATE(3428), 1, + STATE(3007), 1, aux_sym_for_statement_repeat1, + STATE(3207), 1, + sym_on_stop_phrase, STATE(2600), 2, sym_comment, sym_include, - [124193] = 10, + [121582] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3938), 1, - anon_sym_COLON, - STATE(2819), 1, - sym_on_quit_phrase, - STATE(3189), 1, - sym_on_stop_phrase, - STATE(3191), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3930), 1, + sym__terminator, + STATE(2533), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2601), 2, sym_comment, sym_include, - [124225] = 10, - ACTIONS(59), 1, + [121612] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(2542), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2814), 1, - sym_on_quit_phrase, - STATE(3421), 1, - sym_on_stop_phrase, - STATE(3422), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3885), 1, + aux_sym_field_definition_token1, + STATE(2558), 1, + aux_sym_widget_phrase_repeat1, + STATE(2970), 1, + sym_widget_field, STATE(2602), 2, sym_comment, sym_include, - [124257] = 10, + ACTIONS(3932), 3, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + [121640] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2566), 1, + ACTIONS(2521), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2817), 1, + STATE(2857), 1, sym_on_quit_phrase, - STATE(3193), 1, + STATE(3424), 1, sym_on_stop_phrase, - STATE(3194), 1, + STATE(3426), 1, aux_sym_for_statement_repeat1, STATE(2603), 2, sym_comment, sym_include, - [124289] = 10, + [121672] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3191), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2812), 1, - sym_on_quit_phrase, - STATE(3416), 1, - sym_on_stop_phrase, - STATE(3417), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3934), 1, + sym__terminator, + STATE(2533), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2604), 2, sym_comment, sym_include, - [124321] = 10, + [121702] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3178), 1, + ACTIONS(2384), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2815), 1, + STATE(2847), 1, sym_on_quit_phrase, - STATE(3196), 1, - sym_on_stop_phrase, - STATE(3197), 1, + STATE(3431), 1, aux_sym_for_statement_repeat1, + STATE(3432), 1, + sym_on_stop_phrase, STATE(2605), 2, sym_comment, sym_include, - [124353] = 10, + [121734] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2540), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2808), 1, - sym_on_quit_phrase, - STATE(3414), 1, - sym_on_stop_phrase, - STATE(3415), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3936), 1, + sym__terminator, + STATE(2611), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2606), 2, sym_comment, sym_include, - [124385] = 10, + [121764] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3180), 1, + ACTIONS(2537), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2870), 1, + STATE(2699), 1, sym_on_quit_phrase, - STATE(3150), 1, + STATE(3074), 1, sym_on_stop_phrase, - STATE(3154), 1, + STATE(3160), 1, aux_sym_for_statement_repeat1, STATE(2607), 2, sym_comment, sym_include, - [124417] = 10, + [121796] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3940), 1, + ACTIONS(2400), 1, anon_sym_COLON, - STATE(2806), 1, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2836), 1, sym_on_quit_phrase, - STATE(3411), 1, + STATE(3438), 1, sym_on_stop_phrase, - STATE(3412), 1, + STATE(3440), 1, aux_sym_for_statement_repeat1, STATE(2608), 2, sym_comment, sym_include, - [124449] = 9, + [121828] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3942), 1, - sym__terminator, - STATE(2681), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3938), 1, + anon_sym_COLON, + STATE(2743), 1, + sym_on_quit_phrase, + STATE(3176), 1, + aux_sym_for_statement_repeat1, + STATE(3177), 1, + sym_on_stop_phrase, STATE(2609), 2, sym_comment, sym_include, - [124479] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3944), 1, - sym__terminator, - STATE(2618), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2610), 2, - sym_comment, - sym_include, - [124509] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3593), 1, - sym__terminator, - STATE(2592), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2611), 2, - sym_comment, - sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [124539] = 10, + [121860] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3211), 1, + ACTIONS(3205), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2805), 1, + STATE(2692), 1, sym_on_quit_phrase, - STATE(3408), 1, - sym_on_stop_phrase, - STATE(3409), 1, + STATE(3052), 1, aux_sym_for_statement_repeat1, - STATE(2612), 2, + STATE(3053), 1, + sym_on_stop_phrase, + STATE(2610), 2, sym_comment, sym_include, - [124571] = 9, + [121892] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3946), 1, + ACTIONS(3940), 1, sym__terminator, - STATE(2681), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2613), 2, + STATE(2611), 2, sym_comment, sym_include, - [124601] = 10, + [121922] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2562), 1, + ACTIONS(2358), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2813), 1, + STATE(2804), 1, sym_on_quit_phrase, - STATE(3200), 1, - sym_on_stop_phrase, - STATE(3201), 1, + STATE(3450), 1, aux_sym_for_statement_repeat1, - STATE(2614), 2, + STATE(3451), 1, + sym_on_stop_phrase, + STATE(2612), 2, sym_comment, sym_include, - [124633] = 10, + [121954] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3948), 1, - anon_sym_COLON, - STATE(2802), 1, - sym_on_quit_phrase, - STATE(3401), 1, - sym_on_stop_phrase, - STATE(3402), 1, - aux_sym_for_statement_repeat1, - STATE(2615), 2, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(2964), 1, + sym__terminator, + STATE(2598), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2613), 2, sym_comment, sym_include, - [124665] = 9, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [121984] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3715), 1, + ACTIONS(3710), 1, sym__terminator, - STATE(2571), 1, + STATE(2620), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2616), 2, + STATE(2614), 2, sym_comment, sym_include, - [124695] = 9, + [122014] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3950), 1, + ACTIONS(3942), 1, sym__terminator, - STATE(2551), 1, + STATE(2622), 1, aux_sym_temp_table_definition_repeat2, - STATE(2617), 2, + STATE(2615), 2, + sym_comment, + sym_include, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [122044] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3109), 1, + sym__terminator, + STATE(2622), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2616), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [124725] = 9, + [122074] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3952), 1, + ACTIONS(3944), 1, sym__terminator, - STATE(2681), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, + STATE(2617), 2, + sym_comment, + sym_include, + [122104] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(2964), 1, + sym__terminator, + STATE(2622), 1, + aux_sym_temp_table_definition_repeat2, STATE(2618), 2, sym_comment, sym_include, - [124755] = 9, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [122134] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3954), 1, + ACTIONS(3946), 1, sym__terminator, - STATE(2681), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, STATE(2619), 2, sym_comment, sym_include, - [124785] = 9, + [122164] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3956), 1, + ACTIONS(3948), 1, sym__terminator, - STATE(2626), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, STATE(2620), 2, sym_comment, sym_include, - [124815] = 9, + [122194] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3804), 1, + ACTIONS(3950), 1, sym__terminator, - STATE(2597), 1, + STATE(2554), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, STATE(2621), 2, sym_comment, sym_include, - [124845] = 9, + [122224] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(3952), 1, + sym__terminator, + ACTIONS(3954), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(3957), 1, aux_sym_index_definition_token1, - ACTIONS(3609), 1, - sym__terminator, - STATE(2551), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2622), 2, - sym_comment, - sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [124875] = 7, + STATE(2622), 3, + sym_comment, + sym_include, + aux_sym_temp_table_definition_repeat2, + [122252] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3960), 1, - aux_sym_do_tuning_token1, - STATE(3017), 1, - sym_do_tuning, - ACTIONS(3958), 3, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2539), 1, anon_sym_COLON, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - STATE(2623), 3, + STATE(2695), 1, + sym_on_quit_phrase, + STATE(3043), 1, + sym_on_stop_phrase, + STATE(3161), 1, + aux_sym_for_statement_repeat1, + STATE(2623), 2, sym_comment, sym_include, - aux_sym_do_block_repeat1, - [124901] = 9, + [122284] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3609), 1, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3960), 1, sym__terminator, - STATE(2648), 1, - aux_sym_temp_table_definition_repeat2, + STATE(2619), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2624), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [124931] = 9, + [122314] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3963), 1, + ACTIONS(3962), 1, sym__terminator, - STATE(2681), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, STATE(2625), 2, sym_comment, sym_include, - [124961] = 9, + [122344] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3965), 1, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3015), 1, sym__terminator, - STATE(2681), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + STATE(2622), 1, + aux_sym_temp_table_definition_repeat2, STATE(2626), 2, sym_comment, sym_include, - [124991] = 10, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [122374] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2532), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2811), 1, - sym_on_quit_phrase, - STATE(3202), 1, - sym_on_stop_phrase, - STATE(3203), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3964), 1, + sym__terminator, + STATE(2533), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2627), 2, sym_comment, sym_include, - [125023] = 10, + [122404] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2407), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2797), 1, - sym_on_quit_phrase, - STATE(3207), 1, - sym_on_stop_phrase, - STATE(3208), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3966), 1, + sym__terminator, + STATE(2625), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2628), 2, sym_comment, sym_include, - [125055] = 9, - ACTIONS(59), 1, + [122434] = 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(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3593), 1, - sym__terminator, - STATE(2551), 1, - aux_sym_temp_table_definition_repeat2, + ACTIONS(3968), 1, + sym_identifier, + STATE(2082), 1, + aux_sym_sort_clause_repeat1, + STATE(2641), 1, + sym_sort_column, + STATE(4546), 1, + sym_object_access, + STATE(2083), 2, + sym_qualified_name, + sym_function_call, STATE(2629), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [125085] = 10, + [122464] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2534), 1, + ACTIONS(2382), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2787), 1, + STATE(2724), 1, sym_on_quit_phrase, - STATE(3211), 1, + STATE(3320), 1, sym_on_stop_phrase, - STATE(3212), 1, + STATE(3322), 1, aux_sym_for_statement_repeat1, STATE(2630), 2, sym_comment, sym_include, - [125117] = 10, + [122496] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(3876), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3878), 1, - aux_sym_data_relation_token1, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(2919), 1, - aux_sym_data_relation_repeat1, - STATE(4189), 1, - sym_data_relation, + ACTIONS(2404), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2722), 1, + sym_on_quit_phrase, + STATE(3268), 1, + aux_sym_for_statement_repeat1, + STATE(3269), 1, + sym_on_stop_phrase, STATE(2631), 2, sym_comment, sym_include, - [125149] = 10, + [122528] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(3907), 1, anon_sym_COMMA, - ACTIONS(2550), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2831), 1, - sym_on_quit_phrase, - STATE(3174), 1, - sym_on_stop_phrase, - STATE(3176), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3909), 1, + aux_sym_data_relation_token1, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(3001), 1, + aux_sym_data_relation_repeat1, + STATE(4644), 1, + sym_data_relation, STATE(2632), 2, sym_comment, sym_include, - [125181] = 10, + [122560] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2369), 1, + ACTIONS(2336), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2783), 1, + STATE(2702), 1, sym_on_quit_phrase, - STATE(3215), 1, + STATE(3138), 1, aux_sym_for_statement_repeat1, - STATE(3216), 1, + STATE(3140), 1, sym_on_stop_phrase, STATE(2633), 2, sym_comment, sym_include, - [125213] = 10, + [122592] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2419), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2773), 1, - sym_on_quit_phrase, - STATE(3218), 1, - sym_on_stop_phrase, - STATE(3219), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3654), 1, + sym__terminator, + STATE(2627), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2634), 2, sym_comment, sym_include, - [125245] = 8, + [122622] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3969), 1, - aux_sym_field_definition_token1, - STATE(2596), 1, - aux_sym_widget_phrase_repeat1, - STATE(2964), 1, - sym_widget_field, - STATE(2635), 2, + ACTIONS(3970), 1, + anon_sym_COMMA, + STATE(2635), 3, sym_comment, sym_include, - ACTIONS(3967), 3, + aux_sym_on_statement_repeat1, + ACTIONS(1382), 4, sym_identifier, aux_sym_input_expression_token2, aux_sym_do_block_token1, - [125273] = 9, + aux_sym_widget_field_token1, + [122646] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3675), 1, + ACTIONS(3968), 1, sym_identifier, - ACTIONS(3681), 1, - aux_sym_function_parameter_token1, - STATE(3873), 1, - sym_function_parameter, - STATE(3948), 1, - sym_function_parameter_mode, - ACTIONS(3679), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, + STATE(2052), 1, + aux_sym_sort_clause_repeat1, + STATE(2641), 1, + sym_sort_column, + STATE(4546), 1, + sym_object_access, + STATE(2083), 2, + sym_qualified_name, + sym_function_call, STATE(2636), 2, sym_comment, sym_include, - [125303] = 9, + [122676] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3661), 1, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3973), 1, sym__terminator, - STATE(2551), 1, - aux_sym_temp_table_definition_repeat2, + STATE(2533), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2637), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [125333] = 10, + [122706] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2395), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2712), 1, - sym_on_quit_phrase, - STATE(3326), 1, - aux_sym_for_statement_repeat1, - STATE(3328), 1, - sym_on_stop_phrase, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3975), 1, + sym__terminator, + STATE(2637), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2638), 2, sym_comment, sym_include, - [125365] = 9, + [122736] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3034), 1, + ACTIONS(3977), 1, sym__terminator, - STATE(2551), 1, + STATE(2622), 1, aux_sym_temp_table_definition_repeat2, STATE(2639), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [125395] = 10, + [122766] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2556), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2807), 1, - sym_on_quit_phrase, - STATE(3204), 1, - aux_sym_for_statement_repeat1, - STATE(3217), 1, - sym_on_stop_phrase, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3642), 1, + sym__terminator, + STATE(2622), 1, + aux_sym_temp_table_definition_repeat2, STATE(2640), 2, sym_comment, sym_include, - [125427] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2403), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2753), 1, - sym_on_quit_phrase, - STATE(3229), 1, - aux_sym_for_statement_repeat1, - STATE(3230), 1, - sym_on_stop_phrase, - STATE(2641), 2, - sym_comment, - sym_include, - [125459] = 5, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [122796] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2642), 2, + STATE(2641), 2, sym_comment, sym_include, - ACTIONS(3971), 6, + ACTIONS(3979), 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, - [125481] = 9, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [122818] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3661), 1, + ACTIONS(3642), 1, sym__terminator, - STATE(2678), 1, + STATE(2656), 1, aux_sym_temp_table_definition_repeat2, - STATE(2643), 2, + STATE(2642), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [125511] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2423), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2692), 1, - sym_on_quit_phrase, - STATE(3310), 1, - sym_on_stop_phrase, - STATE(3311), 1, - aux_sym_for_statement_repeat1, - STATE(2644), 2, - sym_comment, - sym_include, - [125543] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2379), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2728), 1, - sym_on_quit_phrase, - STATE(3301), 1, - aux_sym_for_statement_repeat1, - STATE(3303), 1, - sym_on_stop_phrase, - STATE(2645), 2, - sym_comment, - sym_include, - [125575] = 9, + [122848] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3973), 1, + ACTIONS(3981), 1, sym__terminator, - STATE(2681), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2646), 2, + STATE(2643), 2, sym_comment, sym_include, - [125605] = 9, + [122878] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3975), 1, + ACTIONS(3983), 1, sym__terminator, - STATE(2681), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2647), 2, + STATE(2644), 2, sym_comment, sym_include, - [125635] = 9, + [122908] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2942), 1, + sym__terminator, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3603), 1, - sym__terminator, - STATE(2551), 1, + STATE(2654), 1, aux_sym_temp_table_definition_repeat2, - STATE(2648), 2, + STATE(2645), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [125665] = 9, + [122938] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3818), 1, + ACTIONS(3985), 1, sym__terminator, - STATE(2661), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2649), 2, + STATE(2646), 2, sym_comment, sym_include, - [125695] = 10, + [122968] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2546), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2710), 1, - sym_on_quit_phrase, - STATE(3294), 1, - sym_on_stop_phrase, - STATE(3295), 1, - aux_sym_for_statement_repeat1, - STATE(2650), 2, + ACTIONS(2942), 1, + sym__terminator, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + STATE(2622), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2647), 2, sym_comment, sym_include, - [125727] = 10, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [122998] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2417), 1, + ACTIONS(2396), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(2720), 1, + STATE(2690), 1, sym_on_quit_phrase, - STATE(3287), 1, + STATE(3114), 1, sym_on_stop_phrase, - STATE(3288), 1, + STATE(3116), 1, aux_sym_for_statement_repeat1, - STATE(2651), 2, + STATE(2648), 2, sym_comment, sym_include, - [125759] = 9, + [123030] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3603), 1, + ACTIONS(3545), 1, sym__terminator, - STATE(2662), 1, + STATE(2639), 1, aux_sym_temp_table_definition_repeat2, - STATE(2652), 2, + STATE(2649), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [125789] = 9, + [123060] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3641), 1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(3909), 1, + aux_sym_data_relation_token1, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(2958), 1, + aux_sym_data_relation_repeat1, + STATE(4015), 1, + sym_data_relation, + STATE(2650), 2, + sym_comment, + sym_include, + [123092] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3987), 1, sym__terminator, - STATE(2629), 1, - aux_sym_temp_table_definition_repeat2, + STATE(2533), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2651), 2, + sym_comment, + sym_include, + [123122] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3989), 1, + sym__terminator, + STATE(2533), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2652), 2, + sym_comment, + sym_include, + [123152] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3991), 1, + sym__terminator, + STATE(2644), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2653), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [125819] = 5, - ACTIONS(3), 1, + [123182] = 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(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3597), 1, + sym__terminator, + STATE(2622), 1, + aux_sym_temp_table_definition_repeat2, STATE(2654), 2, sym_comment, sym_include, - ACTIONS(3977), 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, - [125841] = 9, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [123212] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3979), 1, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3597), 1, sym__terminator, - STATE(2681), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + STATE(2662), 1, + aux_sym_temp_table_definition_repeat2, STATE(2655), 2, sym_comment, sym_include, - [125871] = 9, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [123242] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3641), 1, + ACTIONS(3545), 1, sym__terminator, - STATE(2551), 1, + STATE(2622), 1, aux_sym_temp_table_definition_repeat2, STATE(2656), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [125901] = 5, - ACTIONS(3), 1, + [123272] = 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(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3993), 1, + sym__terminator, + STATE(2533), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2657), 2, sym_comment, sym_include, - ACTIONS(3981), 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, - [125923] = 10, + [123302] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2530), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2727), 1, - sym_on_quit_phrase, - STATE(3282), 1, - sym_on_stop_phrase, - STATE(3283), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3784), 1, + sym__terminator, + STATE(2651), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2658), 2, sym_comment, sym_include, - [125955] = 10, + [123332] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2536), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2729), 1, - sym_on_quit_phrase, - STATE(3279), 1, - sym_on_stop_phrase, - STATE(3280), 1, - aux_sym_for_statement_repeat1, + ACTIONS(2950), 1, + aux_sym_field_definition_token1, + ACTIONS(2952), 1, + aux_sym_index_definition_token1, + ACTIONS(3995), 1, + sym__terminator, + STATE(2622), 1, + aux_sym_temp_table_definition_repeat2, STATE(2659), 2, sym_comment, sym_include, - [125987] = 10, + STATE(3196), 2, + sym_field_definition, + sym_index_definition, + [123362] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3254), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2688), 1, - sym_on_quit_phrase, - STATE(3276), 1, - sym_on_stop_phrase, - STATE(3277), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3537), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3770), 1, + sym__terminator, + STATE(2646), 1, + aux_sym_query_definition_repeat1, + STATE(2974), 1, + sym_query_definition_tuning, + ACTIONS(3539), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2660), 2, sym_comment, sym_include, - [126019] = 9, + [123392] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3983), 1, + ACTIONS(3997), 1, sym__terminator, - STATE(2681), 1, + STATE(2533), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, STATE(2661), 2, sym_comment, sym_include, - [126049] = 9, + [123422] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2950), 1, aux_sym_field_definition_token1, - ACTIONS(2985), 1, + ACTIONS(2952), 1, aux_sym_index_definition_token1, - ACTIONS(3985), 1, + ACTIONS(3533), 1, sym__terminator, - STATE(2551), 1, + STATE(2622), 1, aux_sym_temp_table_definition_repeat2, STATE(2662), 2, sym_comment, sym_include, - STATE(3106), 2, + STATE(3196), 2, sym_field_definition, sym_index_definition, - [126079] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2552), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2690), 1, - sym_on_quit_phrase, - STATE(3274), 1, - sym_on_stop_phrase, - STATE(3275), 1, - aux_sym_for_statement_repeat1, - STATE(2663), 2, - sym_comment, - sym_include, - [126111] = 9, + [123452] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3537), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3800), 1, + ACTIONS(3808), 1, sym__terminator, - STATE(2671), 1, + STATE(2661), 1, aux_sym_query_definition_repeat1, - STATE(2963), 1, + STATE(2974), 1, sym_query_definition_tuning, - ACTIONS(3544), 2, + ACTIONS(3539), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2664), 2, + STATE(2663), 2, sym_comment, sym_include, - [126141] = 10, + [123482] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3987), 1, + ACTIONS(2406), 1, anon_sym_COLON, - STATE(2694), 1, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2869), 1, sym_on_quit_phrase, - STATE(3271), 1, + STATE(3420), 1, sym_on_stop_phrase, - STATE(3272), 1, + STATE(3421), 1, aux_sym_for_statement_repeat1, - STATE(2665), 2, + STATE(2664), 2, sym_comment, sym_include, - [126173] = 10, + [123514] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3240), 1, + ACTIONS(2354), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(2695), 1, - sym_on_quit_phrase, - STATE(3269), 1, - sym_on_stop_phrase, - STATE(3270), 1, + STATE(3249), 1, aux_sym_for_statement_repeat1, + STATE(3250), 1, + sym_on_stop_phrase, + STATE(2665), 2, + sym_comment, + sym_include, + [123543] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4003), 1, + aux_sym_variable_definition_token2, STATE(2666), 2, sym_comment, sym_include, - [126205] = 8, + ACTIONS(4001), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [123566] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3969), 1, - aux_sym_field_definition_token1, - STATE(2635), 1, - aux_sym_widget_phrase_repeat1, - STATE(2964), 1, - sym_widget_field, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4007), 1, + sym__terminator, + ACTIONS(4009), 1, + anon_sym_NO_DASHERROR, + STATE(2721), 1, + aux_sym_assign_statement_repeat1, + STATE(3367), 1, + sym_assignment, STATE(2667), 2, sym_comment, sym_include, - ACTIONS(3989), 3, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - [126233] = 10, + [123595] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3844), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3991), 1, + ACTIONS(4011), 1, anon_sym_COLON, - STATE(2697), 1, - sym_on_quit_phrase, - STATE(3264), 1, - sym_on_stop_phrase, - STATE(3265), 1, - aux_sym_for_statement_repeat1, STATE(2668), 2, sym_comment, sym_include, - [126265] = 10, + STATE(4085), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [123620] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2415), 1, - anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - STATE(2761), 1, - sym_on_quit_phrase, - STATE(3221), 1, - sym_on_stop_phrase, - STATE(3222), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3033), 1, + anon_sym_COLON, STATE(2669), 2, sym_comment, sym_include, - [126297] = 9, + STATE(4517), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [123645] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3993), 1, - sym__terminator, - STATE(2674), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(4013), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4017), 1, + aux_sym_on_error_phrase_token8, STATE(2670), 2, sym_comment, sym_include, - [126327] = 9, - ACTIONS(59), 1, + ACTIONS(4015), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [123670] = 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(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3995), 1, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4019), 1, sym__terminator, - STATE(2681), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(4021), 1, + anon_sym_NO_DASHERROR, + STATE(2738), 1, + aux_sym_assign_statement_repeat1, + STATE(3367), 1, + sym_assignment, STATE(2671), 2, sym_comment, sym_include, - [126357] = 9, + [123699] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(2987), 1, - sym__terminator, - STATE(2551), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2672), 2, + ACTIONS(4025), 1, + aux_sym_case_when_branch_token1, + STATE(3085), 1, + sym_case_when_branch, + ACTIONS(4023), 2, + aux_sym__block_terminator_token1, + aux_sym_case_otherwise_branch_token1, + STATE(2672), 3, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [126387] = 9, - ACTIONS(59), 1, + aux_sym_case_body_repeat1, + [123724] = 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(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(2987), 1, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4028), 1, sym__terminator, - STATE(2656), 1, - aux_sym_temp_table_definition_repeat2, + ACTIONS(4030), 1, + anon_sym_NO_DASHERROR, + STATE(2667), 1, + aux_sym_assign_statement_repeat1, + STATE(3367), 1, + sym_assignment, STATE(2673), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [126417] = 9, + [123753] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3997), 1, - sym__terminator, - STATE(2681), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(4034), 1, + aux_sym_variable_definition_token2, STATE(2674), 2, sym_comment, sym_include, - [126447] = 9, + ACTIONS(4032), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [123776] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3999), 1, - sym__terminator, - STATE(2676), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3269), 1, + anon_sym_COLON, STATE(2675), 2, sym_comment, sym_include, - [126477] = 9, + STATE(4264), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [123801] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4001), 1, - sym__terminator, - STATE(2681), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2904), 1, + sym_on_quit_phrase, + STATE(3580), 1, + sym_on_stop_phrase, + ACTIONS(2392), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(2676), 2, sym_comment, sym_include, - [126507] = 5, - ACTIONS(3), 1, + [123828] = 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(893), 1, + sym__namedot, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(4036), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(3146), 1, + aux_sym_data_relation_repeat1, STATE(2677), 2, sym_comment, sym_include, - ACTIONS(4003), 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, - [126529] = 9, - ACTIONS(59), 1, + [123857] = 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(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3556), 1, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4038), 1, sym__terminator, - STATE(2551), 1, - aux_sym_temp_table_definition_repeat2, + ACTIONS(4040), 1, + anon_sym_NO_DASHERROR, + STATE(2744), 1, + aux_sym_assign_statement_repeat1, + STATE(3367), 1, + sym_assignment, STATE(2678), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [126559] = 9, + [123886] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3745), 1, - sym__terminator, - STATE(2619), 1, - aux_sym_query_definition_repeat1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(3544), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2533), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3467), 1, + sym_on_stop_phrase, + STATE(3468), 1, + aux_sym_for_statement_repeat1, STATE(2679), 2, sym_comment, sym_include, - [126589] = 10, + [123915] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3693), 1, - aux_sym_case_when_branch_token1, - ACTIONS(4005), 1, - aux_sym__block_terminator_token1, - ACTIONS(4007), 1, - aux_sym_case_otherwise_branch_token1, - STATE(2863), 1, - aux_sym_case_body_repeat1, - STATE(3405), 1, - sym_case_when_branch, - STATE(4384), 1, - sym_case_otherwise_branch, + ACTIONS(4044), 1, + aux_sym_variable_definition_token2, STATE(2680), 2, sym_comment, sym_include, - [126621] = 8, + ACTIONS(4042), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [123938] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4009), 1, - sym__terminator, - ACTIONS(4011), 1, - aux_sym_query_definition_tuning_token1, - STATE(2963), 1, - sym_query_definition_tuning, - ACTIONS(4014), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2681), 3, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3275), 1, + anon_sym_COLON, + STATE(2681), 2, sym_comment, sym_include, - aux_sym_query_definition_repeat1, - [126649] = 9, + STATE(4615), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [123963] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - aux_sym_field_definition_token1, - ACTIONS(2985), 1, - aux_sym_index_definition_token1, - ACTIONS(3556), 1, - sym__terminator, - STATE(2617), 1, - aux_sym_temp_table_definition_repeat2, + ACTIONS(4046), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4050), 1, + aux_sym_on_error_phrase_token8, STATE(2682), 2, sym_comment, sym_include, - STATE(3106), 2, - sym_field_definition, - sym_index_definition, - [126679] = 7, + ACTIONS(4048), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [123988] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3364), 1, - anon_sym_COLON, STATE(2683), 2, sym_comment, sym_include, - STATE(4152), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [126704] = 6, + ACTIONS(4052), 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, + [124009] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4019), 1, - aux_sym_variable_definition_token2, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(2636), 1, + aux_sym_inherits_token1, + ACTIONS(4054), 1, + anon_sym_COLON, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(4531), 1, + sym_inherits, STATE(2684), 2, sym_comment, sym_include, - ACTIONS(4017), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [126727] = 9, + [124038] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(4021), 1, - aux_sym_data_relation_token2, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(3042), 1, - aux_sym_data_relation_repeat1, STATE(2685), 2, sym_comment, sym_include, - [126756] = 9, + ACTIONS(4056), 5, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + aux_sym_query_definition_token3, + [124059] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4023), 1, + ACTIONS(3734), 1, anon_sym_COLON, - STATE(3016), 1, + STATE(2963), 1, sym_on_error_phrase, - STATE(3321), 1, + STATE(3348), 1, sym_on_quit_phrase, - STATE(4157), 1, + STATE(4225), 1, sym_on_stop_phrase, STATE(2686), 2, sym_comment, sym_include, - [126785] = 6, + [124088] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4027), 1, - aux_sym_variable_definition_token2, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(2636), 1, + aux_sym_inherits_token1, + ACTIONS(4058), 1, + anon_sym_COLON, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(4499), 1, + sym_inherits, STATE(2687), 2, sym_comment, sym_include, - ACTIONS(4025), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [126808] = 9, + [124117] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3987), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3271), 1, - sym_on_stop_phrase, - STATE(3272), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4013), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4017), 1, + aux_sym_on_error_phrase_token8, STATE(2688), 2, sym_comment, sym_include, - [126837] = 6, + ACTIONS(4060), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [124142] = 8, 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_variable_definition_token2, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2952), 1, + sym_on_quit_phrase, + STATE(3841), 1, + sym_on_stop_phrase, + ACTIONS(2555), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(2689), 2, sym_comment, sym_include, - ACTIONS(4031), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [126860] = 9, + [124169] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3240), 1, + ACTIONS(2511), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3269), 1, - sym_on_stop_phrase, - STATE(3270), 1, + STATE(3027), 1, aux_sym_for_statement_repeat1, + STATE(3032), 1, + sym_on_stop_phrase, STATE(2690), 2, sym_comment, sym_include, - [126889] = 7, + [124198] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3340), 1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(2636), 1, + aux_sym_inherits_token1, + ACTIONS(4062), 1, anon_sym_COLON, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(4466), 1, + sym_inherits, STATE(2691), 2, sym_comment, sym_include, - STATE(4142), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [126914] = 9, + [124227] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2546), 1, + ACTIONS(3938), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3294), 1, - sym_on_stop_phrase, - STATE(3295), 1, + STATE(3176), 1, aux_sym_for_statement_repeat1, - STATE(2692), 2, - sym_comment, - sym_include, - [126943] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4037), 1, - aux_sym_input_expression_token2, - STATE(3481), 1, - sym_widget_phrase, - ACTIONS(4035), 2, - sym_identifier, - aux_sym_do_block_token1, - STATE(2693), 3, + STATE(3177), 1, + sym_on_stop_phrase, + STATE(2692), 2, sym_comment, sym_include, - aux_sym_on_statement_repeat2, - [126968] = 9, + [124256] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4029), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4040), 1, + ACTIONS(4064), 1, anon_sym_COLON, - STATE(3266), 1, + STATE(2953), 1, + sym_on_error_phrase, + STATE(3439), 1, + sym_on_quit_phrase, + STATE(4357), 1, sym_on_stop_phrase, - STATE(3267), 1, - aux_sym_for_statement_repeat1, + STATE(2693), 2, + sym_comment, + sym_include, + [124285] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4068), 1, + aux_sym_widget_field_token1, STATE(2694), 2, sym_comment, sym_include, - [126997] = 9, + ACTIONS(4066), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [124308] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3991), 1, + ACTIONS(2537), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3264), 1, + STATE(3074), 1, sym_on_stop_phrase, - STATE(3265), 1, + STATE(3160), 1, aux_sym_for_statement_repeat1, STATE(2695), 2, sym_comment, sym_include, - [127026] = 9, + [124337] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2538), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3243), 1, - sym_on_stop_phrase, - STATE(3245), 1, - aux_sym_for_statement_repeat1, STATE(2696), 2, sym_comment, sym_include, - [127055] = 9, + ACTIONS(4070), 5, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [124358] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4042), 1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(2636), 1, + aux_sym_inherits_token1, + ACTIONS(4072), 1, anon_sym_COLON, - STATE(3260), 1, - sym_on_stop_phrase, - STATE(3262), 1, - aux_sym_for_statement_repeat1, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(4426), 1, + sym_inherits, STATE(2697), 2, sym_comment, sym_include, - [127084] = 6, + [124387] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4046), 1, - aux_sym_variable_definition_token2, STATE(2698), 2, sym_comment, sym_include, - ACTIONS(4044), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [127107] = 9, + ACTIONS(4074), 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, + [124408] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(3876), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4048), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(3044), 1, - aux_sym_data_relation_repeat1, + ACTIONS(3225), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3007), 1, + aux_sym_for_statement_repeat1, + STATE(3207), 1, + sym_on_stop_phrase, STATE(2699), 2, sym_comment, sym_include, - [127136] = 6, - ACTIONS(59), 1, + [124437] = 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(4052), 1, - aux_sym_variable_definition_token2, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4076), 1, + sym__terminator, + ACTIONS(4078), 1, + anon_sym_NO_DASHERROR, + STATE(2707), 1, + aux_sym_assign_statement_repeat1, + STATE(3367), 1, + sym_assignment, STATE(2700), 2, sym_comment, sym_include, - ACTIONS(4050), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [127159] = 9, + [124466] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2415), 1, - anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3221), 1, + ACTIONS(4080), 1, + anon_sym_COLON, + STATE(3083), 1, sym_on_stop_phrase, - STATE(3222), 1, + STATE(3084), 1, aux_sym_for_statement_repeat1, STATE(2701), 2, sym_comment, sym_include, - [127188] = 7, + [124495] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4054), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4058), 1, - aux_sym_on_error_phrase_token8, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2404), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3268), 1, + aux_sym_for_statement_repeat1, + STATE(3269), 1, + sym_on_stop_phrase, STATE(2702), 2, sym_comment, sym_include, - ACTIONS(4056), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [127213] = 6, + [124524] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4062), 1, - aux_sym_variable_definition_token2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3090), 1, + sym_on_stop_phrase, + STATE(3091), 1, + aux_sym_for_statement_repeat1, STATE(2703), 2, sym_comment, sym_include, - ACTIONS(4060), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [127236] = 7, + [124553] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4064), 1, + ACTIONS(4082), 1, anon_sym_COLON, + STATE(3092), 1, + sym_on_stop_phrase, + STATE(3094), 1, + aux_sym_for_statement_repeat1, STATE(2704), 2, sym_comment, sym_include, - STATE(4127), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [127261] = 9, + [124582] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3790), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3217), 1, anon_sym_COLON, - STATE(3018), 1, - sym_on_error_phrase, - STATE(3250), 1, - sym_on_quit_phrase, - STATE(4046), 1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3097), 1, sym_on_stop_phrase, + STATE(3099), 1, + aux_sym_for_statement_repeat1, STATE(2705), 2, sym_comment, sym_include, - [127290] = 7, + [124611] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4066), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3922), 1, anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3101), 1, + sym_on_stop_phrase, + STATE(3103), 1, + aux_sym_for_statement_repeat1, STATE(2706), 2, sym_comment, sym_include, - STATE(4091), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [127315] = 9, + [124640] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4084), 1, + sym__terminator, + ACTIONS(4086), 1, + anon_sym_NO_DASHERROR, + STATE(2721), 1, + aux_sym_assign_statement_repeat1, + STATE(3367), 1, + sym_assignment, + STATE(2707), 2, + sym_comment, + sym_include, + [124669] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4068), 1, + ACTIONS(2382), 1, anon_sym_COLON, - STATE(3036), 1, - aux_sym_for_statement_repeat1, - STATE(3038), 1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3320), 1, sym_on_stop_phrase, - STATE(2707), 2, + STATE(3322), 1, + aux_sym_for_statement_repeat1, + STATE(2708), 2, sym_comment, sym_include, - [127344] = 7, + [124698] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4070), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4074), 1, - aux_sym_on_error_phrase_token8, - STATE(2708), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2513), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3105), 1, + sym_on_stop_phrase, + STATE(3106), 1, + aux_sym_for_statement_repeat1, + STATE(2709), 2, sym_comment, sym_include, - ACTIONS(4072), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [127369] = 7, + [124727] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3038), 1, - anon_sym_COLON, - STATE(2709), 2, + STATE(2710), 2, sym_comment, sym_include, - STATE(4038), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [127394] = 9, + ACTIONS(3752), 5, + sym__terminator, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + [124748] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2530), 1, + ACTIONS(3231), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3282), 1, + STATE(3108), 1, sym_on_stop_phrase, - STATE(3283), 1, + STATE(3109), 1, aux_sym_for_statement_repeat1, - STATE(2710), 2, + STATE(2711), 2, sym_comment, sym_include, - [127423] = 6, + [124777] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4078), 1, + ACTIONS(4090), 1, aux_sym_variable_definition_token2, - STATE(2711), 2, + STATE(2712), 2, sym_comment, sym_include, - ACTIONS(4076), 4, + ACTIONS(4088), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [127446] = 9, + [124800] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2423), 1, + ACTIONS(2515), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3310), 1, + STATE(3112), 1, sym_on_stop_phrase, - STATE(3311), 1, + STATE(3113), 1, aux_sym_for_statement_repeat1, - STATE(2712), 2, - sym_comment, - sym_include, - [127475] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4080), 1, - sym_identifier, - ACTIONS(4082), 1, - sym__terminator, - ACTIONS(4084), 1, - anon_sym_NO_DASHERROR, - STATE(2801), 1, - aux_sym_assign_statement_repeat1, - STATE(3388), 1, - sym_assignment, STATE(2713), 2, sym_comment, sym_include, - [127504] = 5, + [124829] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2519), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3117), 1, + sym_on_stop_phrase, + STATE(3118), 1, + aux_sym_for_statement_repeat1, STATE(2714), 2, sym_comment, sym_include, - ACTIONS(4086), 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, - [127525] = 9, - ACTIONS(3), 1, + [124858] = 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(4080), 1, - sym_identifier, - ACTIONS(4088), 1, - sym__terminator, - ACTIONS(4090), 1, - anon_sym_NO_DASHERROR, - STATE(2887), 1, - aux_sym_assign_statement_repeat1, - STATE(3388), 1, - sym_assignment, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4092), 1, + anon_sym_COLON, STATE(2715), 2, sym_comment, sym_include, - [127554] = 8, + STATE(4335), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [124883] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2979), 1, - sym_on_quit_phrase, - STATE(3569), 1, - sym_on_stop_phrase, - ACTIONS(3294), 2, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4096), 1, + aux_sym_variable_definition_token2, STATE(2716), 2, sym_comment, sym_include, - [127581] = 9, + ACTIONS(4094), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [124906] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3743), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2402), 1, anon_sym_COLON, - STATE(2973), 1, - sym_on_error_phrase, - STATE(3236), 1, - sym_on_quit_phrase, - STATE(4045), 1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3120), 1, sym_on_stop_phrase, + STATE(3121), 1, + aux_sym_for_statement_repeat1, STATE(2717), 2, sym_comment, sym_include, - [127610] = 9, + [124935] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(2618), 1, - aux_sym_inherits_token1, - ACTIONS(4092), 1, - anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(4088), 1, - sym_inherits, + ACTIONS(4100), 1, + aux_sym_variable_definition_token2, STATE(2718), 2, sym_comment, sym_include, - [127639] = 7, + ACTIONS(4098), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [124958] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4094), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4098), 1, - aux_sym_on_error_phrase_token8, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(4102), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(3225), 1, + aux_sym_data_relation_repeat1, STATE(2719), 2, sym_comment, sym_include, - ACTIONS(4096), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [127664] = 9, + [124987] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2536), 1, + ACTIONS(2529), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3279), 1, + STATE(3126), 1, sym_on_stop_phrase, - STATE(3280), 1, + STATE(3127), 1, aux_sym_for_statement_repeat1, STATE(2720), 2, sym_comment, sym_include, - [127693] = 7, - ACTIONS(59), 1, + [125016] = 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(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3055), 1, - anon_sym_COLON, - STATE(2721), 2, + ACTIONS(4104), 1, + sym_identifier, + STATE(3367), 1, + sym_assignment, + ACTIONS(4107), 2, + sym__terminator, + anon_sym_NO_DASHERROR, + STATE(2721), 3, sym_comment, sym_include, - STATE(4053), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [127718] = 9, + aux_sym_assign_statement_repeat1, + [125041] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4100), 1, + ACTIONS(2539), 1, anon_sym_COLON, - STATE(3057), 1, - aux_sym_for_statement_repeat1, - STATE(3058), 1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3043), 1, sym_on_stop_phrase, + STATE(3161), 1, + aux_sym_for_statement_repeat1, STATE(2722), 2, sym_comment, sym_include, - [127747] = 7, - ACTIONS(3), 1, + [125070] = 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(4102), 1, - sym_identifier, - STATE(4591), 1, - sym_access_tuning, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(4109), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(3016), 1, + aux_sym_data_relation_repeat1, STATE(2723), 2, sym_comment, sym_include, - ACTIONS(4104), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - [127772] = 6, + [125099] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4108), 1, - aux_sym_variable_definition_token2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2396), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3114), 1, + sym_on_stop_phrase, + STATE(3116), 1, + aux_sym_for_statement_repeat1, STATE(2724), 2, sym_comment, sym_include, - ACTIONS(4106), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [127795] = 6, + [125128] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4112), 1, - aux_sym_variable_definition_token2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2356), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3131), 1, + aux_sym_for_statement_repeat1, + STATE(3135), 1, + sym_on_stop_phrase, STATE(2725), 2, sym_comment, sym_include, - ACTIONS(4110), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [127818] = 5, + [125157] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3263), 1, + anon_sym_COLON, STATE(2726), 2, sym_comment, sym_include, - ACTIONS(4114), 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, - [127839] = 9, + STATE(4308), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [125182] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3254), 1, + ACTIONS(2394), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3276), 1, + STATE(3141), 1, sym_on_stop_phrase, - STATE(3277), 1, + STATE(3142), 1, aux_sym_for_statement_repeat1, STATE(2727), 2, sym_comment, sym_include, - [127868] = 9, + [125211] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2417), 1, - anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - STATE(3287), 1, + ACTIONS(4111), 1, + anon_sym_COLON, + STATE(2960), 1, + sym_on_error_phrase, + STATE(3153), 1, + sym_on_quit_phrase, + STATE(4277), 1, sym_on_stop_phrase, - STATE(3288), 1, - aux_sym_for_statement_repeat1, STATE(2728), 2, sym_comment, sym_include, - [127897] = 9, + [125240] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2552), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3274), 1, - sym_on_stop_phrase, - STATE(3275), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4115), 1, + aux_sym_variable_definition_token2, STATE(2729), 2, sym_comment, sym_include, - [127926] = 8, + ACTIONS(4113), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [125263] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3844), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - STATE(2933), 1, - sym_on_quit_phrase, - STATE(3926), 1, - sym_on_stop_phrase, - ACTIONS(2421), 2, - anon_sym_COMMA, + ACTIONS(3291), 1, anon_sym_COLON, STATE(2730), 2, sym_comment, sym_include, - [127953] = 7, + STATE(4282), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [125288] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4116), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4120), 1, - aux_sym_on_error_phrase_token8, + ACTIONS(4119), 1, + aux_sym_variable_definition_token2, STATE(2731), 2, sym_comment, sym_include, - ACTIONS(4118), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [127978] = 9, - ACTIONS(3), 1, + ACTIONS(4117), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [125311] = 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(4080), 1, - sym_identifier, - ACTIONS(4122), 1, - sym__terminator, - ACTIONS(4124), 1, - anon_sym_NO_DASHERROR, - STATE(2715), 1, - aux_sym_assign_statement_repeat1, - STATE(3388), 1, - sym_assignment, STATE(2732), 2, sym_comment, sym_include, - [128007] = 6, + ACTIONS(4121), 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, + [125332] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4128), 1, + ACTIONS(4125), 1, aux_sym_variable_definition_token2, STATE(2733), 2, sym_comment, sym_include, - ACTIONS(4126), 4, + ACTIONS(4123), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [128030] = 9, + [125355] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2556), 1, + ACTIONS(2374), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3204), 1, + STATE(3157), 1, aux_sym_for_statement_repeat1, - STATE(3217), 1, + STATE(3158), 1, sym_on_stop_phrase, STATE(2734), 2, sym_comment, sym_include, - [128059] = 9, + [125384] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2403), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3229), 1, - aux_sym_for_statement_repeat1, - STATE(3230), 1, - sym_on_stop_phrase, + ACTIONS(4127), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4131), 1, + aux_sym_on_error_phrase_token8, STATE(2735), 2, sym_comment, sym_include, - [128088] = 6, + ACTIONS(4129), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [125409] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4132), 1, - aux_sym_variable_definition_token2, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(2901), 1, + sym_on_quit_phrase, + STATE(3989), 1, + sym_on_stop_phrase, + ACTIONS(2557), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(2736), 2, sym_comment, sym_include, - ACTIONS(4130), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128111] = 9, + [125436] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(4134), 1, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3091), 1, + anon_sym_COLON, + STATE(2737), 2, + sym_comment, + sym_include, + STATE(4254), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [125461] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4133), 1, sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(3061), 1, - aux_sym_data_relation_repeat1, - STATE(2737), 2, + ACTIONS(4135), 1, + anon_sym_NO_DASHERROR, + STATE(2721), 1, + aux_sym_assign_statement_repeat1, + STATE(3367), 1, + sym_assignment, + STATE(2738), 2, sym_comment, sym_include, - [128140] = 6, + [125490] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4138), 1, - aux_sym_variable_definition_token2, - STATE(2738), 2, + ACTIONS(4137), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token8, + STATE(2739), 2, sym_comment, sym_include, - ACTIONS(4136), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128163] = 7, + ACTIONS(4139), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [125515] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3342), 1, + ACTIONS(3774), 1, anon_sym_COLON, - STATE(2739), 2, - sym_comment, - sym_include, - STATE(4412), 3, + STATE(2954), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(3165), 1, sym_on_quit_phrase, - [128188] = 6, + STATE(4246), 1, + sym_on_stop_phrase, + STATE(2740), 2, + sym_comment, + sym_include, + [125544] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4142), 1, - aux_sym_variable_definition_token2, - STATE(2740), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2336), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3138), 1, + aux_sym_for_statement_repeat1, + STATE(3140), 1, + sym_on_stop_phrase, + STATE(2741), 2, sym_comment, sym_include, - ACTIONS(4140), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128211] = 6, + [125573] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4146), 1, + ACTIONS(4145), 1, aux_sym_variable_definition_token2, - STATE(2741), 2, + STATE(2742), 2, sym_comment, sym_include, - ACTIONS(4144), 4, + ACTIONS(4143), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [128234] = 9, + [125596] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(2618), 1, - aux_sym_inherits_token1, - ACTIONS(4148), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4147), 1, anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(4533), 1, - sym_inherits, - STATE(2742), 2, + STATE(3257), 1, + aux_sym_for_statement_repeat1, + STATE(3258), 1, + sym_on_stop_phrase, + STATE(2743), 2, + sym_comment, + sym_include, + [125625] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4149), 1, + sym__terminator, + ACTIONS(4151), 1, + anon_sym_NO_DASHERROR, + STATE(2721), 1, + aux_sym_assign_statement_repeat1, + STATE(3367), 1, + sym_assignment, + STATE(2744), 2, sym_comment, sym_include, - [128263] = 8, + [125654] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3844), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - STATE(2894), 1, - sym_on_quit_phrase, - STATE(3643), 1, - sym_on_stop_phrase, - ACTIONS(4150), 2, - anon_sym_COMMA, + ACTIONS(3123), 1, anon_sym_COLON, - STATE(2743), 2, + STATE(2745), 2, sym_comment, sym_include, - [128290] = 9, + STATE(4220), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [125679] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(2618), 1, - aux_sym_inherits_token1, - ACTIONS(4152), 1, - anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(4501), 1, - sym_inherits, - STATE(2744), 2, + ACTIONS(4153), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4157), 1, + aux_sym_on_error_phrase_token8, + STATE(2746), 2, sym_comment, sym_include, - [128319] = 6, + ACTIONS(4155), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [125704] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4156), 1, - aux_sym_variable_definition_token2, - STATE(2745), 2, + ACTIONS(3790), 1, + anon_sym_DQUOTE, + ACTIONS(3792), 1, + anon_sym_SQUOTE, + STATE(2201), 1, + sym__string_literal, + STATE(1785), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2747), 2, sym_comment, sym_include, - ACTIONS(4154), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128342] = 9, + [125731] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3776), 1, + ACTIONS(3782), 1, anon_sym_COLON, - STATE(2960), 1, + STATE(2949), 1, sym_on_error_phrase, - STATE(3256), 1, + STATE(3175), 1, sym_on_quit_phrase, - STATE(4082), 1, + STATE(4212), 1, sym_on_stop_phrase, - STATE(2746), 2, - sym_comment, - sym_include, - [128371] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4160), 1, - aux_sym_variable_definition_token2, - STATE(2747), 2, + STATE(2748), 2, sym_comment, sym_include, - ACTIONS(4158), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128394] = 7, + [125760] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3348), 1, + ACTIONS(3071), 1, anon_sym_COLON, - STATE(2748), 2, + STATE(2749), 2, sym_comment, sym_include, - STATE(4081), 3, + STATE(4564), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [128419] = 6, + [125785] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4164), 1, - aux_sym_variable_definition_token2, - STATE(2749), 2, + STATE(2750), 2, sym_comment, sym_include, - ACTIONS(4162), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128442] = 9, + ACTIONS(4159), 5, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + aux_sym_query_definition_token3, + [125806] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4166), 1, + ACTIONS(4161), 1, anon_sym_COLON, - STATE(2915), 1, - sym_on_error_phrase, - STATE(3226), 1, - sym_on_quit_phrase, - STATE(4076), 1, + STATE(3188), 1, sym_on_stop_phrase, - STATE(2750), 2, + STATE(3189), 1, + aux_sym_for_statement_repeat1, + STATE(2751), 2, sym_comment, sym_include, - [128471] = 9, + [125835] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2395), 1, + ACTIONS(3875), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3326), 1, - aux_sym_for_statement_repeat1, - STATE(3328), 1, + STATE(3191), 1, sym_on_stop_phrase, - STATE(2751), 2, - sym_comment, - sym_include, - [128500] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4170), 1, - aux_sym_widget_field_token1, + STATE(3192), 1, + aux_sym_for_statement_repeat1, STATE(2752), 2, sym_comment, sym_include, - ACTIONS(4168), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [128523] = 9, + [125864] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2419), 1, - anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3218), 1, + ACTIONS(4163), 1, + anon_sym_COLON, + STATE(3193), 1, sym_on_stop_phrase, - STATE(3219), 1, + STATE(3194), 1, aux_sym_for_statement_repeat1, STATE(2753), 2, sym_comment, sym_include, - [128552] = 6, + [125893] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4174), 1, - aux_sym_variable_definition_token2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3178), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3197), 1, + sym_on_stop_phrase, + STATE(3198), 1, + aux_sym_for_statement_repeat1, STATE(2754), 2, sym_comment, sym_include, - ACTIONS(4172), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128575] = 6, + [125922] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4178), 1, - aux_sym_variable_definition_token2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3873), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3199), 1, + sym_on_stop_phrase, + STATE(3200), 1, + aux_sym_for_statement_repeat1, STATE(2755), 2, sym_comment, sym_include, - ACTIONS(4176), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128598] = 9, + [125951] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(2618), 1, - aux_sym_inherits_token1, - ACTIONS(4180), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3838), 1, anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(4468), 1, - sym_inherits, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3263), 1, + aux_sym_for_statement_repeat1, + STATE(3265), 1, + sym_on_stop_phrase, STATE(2756), 2, sym_comment, sym_include, - [128627] = 6, + [125980] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4184), 1, - aux_sym_variable_definition_token2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2549), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3202), 1, + sym_on_stop_phrase, + STATE(3203), 1, + aux_sym_for_statement_repeat1, STATE(2757), 2, sym_comment, sym_include, - ACTIONS(4182), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128650] = 7, + [126009] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3288), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3186), 1, anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3205), 1, + sym_on_stop_phrase, + STATE(3206), 1, + aux_sym_for_statement_repeat1, STATE(2758), 2, sym_comment, sym_include, - STATE(4107), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [128675] = 7, + [126038] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4054), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4058), 1, - aux_sym_on_error_phrase_token8, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(4165), 1, + aux_sym_data_relation_token2, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(3270), 1, + aux_sym_data_relation_repeat1, STATE(2759), 2, sym_comment, sym_include, - ACTIONS(4186), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [128700] = 9, + [126067] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2369), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3215), 1, - aux_sym_for_statement_repeat1, - STATE(3216), 1, - sym_on_stop_phrase, + ACTIONS(4169), 1, + aux_sym_variable_definition_token2, STATE(2760), 2, sym_comment, sym_include, - [128729] = 9, + ACTIONS(4167), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [126090] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2550), 1, + ACTIONS(2547), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3174), 1, + STATE(3208), 1, sym_on_stop_phrase, - STATE(3176), 1, + STATE(3210), 1, aux_sym_for_statement_repeat1, STATE(2761), 2, sym_comment, sym_include, - [128758] = 7, + [126119] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4192), 1, - aux_sym_on_error_phrase_token8, + ACTIONS(4173), 1, + aux_sym_variable_definition_token2, STATE(2762), 2, sym_comment, sym_include, - ACTIONS(4190), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [128783] = 9, + ACTIONS(4171), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [126142] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3816), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2543), 1, anon_sym_COLON, - STATE(2981), 1, - sym_on_error_phrase, - STATE(3341), 1, - sym_on_quit_phrase, - STATE(4179), 1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3212), 1, sym_on_stop_phrase, + STATE(3213), 1, + aux_sym_for_statement_repeat1, STATE(2763), 2, sym_comment, sym_include, - [128812] = 6, + [126171] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4196), 1, - aux_sym_variable_definition_token2, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4175), 1, + anon_sym_COLON, STATE(2764), 2, sym_comment, sym_include, - ACTIONS(4194), 4, + STATE(4132), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [126196] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4179), 1, + aux_sym_variable_definition_token2, + STATE(2765), 2, + sym_comment, + sym_include, + ACTIONS(4177), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [128835] = 9, + [126219] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3848), 1, + ACTIONS(2398), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3040), 1, - aux_sym_for_statement_repeat1, - STATE(3041), 1, + STATE(3216), 1, sym_on_stop_phrase, - STATE(2765), 2, + STATE(3217), 1, + aux_sym_for_statement_repeat1, + STATE(2766), 2, sym_comment, sym_include, - [128864] = 9, + [126248] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(3876), 1, + ACTIONS(3907), 1, anon_sym_COMMA, - ACTIONS(4198), 1, - anon_sym_RPAREN, - STATE(2), 1, + ACTIONS(4181), 1, + sym__terminator, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(3079), 1, + STATE(3272), 1, aux_sym_data_relation_repeat1, - STATE(2766), 2, + STATE(2767), 2, sym_comment, sym_include, - [128893] = 9, + [126277] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, + ACTIONS(4005), 1, sym_identifier, - ACTIONS(4200), 1, + ACTIONS(4183), 1, sym__terminator, - ACTIONS(4202), 1, + ACTIONS(4185), 1, anon_sym_NO_DASHERROR, - STATE(2887), 1, + STATE(2786), 1, aux_sym_assign_statement_repeat1, - STATE(3388), 1, + STATE(3367), 1, sym_assignment, - STATE(2767), 2, + STATE(2768), 2, sym_comment, sym_include, - [128922] = 6, + [126306] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4206), 1, - aux_sym_variable_definition_token2, - STATE(2768), 2, - sym_comment, - sym_include, - ACTIONS(4204), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128945] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4080), 1, - sym_identifier, - ACTIONS(4208), 1, - sym__terminator, - ACTIONS(4210), 1, - anon_sym_NO_DASHERROR, - STATE(2887), 1, - aux_sym_assign_statement_repeat1, - STATE(3388), 1, - sym_assignment, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3688), 1, + anon_sym_COLON, + STATE(2903), 1, + sym_on_error_phrase, + STATE(3473), 1, + sym_on_quit_phrase, + STATE(4495), 1, + sym_on_stop_phrase, STATE(2769), 2, sym_comment, sym_include, - [128974] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4080), 1, - sym_identifier, - ACTIONS(4212), 1, - sym__terminator, - ACTIONS(4214), 1, - anon_sym_NO_DASHERROR, - STATE(2788), 1, - aux_sym_assign_statement_repeat1, - STATE(3388), 1, - sym_assignment, - STATE(2770), 2, - sym_comment, - sym_include, - [129003] = 9, + [126335] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(3876), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4216), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(3168), 1, - aux_sym_data_relation_repeat1, - STATE(2771), 2, + ACTIONS(2541), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3220), 1, + sym_on_stop_phrase, + STATE(3222), 1, + aux_sym_for_statement_repeat1, + STATE(2770), 2, sym_comment, sym_include, - [129032] = 6, + [126364] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4220), 1, - aux_sym_variable_definition_token2, - STATE(2772), 2, + ACTIONS(4187), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4191), 1, + aux_sym_on_error_phrase_token8, + STATE(2771), 2, sym_comment, sym_include, - ACTIONS(4218), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129055] = 9, + ACTIONS(4189), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [126389] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2534), 1, - anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - STATE(3211), 1, - sym_on_stop_phrase, - STATE(3212), 1, - aux_sym_for_statement_repeat1, - STATE(2773), 2, + ACTIONS(3069), 1, + anon_sym_COLON, + STATE(2772), 2, sym_comment, sym_include, - [129084] = 9, + STATE(4484), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [126414] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(2618), 1, - aux_sym_inherits_token1, - ACTIONS(4222), 1, - anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(4428), 1, - sym_inherits, - STATE(2774), 2, + ACTIONS(4193), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4197), 1, + aux_sym_on_error_phrase_token8, + STATE(2773), 2, sym_comment, sym_include, - [129113] = 6, + ACTIONS(4195), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [126439] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4226), 1, + ACTIONS(4201), 1, aux_sym_variable_definition_token2, - STATE(2775), 2, + STATE(2774), 2, sym_comment, sym_include, - ACTIONS(4224), 4, + ACTIONS(4199), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [129136] = 7, + [126462] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4232), 1, - aux_sym_on_error_phrase_token8, - STATE(2776), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2342), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3227), 1, + aux_sym_for_statement_repeat1, + STATE(3228), 1, + sym_on_stop_phrase, + STATE(2775), 2, sym_comment, sym_include, - ACTIONS(4230), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [129161] = 7, + [126491] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4234), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4238), 1, - aux_sym_on_error_phrase_token8, - STATE(2777), 2, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3271), 1, + anon_sym_COLON, + STATE(2776), 2, sym_comment, sym_include, - ACTIONS(4236), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [129186] = 6, + STATE(4105), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [126516] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4242), 1, + ACTIONS(4205), 1, aux_sym_variable_definition_token2, - STATE(2778), 2, + STATE(2777), 2, sym_comment, sym_include, - ACTIONS(4240), 4, + ACTIONS(4203), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [129209] = 6, + [126539] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4246), 1, - aux_sym_variable_definition_token2, - STATE(2779), 2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2408), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3231), 1, + sym_on_stop_phrase, + STATE(3232), 1, + aux_sym_for_statement_repeat1, + STATE(2778), 2, sym_comment, sym_include, - ACTIONS(4244), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129232] = 9, + [126568] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4029), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4248), 1, + ACTIONS(4207), 1, anon_sym_COLON, - STATE(3084), 1, + STATE(2908), 1, + sym_on_error_phrase, + STATE(3247), 1, + sym_on_quit_phrase, + STATE(4074), 1, sym_on_stop_phrase, - STATE(3085), 1, - aux_sym_for_statement_repeat1, - STATE(2780), 2, + STATE(2779), 2, sym_comment, sym_include, - [129261] = 9, - ACTIONS(3), 1, + [126597] = 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(4080), 1, - sym_identifier, - ACTIONS(4250), 1, - sym__terminator, - ACTIONS(4252), 1, - anon_sym_NO_DASHERROR, - STATE(2769), 1, - aux_sym_assign_statement_repeat1, - STATE(3388), 1, - sym_assignment, + ACTIONS(4211), 1, + aux_sym_variable_definition_token2, + STATE(2780), 2, + sym_comment, + sym_include, + ACTIONS(4209), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [126620] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3259), 1, + anon_sym_COLON, STATE(2781), 2, sym_comment, sym_include, - [129290] = 9, + STATE(4079), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [126645] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(4254), 1, - anon_sym_RPAREN, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(3097), 1, - aux_sym_data_relation_repeat1, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3720), 1, + anon_sym_COLON, + STATE(2893), 1, + sym_on_error_phrase, + STATE(3456), 1, + sym_on_quit_phrase, + STATE(4452), 1, + sym_on_stop_phrase, STATE(2782), 2, sym_comment, sym_include, - [129319] = 9, + [126674] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2407), 1, - anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(3207), 1, + STATE(2978), 1, + sym_on_quit_phrase, + STATE(3593), 1, sym_on_stop_phrase, - STATE(3208), 1, - aux_sym_for_statement_repeat1, + ACTIONS(2440), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(2783), 2, sym_comment, sym_include, - [129348] = 7, + [126701] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3074), 1, + STATE(2884), 1, + sym_on_quit_phrase, + STATE(3900), 1, + sym_on_stop_phrase, + ACTIONS(3295), 2, + anon_sym_COMMA, anon_sym_COLON, STATE(2784), 2, sym_comment, sym_include, - STATE(4136), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [129373] = 6, + [126728] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4258), 1, - aux_sym_variable_definition_token2, + ACTIONS(4213), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4217), 1, + aux_sym_on_error_phrase_token8, STATE(2785), 2, sym_comment, sym_include, - ACTIONS(4256), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129396] = 7, - ACTIONS(59), 1, + ACTIONS(4215), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [126753] = 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(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4260), 1, - anon_sym_COLON, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4219), 1, + sym__terminator, + ACTIONS(4221), 1, + anon_sym_NO_DASHERROR, + STATE(2721), 1, + aux_sym_assign_statement_repeat1, + STATE(3367), 1, + sym_assignment, STATE(2786), 2, sym_comment, sym_include, - STATE(4134), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [129421] = 9, + [126782] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2532), 1, - anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3202), 1, + ACTIONS(4223), 1, + anon_sym_COLON, + STATE(3332), 1, sym_on_stop_phrase, - STATE(3203), 1, + STATE(3373), 1, aux_sym_for_statement_repeat1, STATE(2787), 2, sym_comment, sym_include, - [129450] = 9, - ACTIONS(3), 1, + [126811] = 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(4080), 1, - sym_identifier, - ACTIONS(4262), 1, - sym__terminator, - ACTIONS(4264), 1, - anon_sym_NO_DASHERROR, - STATE(2887), 1, - aux_sym_assign_statement_repeat1, - STATE(3388), 1, - sym_assignment, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2986), 1, + anon_sym_COLON, STATE(2788), 2, sym_comment, sym_include, - [129479] = 8, + STATE(4051), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [126836] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3733), 1, - anon_sym_DQUOTE, - ACTIONS(3735), 1, - anon_sym_SQUOTE, - STATE(2252), 1, - sym__string_literal, - STATE(6), 2, - sym_double_quoted_string, - sym_single_quoted_string, + ACTIONS(4225), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4229), 1, + aux_sym_on_error_phrase_token8, STATE(2789), 2, sym_comment, sym_include, - [129506] = 7, + ACTIONS(4227), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [126861] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3070), 1, + ACTIONS(3812), 1, anon_sym_COLON, + STATE(2902), 1, + sym_on_error_phrase, + STATE(3255), 1, + sym_on_quit_phrase, + STATE(4043), 1, + sym_on_stop_phrase, STATE(2790), 2, sym_comment, sym_include, - STATE(4211), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [129531] = 7, + [126890] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4266), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4270), 1, - aux_sym_on_error_phrase_token8, + ACTIONS(2954), 1, + anon_sym_COLON, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, STATE(2791), 2, sym_comment, sym_include, - ACTIONS(4268), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [129556] = 6, + STATE(4445), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [126915] = 9, 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_variable_definition_token2, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3205), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3052), 1, + aux_sym_for_statement_repeat1, + STATE(3053), 1, + sym_on_stop_phrase, STATE(2792), 2, sym_comment, sym_include, - ACTIONS(4272), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129579] = 5, + [126944] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2358), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3450), 1, + aux_sym_for_statement_repeat1, + STATE(3451), 1, + sym_on_stop_phrase, STATE(2793), 2, sym_comment, sym_include, - ACTIONS(4276), 5, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - aux_sym_query_definition_token3, - [129600] = 6, + [126973] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4280), 1, + ACTIONS(4233), 1, aux_sym_variable_definition_token2, STATE(2794), 2, sym_comment, sym_include, - ACTIONS(4278), 4, + ACTIONS(4231), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [129623] = 9, + [126996] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3866), 1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(2636), 1, + aux_sym_inherits_token1, + ACTIONS(4235), 1, anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3088), 1, - sym_on_stop_phrase, - STATE(3089), 1, - aux_sym_for_statement_repeat1, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(4375), 1, + sym_inherits, STATE(2795), 2, sym_comment, sym_include, - [129652] = 9, + [127025] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - anon_sym_COLON, - STATE(2990), 1, - sym_on_error_phrase, - STATE(3367), 1, - sym_on_quit_phrase, - STATE(4218), 1, - sym_on_stop_phrase, + ACTIONS(4239), 1, + aux_sym_variable_definition_token2, STATE(2796), 2, sym_comment, sym_include, - [129681] = 9, + ACTIONS(4237), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [127048] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2562), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3200), 1, - sym_on_stop_phrase, - STATE(3201), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4243), 1, + aux_sym_variable_definition_token2, STATE(2797), 2, sym_comment, sym_include, - [129710] = 7, + ACTIONS(4241), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [127071] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3049), 1, + ACTIONS(3037), 1, anon_sym_COLON, STATE(2798), 2, sym_comment, sym_include, - STATE(4099), 3, + STATE(4017), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [129735] = 9, + [127096] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2379), 1, - anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - STATE(3301), 1, - aux_sym_for_statement_repeat1, - STATE(3303), 1, - sym_on_stop_phrase, + ACTIONS(3273), 1, + anon_sym_COLON, STATE(2799), 2, sym_comment, sym_include, - [129764] = 9, + STATE(4402), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [127121] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4282), 1, - anon_sym_COLON, - STATE(3091), 1, - sym_on_stop_phrase, - STATE(3092), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4245), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4249), 1, + aux_sym_on_error_phrase_token8, STATE(2800), 2, sym_comment, sym_include, - [129793] = 9, - ACTIONS(3), 1, + ACTIONS(4247), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [127146] = 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(4080), 1, - sym_identifier, - ACTIONS(4284), 1, - sym__terminator, - ACTIONS(4286), 1, - anon_sym_NO_DASHERROR, - STATE(2887), 1, - aux_sym_assign_statement_repeat1, - STATE(3388), 1, - sym_assignment, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4251), 1, + anon_sym_COLON, + STATE(2881), 1, + sym_on_error_phrase, + STATE(3446), 1, + sym_on_quit_phrase, + STATE(4415), 1, + sym_on_stop_phrase, STATE(2801), 2, sym_comment, sym_include, - [129822] = 9, + [127175] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4029), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4288), 1, + ACTIONS(3802), 1, anon_sym_COLON, - STATE(3395), 1, + STATE(2899), 1, + sym_on_error_phrase, + STATE(3267), 1, + sym_on_quit_phrase, + STATE(4024), 1, sym_on_stop_phrase, - STATE(3396), 1, - aux_sym_for_statement_repeat1, STATE(2802), 2, sym_comment, sym_include, - [129851] = 6, + [127204] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4292), 1, - aux_sym_variable_definition_token2, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(4253), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(3339), 1, + aux_sym_data_relation_repeat1, STATE(2803), 2, sym_comment, sym_include, - ACTIONS(4290), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129874] = 8, + [127233] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2903), 1, - sym_on_quit_phrase, - STATE(3778), 1, - sym_on_stop_phrase, - ACTIONS(2459), 2, + ACTIONS(2136), 1, anon_sym_COMMA, + ACTIONS(2400), 1, anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3438), 1, + sym_on_stop_phrase, + STATE(3440), 1, + aux_sym_for_statement_repeat1, STATE(2804), 2, sym_comment, sym_include, - [129901] = 9, + [127262] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3948), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3401), 1, - sym_on_stop_phrase, - STATE(3402), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4257), 1, + aux_sym_variable_definition_token2, STATE(2805), 2, sym_comment, sym_include, - [129930] = 9, + ACTIONS(4255), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [127285] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4294), 1, - anon_sym_COLON, - STATE(3403), 1, - sym_on_stop_phrase, - STATE(3404), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4127), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4131), 1, + aux_sym_on_error_phrase_token8, STATE(2806), 2, sym_comment, sym_include, - [129959] = 9, + ACTIONS(4259), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [127310] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3180), 1, - anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - STATE(3150), 1, - sym_on_stop_phrase, - STATE(3154), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3249), 1, + anon_sym_COLON, STATE(2807), 2, sym_comment, sym_include, - [129988] = 9, + STATE(4368), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [127335] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3211), 1, - anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3408), 1, + ACTIONS(4261), 1, + anon_sym_COLON, + STATE(3281), 1, sym_on_stop_phrase, - STATE(3409), 1, + STATE(3282), 1, aux_sym_for_statement_repeat1, STATE(2808), 2, sym_comment, sym_include, - [130017] = 9, + [127364] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3193), 1, + ACTIONS(3836), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3093), 1, + STATE(3285), 1, sym_on_stop_phrase, - STATE(3094), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, STATE(2809), 2, sym_comment, sym_include, - [130046] = 5, + [127393] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4263), 1, + anon_sym_COLON, + STATE(3287), 1, + sym_on_stop_phrase, + STATE(3288), 1, + aux_sym_for_statement_repeat1, STATE(2810), 2, sym_comment, sym_include, - ACTIONS(3719), 5, - sym__terminator, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - [130067] = 9, + [127422] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3178), 1, + ACTIONS(3182), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3196), 1, + STATE(3290), 1, sym_on_stop_phrase, - STATE(3197), 1, + STATE(3292), 1, aux_sym_for_statement_repeat1, STATE(2811), 2, sym_comment, sym_include, - [130096] = 9, + [127451] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3940), 1, + ACTIONS(3834), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3411), 1, + STATE(3294), 1, sym_on_stop_phrase, - STATE(3412), 1, + STATE(3295), 1, aux_sym_for_statement_repeat1, STATE(2812), 2, sym_comment, sym_include, - [130125] = 9, + [127480] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2566), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3193), 1, - sym_on_stop_phrase, - STATE(3194), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4267), 1, + aux_sym_variable_definition_token2, STATE(2813), 2, sym_comment, sym_include, - [130154] = 9, + ACTIONS(4265), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [127503] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2540), 1, + ACTIONS(2545), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3414), 1, + STATE(3298), 1, sym_on_stop_phrase, - STATE(3415), 1, + STATE(3299), 1, aux_sym_for_statement_repeat1, STATE(2814), 2, sym_comment, sym_include, - [130183] = 9, + [127532] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3938), 1, + ACTIONS(3133), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3189), 1, + STATE(3301), 1, sym_on_stop_phrase, - STATE(3191), 1, + STATE(3302), 1, aux_sym_for_statement_repeat1, STATE(2815), 2, sym_comment, sym_include, - [130212] = 9, - ACTIONS(59), 1, + [127561] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(3191), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3416), 1, - sym_on_stop_phrase, - STATE(3417), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4269), 1, + sym_identifier, + STATE(4156), 1, + sym_access_tuning, STATE(2816), 2, sym_comment, sym_include, - [130241] = 9, + ACTIONS(4271), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + [127586] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3160), 1, + ACTIONS(2531), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3187), 1, + STATE(3304), 1, sym_on_stop_phrase, - STATE(3188), 1, + STATE(3305), 1, aux_sym_for_statement_repeat1, STATE(2817), 2, sym_comment, sym_include, - [130270] = 9, + [127615] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2542), 1, + ACTIONS(2517), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3421), 1, + STATE(3306), 1, sym_on_stop_phrase, - STATE(3422), 1, + STATE(3307), 1, aux_sym_for_statement_repeat1, STATE(2818), 2, sym_comment, sym_include, - [130299] = 9, + [127644] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4029), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4296), 1, + ACTIONS(4273), 1, anon_sym_COLON, - STATE(3184), 1, - sym_on_stop_phrase, - STATE(3185), 1, - aux_sym_for_statement_repeat1, STATE(2819), 2, sym_comment, sym_include, - [130328] = 9, + STATE(4022), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [127669] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3182), 1, - sym_on_stop_phrase, - STATE(3183), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4277), 1, + aux_sym_variable_definition_token2, STATE(2820), 2, sym_comment, sym_include, - [130357] = 6, - ACTIONS(3), 1, + ACTIONS(4275), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [127692] = 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(4300), 1, - aux_sym_widget_field_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2390), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3312), 1, + sym_on_stop_phrase, + STATE(3313), 1, + aux_sym_for_statement_repeat1, STATE(2821), 2, sym_comment, sym_include, - ACTIONS(4298), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [130380] = 9, + [127721] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2544), 1, + ACTIONS(2384), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3427), 1, - sym_on_stop_phrase, - STATE(3428), 1, + STATE(3431), 1, aux_sym_for_statement_repeat1, + STATE(3432), 1, + sym_on_stop_phrase, STATE(2822), 2, sym_comment, sym_include, - [130409] = 7, + [127750] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4302), 1, - anon_sym_COLON, + ACTIONS(4281), 1, + aux_sym_variable_definition_token2, STATE(2823), 2, sym_comment, sym_include, - STATE(4318), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [130434] = 9, + ACTIONS(4279), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [127773] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4304), 1, - anon_sym_COLON, - STATE(2906), 1, - sym_on_error_phrase, - STATE(3488), 1, + STATE(2877), 1, sym_on_quit_phrase, - STATE(4460), 1, + STATE(3816), 1, sym_on_stop_phrase, + ACTIONS(4283), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(2824), 2, sym_comment, sym_include, - [130463] = 9, + [127800] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2411), 1, + ACTIONS(2535), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3432), 1, + STATE(3314), 1, sym_on_stop_phrase, - STATE(3433), 1, + STATE(3315), 1, aux_sym_for_statement_repeat1, STATE(2825), 2, sym_comment, sym_include, - [130492] = 7, + [127829] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3026), 1, - anon_sym_COLON, + ACTIONS(4287), 1, + aux_sym_variable_definition_token2, STATE(2826), 2, sym_comment, sym_include, - STATE(4172), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [130517] = 9, + ACTIONS(4285), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [127852] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4306), 1, - anon_sym_COLON, - STATE(3178), 1, - sym_on_stop_phrase, - STATE(3180), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4291), 1, + aux_sym_variable_definition_token2, STATE(2827), 2, sym_comment, sym_include, - [130546] = 9, + ACTIONS(4289), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [127875] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2548), 1, + ACTIONS(2366), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3440), 1, - sym_on_stop_phrase, - STATE(3441), 1, + STATE(3319), 1, aux_sym_for_statement_repeat1, + STATE(3321), 1, + sym_on_stop_phrase, STATE(2828), 2, sym_comment, sym_include, - [130575] = 9, + [127904] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3774), 1, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(2899), 1, - sym_on_error_phrase, - STATE(3497), 1, - sym_on_quit_phrase, - STATE(4506), 1, - sym_on_stop_phrase, STATE(2829), 2, sym_comment, sym_include, - [130604] = 9, + STATE(4170), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [127929] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3870), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3095), 1, - sym_on_stop_phrase, - STATE(3096), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4295), 1, + aux_sym_variable_definition_token2, STATE(2830), 2, sym_comment, sym_include, - [130633] = 9, + ACTIONS(4293), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [127952] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2554), 1, + ACTIONS(2388), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3131), 1, + STATE(3324), 1, sym_on_stop_phrase, - STATE(3135), 1, + STATE(3325), 1, aux_sym_for_statement_repeat1, STATE(2831), 2, sym_comment, sym_include, - [130662] = 8, + [127981] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(3001), 1, - sym_on_quit_phrase, - STATE(3530), 1, - sym_on_stop_phrase, - ACTIONS(2570), 2, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4299), 1, + aux_sym_variable_definition_token2, STATE(2832), 2, sym_comment, sym_include, - [130689] = 5, + ACTIONS(4297), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128004] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(4303), 1, + aux_sym_variable_definition_token2, STATE(2833), 2, sym_comment, sym_include, - 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, - [130710] = 9, + ACTIONS(4301), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128027] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3687), 1, + ACTIONS(4305), 1, anon_sym_COLON, - STATE(2989), 1, + STATE(2882), 1, sym_on_error_phrase, - STATE(3289), 1, + STATE(3331), 1, sym_on_quit_phrase, - STATE(4138), 1, + STATE(4200), 1, sym_on_stop_phrase, STATE(2834), 2, sym_comment, sym_include, - [130739] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3673), 1, - anon_sym_COLON, - STATE(2908), 1, - sym_on_error_phrase, - STATE(3163), 1, - sym_on_quit_phrase, - STATE(4214), 1, - sym_on_stop_phrase, - STATE(2835), 2, - sym_comment, - sym_include, - [130768] = 9, + [128056] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4310), 1, + ACTIONS(3243), 1, anon_sym_COLON, - STATE(2913), 1, - sym_on_error_phrase, - STATE(3137), 1, - sym_on_quit_phrase, - STATE(4279), 1, - sym_on_stop_phrase, - STATE(2836), 2, + STATE(2835), 2, sym_comment, sym_include, - [130797] = 9, + STATE(4195), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [128081] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2558), 1, + ACTIONS(2521), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3099), 1, + STATE(3424), 1, sym_on_stop_phrase, - STATE(3100), 1, + STATE(3426), 1, aux_sym_for_statement_repeat1, + STATE(2836), 2, + sym_comment, + sym_include, + [128110] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4309), 1, + aux_sym_variable_definition_token2, STATE(2837), 2, sym_comment, sym_include, - [130826] = 7, + ACTIONS(4307), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128133] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4316), 1, - aux_sym_on_error_phrase_token8, + ACTIONS(4313), 1, + aux_sym_variable_definition_token2, STATE(2838), 2, sym_comment, sym_include, - ACTIONS(4314), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [130851] = 9, + ACTIONS(4311), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128156] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2377), 1, + ACTIONS(2376), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3447), 1, + STATE(3336), 1, aux_sym_for_statement_repeat1, - STATE(3449), 1, + STATE(3337), 1, sym_on_stop_phrase, STATE(2839), 2, sym_comment, sym_include, - [130880] = 6, + [128185] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4320), 1, + ACTIONS(4317), 1, aux_sym_variable_definition_token2, STATE(2840), 2, sym_comment, sym_include, - ACTIONS(4318), 4, + ACTIONS(4315), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [130903] = 7, + [128208] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2140), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3004), 1, + ACTIONS(3762), 1, anon_sym_COLON, + STATE(2976), 1, + sym_on_error_phrase, + STATE(3095), 1, + sym_on_quit_phrase, + STATE(4338), 1, + sym_on_stop_phrase, STATE(2841), 2, sym_comment, sym_include, - STATE(4222), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [130928] = 6, + [128237] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4324), 1, + ACTIONS(4321), 1, aux_sym_variable_definition_token2, STATE(2842), 2, sym_comment, sym_include, - ACTIONS(4322), 4, + ACTIONS(4319), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [130951] = 9, + [128260] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3162), 1, - anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - STATE(3102), 1, - sym_on_stop_phrase, - STATE(3103), 1, - aux_sym_for_statement_repeat1, + ACTIONS(2984), 1, + anon_sym_COLON, STATE(2843), 2, sym_comment, sym_include, - [130980] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4328), 1, - aux_sym_variable_definition_token2, - STATE(2844), 2, - sym_comment, - sym_include, - ACTIONS(4326), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [131003] = 7, + STATE(4223), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [128285] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4330), 1, + ACTIONS(4323), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(4334), 1, + ACTIONS(4327), 1, aux_sym_on_error_phrase_token8, - STATE(2845), 2, + STATE(2844), 2, sym_comment, sym_include, - ACTIONS(4332), 3, + ACTIONS(4325), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [131028] = 6, + [128310] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4338), 1, + ACTIONS(4331), 1, aux_sym_variable_definition_token2, - STATE(2846), 2, + STATE(2845), 2, sym_comment, sym_include, - ACTIONS(4336), 4, + ACTIONS(4329), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [131051] = 9, + [128333] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(4340), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(3114), 1, - aux_sym_data_relation_repeat1, - STATE(2847), 2, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3766), 1, + anon_sym_COLON, + STATE(2879), 1, + sym_on_error_phrase, + STATE(3344), 1, + sym_on_quit_phrase, + STATE(4234), 1, + sym_on_stop_phrase, + STATE(2846), 2, sym_comment, sym_include, - [131080] = 9, + [128362] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2528), 1, + ACTIONS(2406), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3105), 1, + STATE(3420), 1, sym_on_stop_phrase, - STATE(3107), 1, + STATE(3421), 1, aux_sym_for_statement_repeat1, + STATE(2847), 2, + sym_comment, + sym_include, + [128391] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(4333), 1, + anon_sym_RPAREN, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(3442), 1, + aux_sym_data_relation_repeat1, STATE(2848), 2, sym_comment, sym_include, - [131109] = 9, + [128420] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(3907), 1, anon_sym_COMMA, - ACTIONS(2564), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3109), 1, - sym_on_stop_phrase, - STATE(3110), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4335), 1, + anon_sym_RPAREN, + STATE(333), 1, + aux_sym_qualified_name_repeat1, + STATE(3429), 1, + aux_sym_data_relation_repeat1, STATE(2849), 2, sym_comment, sym_include, - [131138] = 7, + [128449] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4342), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4346), 1, - aux_sym_on_error_phrase_token8, + ACTIONS(2958), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2974), 1, + anon_sym_COLON, STATE(2850), 2, sym_comment, sym_include, - ACTIONS(4344), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [131163] = 5, + STATE(4263), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [128474] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(4337), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4341), 1, + aux_sym_on_error_phrase_token8, STATE(2851), 2, sym_comment, sym_include, - ACTIONS(4348), 5, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [131184] = 9, - ACTIONS(59), 1, + ACTIONS(4339), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [128499] = 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(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3685), 1, - anon_sym_COLON, - STATE(2901), 1, - sym_on_error_phrase, - STATE(3151), 1, - sym_on_quit_phrase, - STATE(4248), 1, - sym_on_stop_phrase, + ACTIONS(4345), 1, + aux_sym_widget_field_token1, STATE(2852), 2, sym_comment, sym_include, - [131213] = 7, + ACTIONS(4343), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [128522] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4350), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4354), 1, - aux_sym_on_error_phrase_token8, + ACTIONS(2140), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3764), 1, + anon_sym_COLON, + STATE(2876), 1, + sym_on_error_phrase, + STATE(3354), 1, + sym_on_quit_phrase, + STATE(4271), 1, + sym_on_stop_phrase, STATE(2853), 2, sym_comment, sym_include, - ACTIONS(4352), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [131238] = 6, + [128551] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4358), 1, + ACTIONS(4349), 1, aux_sym_variable_definition_token2, STATE(2854), 2, sym_comment, sym_include, - ACTIONS(4356), 4, + ACTIONS(4347), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [131261] = 9, + [128574] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2371), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3495), 1, - aux_sym_for_statement_repeat1, - STATE(3496), 1, - sym_on_stop_phrase, + ACTIONS(4353), 1, + aux_sym_variable_definition_token2, STATE(2855), 2, sym_comment, sym_include, - [131290] = 7, + ACTIONS(4351), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128597] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(2958), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3030), 1, + ACTIONS(4355), 1, anon_sym_COLON, STATE(2856), 2, sym_comment, sym_include, - STATE(4256), 3, + STATE(4347), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [131315] = 7, + [128622] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4360), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2523), 1, anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3416), 1, + sym_on_stop_phrase, + STATE(3418), 1, + aux_sym_for_statement_repeat1, STATE(2857), 2, sym_comment, sym_include, - STATE(4337), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [131340] = 5, + [128651] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4357), 1, + anon_sym_COLON, + STATE(3377), 1, + sym_on_stop_phrase, + STATE(3379), 1, + aux_sym_for_statement_repeat1, STATE(2858), 2, sym_comment, sym_include, - ACTIONS(4362), 5, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - aux_sym_query_definition_token3, - [131361] = 7, + [128680] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3344), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3901), 1, anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3381), 1, + sym_on_stop_phrase, + STATE(3382), 1, + aux_sym_for_statement_repeat1, STATE(2859), 2, sym_comment, sym_include, - STATE(4350), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [131386] = 9, + [128709] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(3876), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4364), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(3025), 1, - aux_sym_data_relation_repeat1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4359), 1, + anon_sym_COLON, + STATE(3383), 1, + sym_on_stop_phrase, + STATE(3384), 1, + aux_sym_for_statement_repeat1, STATE(2860), 2, sym_comment, sym_include, - [131415] = 9, + [128738] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2385), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3254), 1, - aux_sym_for_statement_repeat1, - STATE(3255), 1, - sym_on_stop_phrase, + ACTIONS(4363), 1, + aux_sym_variable_definition_token2, STATE(2861), 2, sym_comment, sym_include, - [131444] = 9, + ACTIONS(4361), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128761] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2425), 1, + ACTIONS(3235), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3456), 1, + STATE(3386), 1, sym_on_stop_phrase, - STATE(3457), 1, + STATE(3388), 1, aux_sym_for_statement_repeat1, STATE(2862), 2, sym_comment, sym_include, - [131473] = 7, - ACTIONS(59), 1, + [128790] = 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(4368), 1, - aux_sym_case_when_branch_token1, - STATE(3405), 1, - sym_case_when_branch, - ACTIONS(4366), 2, - aux_sym__block_terminator_token1, - aux_sym_case_otherwise_branch_token1, + ACTIONS(4367), 1, + aux_sym_input_expression_token2, + STATE(3215), 1, + sym_widget_phrase, + ACTIONS(4365), 2, + sym_identifier, + aux_sym_do_block_token1, STATE(2863), 3, sym_comment, sym_include, - aux_sym_case_body_repeat1, - [131498] = 9, + aux_sym_on_statement_repeat2, + [128815] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4371), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3903), 1, anon_sym_COLON, - STATE(2925), 1, - sym_on_error_phrase, - STATE(3473), 1, - sym_on_quit_phrase, - STATE(4372), 1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3389), 1, sym_on_stop_phrase, + STATE(3395), 1, + aux_sym_for_statement_repeat1, STATE(2864), 2, sym_comment, sym_include, - [131527] = 7, + [128844] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3284), 1, - anon_sym_COLON, + ACTIONS(4372), 1, + aux_sym_variable_definition_token2, STATE(2865), 2, sym_comment, sym_include, - STATE(4103), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [131552] = 9, + ACTIONS(4370), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128867] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2347), 1, + ACTIONS(2527), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3141), 1, - aux_sym_for_statement_repeat1, - STATE(3142), 1, + STATE(3397), 1, sym_on_stop_phrase, + STATE(3398), 1, + aux_sym_for_statement_repeat1, STATE(2866), 2, sym_comment, sym_include, - [131581] = 9, - ACTIONS(3), 1, + [128896] = 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(4080), 1, - sym_identifier, - ACTIONS(4373), 1, - sym__terminator, - ACTIONS(4375), 1, - anon_sym_NO_DASHERROR, - STATE(2767), 1, - aux_sym_assign_statement_repeat1, - STATE(3388), 1, - sym_assignment, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3237), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3401), 1, + sym_on_stop_phrase, + STATE(3405), 1, + aux_sym_for_statement_repeat1, STATE(2867), 2, sym_comment, sym_include, - [131610] = 8, + [128925] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(2924), 1, - sym_on_quit_phrase, - STATE(3690), 1, - sym_on_stop_phrase, - ACTIONS(2572), 2, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4376), 1, + aux_sym_variable_definition_token2, STATE(2868), 2, sym_comment, sym_include, - [131637] = 7, + ACTIONS(4374), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128948] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3338), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2525), 1, anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3406), 1, + sym_on_stop_phrase, + STATE(3408), 1, + aux_sym_for_statement_repeat1, STATE(2869), 2, sym_comment, sym_include, - STATE(4367), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [131662] = 9, + [128977] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3904), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3098), 1, - sym_on_stop_phrase, - STATE(3101), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4378), 1, + aux_sym_using_statement_token2, + ACTIONS(4380), 1, + aux_sym_stream_definition_token1, + ACTIONS(4382), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4384), 1, + aux_sym_input_close_statement_token2, STATE(2870), 2, sym_comment, sym_include, - [131691] = 7, + [129003] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2959), 1, - anon_sym_COLON, - ACTIONS(2963), 1, - aux_sym_on_error_phrase_token1, + ACTIONS(4386), 1, + aux_sym_stream_definition_token1, + ACTIONS(4388), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4390), 1, + aux_sym_input_close_statement_token2, + ACTIONS(4392), 1, + aux_sym_output_stream_statement_token1, STATE(2871), 2, sym_comment, sym_include, - STATE(4489), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [131716] = 9, + [129029] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2381), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3475), 1, - aux_sym_for_statement_repeat1, - STATE(3477), 1, - sym_on_stop_phrase, + ACTIONS(4394), 1, + aux_sym_procedure_parameter_definition_token1, STATE(2872), 2, sym_comment, sym_include, - [131745] = 6, - ACTIONS(59), 1, + ACTIONS(4396), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [129051] = 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(4379), 1, - aux_sym_variable_definition_token2, + ACTIONS(217), 1, + sym_identifier, STATE(2873), 2, sym_comment, sym_include, - ACTIONS(4377), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [131768] = 9, + ACTIONS(215), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [129071] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2145), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3701), 1, + ACTIONS(3764), 1, anon_sym_COLON, - STATE(2902), 1, - sym_on_error_phrase, - STATE(3483), 1, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(3354), 1, sym_on_quit_phrase, - STATE(4443), 1, + STATE(4271), 1, sym_on_stop_phrase, STATE(2874), 2, sym_comment, sym_include, - [131797] = 7, - ACTIONS(59), 1, + [129097] = 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(2963), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3268), 1, - anon_sym_COLON, + ACTIONS(4398), 1, + sym_identifier, + STATE(286), 1, + sym_qualified_name, + ACTIONS(4400), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, STATE(2875), 2, sym_comment, sym_include, - STATE(4284), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [131822] = 9, + [129121] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2560), 1, + ACTIONS(3766), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(3115), 1, + STATE(3344), 1, + sym_on_quit_phrase, + STATE(4234), 1, sym_on_stop_phrase, - STATE(3116), 1, - aux_sym_for_statement_repeat1, STATE(2876), 2, sym_comment, sym_include, - [131851] = 9, + [129147] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2413), 1, - anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3124), 1, + STATE(3714), 1, sym_on_stop_phrase, - STATE(3125), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4402), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(2877), 2, sym_comment, sym_include, - [131880] = 6, + [129171] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4383), 1, - aux_sym_variable_definition_token2, + ACTIONS(3762), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(3095), 1, + sym_on_quit_phrase, + STATE(4338), 1, + sym_on_stop_phrase, STATE(2878), 2, sym_comment, sym_include, - ACTIONS(4381), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [131903] = 7, + [129197] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3296), 1, + ACTIONS(4305), 1, anon_sym_COLON, + STATE(3331), 1, + sym_on_quit_phrase, + STATE(4200), 1, + sym_on_stop_phrase, STATE(2879), 2, sym_comment, sym_include, - STATE(4310), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [131928] = 9, - ACTIONS(59), 1, + [129223] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(2409), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3297), 1, - sym_on_stop_phrase, - STATE(3298), 1, - aux_sym_for_statement_repeat1, + ACTIONS(185), 1, + sym_identifier, STATE(2880), 2, sym_comment, sym_include, - [131957] = 9, + ACTIONS(183), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [129243] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2405), 1, - anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(3111), 1, + ACTIONS(4404), 1, + anon_sym_COLON, + STATE(3427), 1, + sym_on_quit_phrase, + STATE(4369), 1, sym_on_stop_phrase, - STATE(3112), 1, - aux_sym_for_statement_repeat1, STATE(2881), 2, sym_comment, sym_include, - [131986] = 7, + [129269] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3110), 1, + ACTIONS(4406), 1, anon_sym_COLON, - STATE(2882), 2, - sym_comment, - sym_include, - STATE(4424), 3, - sym_on_error_phrase, - sym_on_stop_phrase, + STATE(3316), 1, sym_on_quit_phrase, - [132011] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3236), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3054), 1, + STATE(4171), 1, sym_on_stop_phrase, - STATE(3281), 1, - aux_sym_for_statement_repeat1, - STATE(2883), 2, + STATE(2882), 2, sym_comment, sym_include, - [132040] = 7, + [129295] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4330), 1, + ACTIONS(4394), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(4334), 1, - aux_sym_on_error_phrase_token8, - STATE(2884), 2, + STATE(2883), 2, sym_comment, sym_include, - ACTIONS(4385), 3, + ACTIONS(4408), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [132065] = 6, + [129317] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4389), 1, - aux_sym_variable_definition_token2, - STATE(2885), 2, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3816), 1, + sym_on_stop_phrase, + ACTIONS(4283), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2884), 2, sym_comment, sym_include, - ACTIONS(4387), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [132088] = 9, + [129341] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2383), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3121), 1, - aux_sym_for_statement_repeat1, - STATE(3122), 1, - sym_on_stop_phrase, - STATE(2886), 2, - sym_comment, - sym_include, - [132117] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4391), 1, - sym_identifier, - STATE(3388), 1, - sym_assignment, - ACTIONS(4394), 2, - sym__terminator, - anon_sym_NO_DASHERROR, - STATE(2887), 3, + ACTIONS(4410), 1, + aux_sym_using_statement_token2, + ACTIONS(4412), 1, + aux_sym_stream_definition_token1, + ACTIONS(4414), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4416), 1, + aux_sym_input_close_statement_token2, + STATE(2885), 2, sym_comment, sym_include, - aux_sym_assign_statement_repeat1, - [132142] = 7, + [129367] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4396), 1, - sym_identifier, - STATE(278), 1, - sym_qualified_name, - ACTIONS(4398), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(2888), 2, + ACTIONS(4421), 1, + anon_sym_SQUOTE, + ACTIONS(4418), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(2886), 3, + sym_comment, + sym_include, + aux_sym_single_quoted_string_repeat1, + [129389] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(2887), 2, sym_comment, sym_include, - [132166] = 7, + ACTIONS(4423), 4, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + [129409] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4400), 1, + ACTIONS(4425), 1, anon_sym_DQUOTE, - STATE(2972), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, + ACTIONS(4427), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, + STATE(2888), 3, + sym_comment, + sym_include, + aux_sym_double_quoted_string_repeat1, + [129431] = 8, + 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_stream_definition_token1, + ACTIONS(4432), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4434), 1, + aux_sym_input_close_statement_token2, + ACTIONS(4436), 1, + aux_sym_output_stream_statement_token1, STATE(2889), 2, sym_comment, sym_include, - [132190] = 5, - ACTIONS(3), 1, + [129457] = 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(3802), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(3267), 1, + sym_on_quit_phrase, + STATE(4024), 1, + sym_on_stop_phrase, STATE(2890), 2, sym_comment, sym_include, - ACTIONS(3894), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [132210] = 6, - ACTIONS(3), 1, + [129483] = 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(4404), 1, - sym_identifier, + ACTIONS(4438), 1, + aux_sym_procedure_parameter_definition_token1, STATE(2891), 2, sym_comment, sym_include, - ACTIONS(4406), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [132232] = 5, + ACTIONS(4440), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [129505] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(4442), 1, + sym_identifier, + STATE(276), 1, + sym_qualified_name, + ACTIONS(4444), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, STATE(2892), 2, sym_comment, sym_include, - ACTIONS(3977), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [132252] = 7, - ACTIONS(3), 1, + [129529] = 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(4410), 1, - anon_sym_SQUOTE, - STATE(2984), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4408), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4251), 1, + anon_sym_COLON, + STATE(3446), 1, + sym_on_quit_phrase, + STATE(4415), 1, + sym_on_stop_phrase, STATE(2893), 2, sym_comment, sym_include, - [132276] = 7, + [129555] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3638), 1, - sym_on_stop_phrase, - ACTIONS(4412), 2, - anon_sym_COMMA, - anon_sym_COLON, STATE(2894), 2, sym_comment, sym_include, - [132300] = 6, + ACTIONS(4446), 4, + sym__terminator, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [129575] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3584), 1, - sym_for_phrase, STATE(2895), 2, sym_comment, sym_include, - ACTIONS(4414), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [132322] = 5, + ACTIONS(4448), 4, + sym__terminator, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [129595] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(4452), 1, + anon_sym_SQUOTE, + STATE(2886), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4450), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, STATE(2896), 2, sym_comment, sym_include, - ACTIONS(3981), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [132342] = 6, - ACTIONS(59), 1, + [129619] = 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(4416), 1, - aux_sym_procedure_parameter_definition_token1, + ACTIONS(4454), 1, + anon_sym_DQUOTE, + STATE(2888), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4456), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, STATE(2897), 2, sym_comment, sym_include, - ACTIONS(4418), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [132364] = 8, + [129643] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3687), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(3289), 1, - sym_on_quit_phrase, - STATE(4138), 1, - sym_on_stop_phrase, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4458), 1, + sym__terminator, + ACTIONS(4460), 1, + aux_sym_using_statement_token2, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(2898), 2, sym_comment, sym_include, - [132390] = 8, + [129669] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3701), 1, + ACTIONS(3812), 1, anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(3483), 1, + STATE(3255), 1, sym_on_quit_phrase, - STATE(4443), 1, + STATE(4043), 1, sym_on_stop_phrase, STATE(2899), 2, sym_comment, sym_include, - [132416] = 5, + [129695] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4420), 1, - sym_identifier, + ACTIONS(7), 1, + anon_sym_LBRACE, STATE(2900), 2, sym_comment, sym_include, - ACTIONS(4422), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [132436] = 8, + ACTIONS(4462), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [129715] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3844), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4310), 1, - anon_sym_COLON, - STATE(3137), 1, - sym_on_quit_phrase, - STATE(4279), 1, + STATE(3900), 1, sym_on_stop_phrase, + ACTIONS(3295), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(2901), 2, sym_comment, sym_include, - [132462] = 8, + [129739] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4371), 1, + ACTIONS(4207), 1, anon_sym_COLON, - STATE(3473), 1, + STATE(3247), 1, sym_on_quit_phrase, - STATE(4372), 1, + STATE(4074), 1, sym_on_stop_phrase, STATE(2902), 2, sym_comment, sym_include, - [132488] = 7, + [129765] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(3720), 1, + anon_sym_COLON, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(3690), 1, + STATE(3456), 1, + sym_on_quit_phrase, + STATE(4452), 1, sym_on_stop_phrase, - ACTIONS(2572), 2, - anon_sym_COMMA, - anon_sym_COLON, STATE(2903), 2, sym_comment, sym_include, - [132512] = 5, - ACTIONS(3), 1, + [129791] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(88), 1, - sym_identifier, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3593), 1, + sym_on_stop_phrase, + ACTIONS(2440), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(2904), 2, sym_comment, sym_include, - ACTIONS(86), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [132532] = 8, - ACTIONS(59), 1, + [129815] = 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(3876), 1, - anon_sym_COMMA, - ACTIONS(3878), 1, - aux_sym_data_relation_token1, - STATE(2561), 1, - aux_sym_data_relation_repeat1, - STATE(4643), 1, - sym_data_relation, + ACTIONS(4464), 1, + sym_identifier, + STATE(280), 1, + sym_qualified_name, + ACTIONS(4466), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, STATE(2905), 2, sym_comment, sym_include, - [132558] = 8, - ACTIONS(59), 1, + [129839] = 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(3844), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4424), 1, - anon_sym_COLON, - STATE(3253), 1, - sym_on_quit_phrase, - STATE(4121), 1, - sym_on_stop_phrase, + ACTIONS(4468), 1, + anon_sym_SQUOTE, + STATE(2896), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4450), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, STATE(2906), 2, sym_comment, sym_include, - [132584] = 8, + [129863] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4426), 1, - sym_identifier, - ACTIONS(4428), 1, - sym__terminator, - ACTIONS(4430), 1, - aux_sym_query_definition_token1, - STATE(3117), 1, - sym_qualified_name, + ACTIONS(4470), 1, + anon_sym_DQUOTE, + STATE(2897), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4456), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, STATE(2907), 2, sym_comment, sym_include, - [132610] = 8, + [129887] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3685), 1, - anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(3151), 1, + ACTIONS(4472), 1, + anon_sym_COLON, + STATE(3223), 1, sym_on_quit_phrase, - STATE(4248), 1, + STATE(4104), 1, sym_on_stop_phrase, STATE(2908), 2, sym_comment, sym_include, - [132636] = 7, - ACTIONS(3), 1, + [129913] = 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(4432), 1, - anon_sym_DQUOTE, - STATE(2967), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, + ACTIONS(3688), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(3473), 1, + sym_on_quit_phrase, + STATE(4495), 1, + sym_on_stop_phrase, STATE(2909), 2, sym_comment, sym_include, - [132660] = 8, + [129939] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, + ACTIONS(3907), 1, anon_sym_COMMA, - ACTIONS(3878), 1, + ACTIONS(3909), 1, aux_sym_data_relation_token1, - STATE(3012), 1, + STATE(2579), 1, aux_sym_data_relation_repeat1, - STATE(4643), 1, + STATE(4047), 1, sym_data_relation, STATE(2910), 2, sym_comment, sym_include, - [132686] = 7, - ACTIONS(3), 1, + [129965] = 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(4434), 1, - anon_sym_DQUOTE, - STATE(2923), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, + ACTIONS(4474), 1, + aux_sym_using_statement_token2, + ACTIONS(4476), 1, + aux_sym_stream_definition_token1, + ACTIONS(4478), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4480), 1, + aux_sym_input_close_statement_token2, STATE(2911), 2, sym_comment, sym_include, - [132710] = 5, - ACTIONS(3), 1, + [129991] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(193), 1, - sym_identifier, + ACTIONS(65), 1, + anon_sym_LBRACE, STATE(2912), 2, sym_comment, sym_include, - ACTIONS(191), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [132730] = 8, + ACTIONS(4482), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [130011] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4436), 1, - anon_sym_COLON, - STATE(3118), 1, - sym_on_quit_phrase, - STATE(4309), 1, - sym_on_stop_phrase, + ACTIONS(4484), 1, + aux_sym_stream_definition_token1, + ACTIONS(4486), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4488), 1, + aux_sym_input_close_statement_token2, + ACTIONS(4490), 1, + aux_sym_output_stream_statement_token1, STATE(2913), 2, sym_comment, sym_include, - [132756] = 8, + [130037] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(3878), 1, - aux_sym_data_relation_token1, - STATE(2905), 1, - aux_sym_data_relation_repeat1, - STATE(4304), 1, - sym_data_relation, + ACTIONS(4492), 1, + aux_sym_using_statement_token2, + ACTIONS(4494), 1, + aux_sym_stream_definition_token1, + ACTIONS(4496), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4498), 1, + aux_sym_input_close_statement_token2, STATE(2914), 2, sym_comment, sym_include, - [132782] = 8, + [130063] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4438), 1, - anon_sym_COLON, - STATE(3214), 1, - sym_on_quit_phrase, - STATE(4106), 1, - sym_on_stop_phrase, + ACTIONS(4500), 1, + aux_sym_stream_definition_token1, + ACTIONS(4502), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4504), 1, + aux_sym_input_close_statement_token2, + ACTIONS(4506), 1, + aux_sym_output_stream_statement_token1, STATE(2915), 2, sym_comment, sym_include, - [132808] = 7, - ACTIONS(3), 1, + [130089] = 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(4440), 1, - sym_identifier, - STATE(280), 1, - sym_qualified_name, - ACTIONS(4442), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, STATE(2916), 2, sym_comment, sym_include, - [132832] = 6, - ACTIONS(59), 1, + ACTIONS(4508), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [130109] = 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(4416), 1, - aux_sym_procedure_parameter_definition_token1, + ACTIONS(4510), 1, + anon_sym_DQUOTE, + STATE(2888), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4456), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, STATE(2917), 2, sym_comment, sym_include, - ACTIONS(4444), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [132854] = 7, + [130133] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4446), 1, - anon_sym_SQUOTE, - STATE(2968), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4408), 2, + ACTIONS(4512), 1, + anon_sym_DQUOTE, + STATE(2917), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4456), 2, + aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, STATE(2918), 2, sym_comment, sym_include, - [132878] = 8, - ACTIONS(59), 1, + [130157] = 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(3876), 1, - anon_sym_COMMA, - ACTIONS(3878), 1, - aux_sym_data_relation_token1, - STATE(2561), 1, - aux_sym_data_relation_repeat1, - STATE(4304), 1, - sym_data_relation, + ACTIONS(4514), 1, + anon_sym_SQUOTE, + STATE(2886), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4450), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, STATE(2919), 2, sym_comment, sym_include, - [132904] = 8, + [130181] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1358), 1, - anon_sym_COMMA, - ACTIONS(4448), 1, - aux_sym_of_token1, - ACTIONS(4450), 1, - aux_sym_on_statement_token1, - STATE(2969), 1, - aux_sym_on_statement_repeat1, + ACTIONS(4518), 1, + aux_sym_variable_definition_token2, STATE(2920), 2, sym_comment, sym_include, - [132930] = 8, - ACTIONS(59), 1, + ACTIONS(4516), 3, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + [130203] = 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(3774), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(3497), 1, - sym_on_quit_phrase, - STATE(4506), 1, - sym_on_stop_phrase, + ACTIONS(4520), 1, + anon_sym_DQUOTE, + STATE(2888), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4456), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, STATE(2921), 2, sym_comment, sym_include, - [132956] = 5, + [130227] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(165), 1, - sym_identifier, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4522), 1, + anon_sym_SQUOTE, + STATE(2919), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4450), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, STATE(2922), 2, sym_comment, sym_include, - ACTIONS(163), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [132976] = 7, + [130251] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4452), 1, + ACTIONS(4524), 1, anon_sym_DQUOTE, - STATE(2972), 1, + STATE(2921), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, + ACTIONS(4456), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, STATE(2923), 2, sym_comment, sym_include, - [133000] = 7, + [130275] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(3782), 1, + anon_sym_COLON, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - STATE(3530), 1, + STATE(3175), 1, + sym_on_quit_phrase, + STATE(4212), 1, sym_on_stop_phrase, - ACTIONS(2570), 2, - anon_sym_COMMA, - anon_sym_COLON, STATE(2924), 2, sym_comment, sym_include, - [133024] = 8, - ACTIONS(59), 1, + [130301] = 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(3844), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4454), 1, - anon_sym_COLON, - STATE(3442), 1, - sym_on_quit_phrase, - STATE(4352), 1, - sym_on_stop_phrase, STATE(2925), 2, sym_comment, sym_include, - [133050] = 8, - ACTIONS(59), 1, + ACTIONS(3979), 4, + sym_identifier, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [130321] = 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(4456), 1, - aux_sym_stream_definition_token1, - ACTIONS(4458), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4460), 1, - aux_sym_input_close_statement_token2, - ACTIONS(4462), 1, - aux_sym_output_stream_statement_token1, + ACTIONS(4526), 1, + anon_sym_SQUOTE, + STATE(2886), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4450), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, STATE(2926), 2, sym_comment, sym_include, - [133076] = 6, - ACTIONS(59), 1, + [130345] = 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(4464), 1, - aux_sym_procedure_parameter_definition_token1, + ACTIONS(4528), 1, + anon_sym_DQUOTE, + STATE(2888), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4456), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, STATE(2927), 2, sym_comment, sym_include, - ACTIONS(4466), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [133098] = 8, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4468), 1, - aux_sym_using_statement_token2, - ACTIONS(4470), 1, - aux_sym_stream_definition_token1, - ACTIONS(4472), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4474), 1, - aux_sym_input_close_statement_token2, - STATE(2928), 2, - sym_comment, - sym_include, - [133124] = 5, - ACTIONS(59), 1, + [130369] = 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(2929), 2, + STATE(2928), 2, sym_comment, sym_include, - ACTIONS(4476), 4, - sym__terminator, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [133144] = 7, + ACTIONS(4530), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [130389] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4478), 1, + ACTIONS(4532), 1, anon_sym_SQUOTE, - STATE(2984), 1, + STATE(2926), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(4408), 2, + ACTIONS(4450), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, + STATE(2929), 2, + sym_comment, + sym_include, + [130413] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4534), 1, + anon_sym_DQUOTE, + STATE(2927), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4456), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, STATE(2930), 2, sym_comment, sym_include, - [133168] = 5, - ACTIONS(59), 1, + [130437] = 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(4536), 1, + sym_identifier, + STATE(283), 1, + sym_qualified_name, + ACTIONS(4538), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, STATE(2931), 2, sym_comment, sym_include, - ACTIONS(4480), 4, - sym__terminator, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [133188] = 5, + [130461] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4482), 1, - sym_identifier, + ACTIONS(7), 1, + anon_sym_LBRACE, STATE(2932), 2, sym_comment, sym_include, - ACTIONS(4484), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [133208] = 7, + ACTIONS(3887), 4, + sym_identifier, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [130481] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3778), 1, - sym_on_stop_phrase, - ACTIONS(2459), 2, + ACTIONS(4540), 1, anon_sym_COMMA, - anon_sym_COLON, - STATE(2933), 2, + ACTIONS(1467), 2, + aux_sym_of_token1, + aux_sym_on_statement_token1, + STATE(2933), 3, sym_comment, sym_include, - [133232] = 5, + aux_sym_on_statement_repeat1, + [130503] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4486), 1, - sym_identifier, + ACTIONS(7), 1, + anon_sym_LBRACE, STATE(2934), 2, sym_comment, sym_include, - ACTIONS(4488), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [133252] = 8, - ACTIONS(59), 1, + ACTIONS(3879), 4, + sym_identifier, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [130523] = 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(4490), 1, - aux_sym_using_statement_token2, - ACTIONS(4492), 1, - aux_sym_stream_definition_token1, - ACTIONS(4494), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4496), 1, - aux_sym_input_close_statement_token2, + ACTIONS(4543), 1, + anon_sym_SQUOTE, + STATE(2886), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4450), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, STATE(2935), 2, sym_comment, sym_include, - [133278] = 5, + [130547] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4498), 1, - sym_identifier, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4545), 1, + anon_sym_DQUOTE, + STATE(2888), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4456), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, STATE(2936), 2, sym_comment, sym_include, - ACTIONS(4500), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [133298] = 8, - ACTIONS(59), 1, + [130571] = 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(4502), 1, - aux_sym_stream_definition_token1, - ACTIONS(4504), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4506), 1, - aux_sym_input_close_statement_token2, - ACTIONS(4508), 1, - aux_sym_output_stream_statement_token1, + ACTIONS(4547), 1, + anon_sym_SQUOTE, + STATE(2935), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4450), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, STATE(2937), 2, sym_comment, sym_include, - [133324] = 7, + [130595] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4510), 1, + ACTIONS(4549), 1, anon_sym_SQUOTE, - STATE(2984), 1, + STATE(2886), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(4408), 2, + ACTIONS(4450), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, STATE(2938), 2, sym_comment, sym_include, - [133348] = 8, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(4512), 1, - sym__terminator, - ACTIONS(4514), 1, - aux_sym_using_statement_token2, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(2939), 2, - sym_comment, - sym_include, - [133374] = 7, + [130619] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4516), 1, + ACTIONS(4551), 1, anon_sym_DQUOTE, - STATE(2972), 1, + STATE(2936), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, + ACTIONS(4456), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(2940), 2, + STATE(2939), 2, sym_comment, sym_include, - [133398] = 8, - ACTIONS(59), 1, + [130643] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(4553), 1, + sym_identifier, + STATE(2940), 2, + sym_comment, + sym_include, + ACTIONS(4555), 4, anon_sym_LBRACE, - ACTIONS(3794), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(3367), 1, - sym_on_quit_phrase, - STATE(4218), 1, - sym_on_stop_phrase, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [130663] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, + sym_identifier, STATE(2941), 2, sym_comment, sym_include, - [133424] = 7, + ACTIONS(4559), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [130683] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4518), 1, - sym_identifier, - STATE(289), 1, - sym_qualified_name, - ACTIONS(4520), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, + ACTIONS(4561), 1, + anon_sym_DQUOTE, + STATE(2888), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4456), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, STATE(2942), 2, sym_comment, sym_include, - [133448] = 8, - ACTIONS(59), 1, + [130707] = 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(4522), 1, - aux_sym_stream_definition_token1, - ACTIONS(4524), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4526), 1, - aux_sym_input_close_statement_token2, - ACTIONS(4528), 1, - aux_sym_output_stream_statement_token1, + ACTIONS(4563), 1, + sym_identifier, STATE(2943), 2, sym_comment, sym_include, - [133474] = 6, - ACTIONS(59), 1, + ACTIONS(4565), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [130727] = 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(4464), 1, - aux_sym_procedure_parameter_definition_token1, + ACTIONS(4567), 1, + sym_identifier, STATE(2944), 2, sym_comment, sym_include, - ACTIONS(4530), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [133496] = 7, + ACTIONS(4569), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [130747] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4532), 1, + ACTIONS(4571), 1, anon_sym_DQUOTE, - STATE(2889), 1, + STATE(2888), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, + ACTIONS(4456), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, STATE(2945), 2, sym_comment, sym_include, - [133520] = 7, + [130771] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4534), 1, - sym_identifier, - STATE(285), 1, - sym_qualified_name, - ACTIONS(4536), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, + ACTIONS(4573), 1, + anon_sym_SQUOTE, + STATE(2886), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4450), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, STATE(2946), 2, sym_comment, sym_include, - [133544] = 7, - ACTIONS(3), 1, + [130795] = 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(4538), 1, - sym_identifier, - STATE(286), 1, - sym_qualified_name, - ACTIONS(4540), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, + ACTIONS(4438), 1, + aux_sym_procedure_parameter_definition_token1, STATE(2947), 2, sym_comment, sym_include, - [133568] = 7, + ACTIONS(4575), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [130817] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4542), 1, - anon_sym_SQUOTE, - STATE(2961), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4408), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, + ACTIONS(4577), 1, + sym_identifier, STATE(2948), 2, sym_comment, sym_include, - [133592] = 8, - ACTIONS(3), 1, + ACTIONS(4579), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [130839] = 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(4544), 1, - sym_identifier, - ACTIONS(4546), 1, - sym__terminator, - ACTIONS(4548), 1, - aux_sym_query_definition_token1, - STATE(3164), 1, - sym_qualified_name, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(3165), 1, + sym_on_quit_phrase, + STATE(4246), 1, + sym_on_stop_phrase, STATE(2949), 2, sym_comment, sym_include, - [133618] = 7, - ACTIONS(3), 1, + [130865] = 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(4550), 1, - anon_sym_SQUOTE, - STATE(2938), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4408), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, + ACTIONS(4581), 1, + aux_sym_procedure_parameter_definition_token1, STATE(2950), 2, sym_comment, sym_include, - [133642] = 7, + ACTIONS(4583), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [130887] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4552), 1, - anon_sym_DQUOTE, - STATE(2940), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, + ACTIONS(129), 1, + sym_identifier, STATE(2951), 2, sym_comment, sym_include, - [133666] = 8, + ACTIONS(127), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [130907] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3673), 1, - anon_sym_COLON, - ACTIONS(3844), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(3163), 1, - sym_on_quit_phrase, - STATE(4214), 1, + STATE(3989), 1, sym_on_stop_phrase, + ACTIONS(2557), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(2952), 2, sym_comment, sym_include, - [133692] = 8, + [130931] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4554), 1, - aux_sym_using_statement_token2, - ACTIONS(4556), 1, - aux_sym_stream_definition_token1, - ACTIONS(4558), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4560), 1, - aux_sym_input_close_statement_token2, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4585), 1, + anon_sym_COLON, + STATE(3137), 1, + sym_on_quit_phrase, + STATE(4082), 1, + sym_on_stop_phrase, STATE(2953), 2, sym_comment, sym_include, - [133718] = 7, - ACTIONS(3), 1, + [130957] = 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(4562), 1, - anon_sym_SQUOTE, - STATE(2930), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4408), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4111), 1, + anon_sym_COLON, + STATE(3153), 1, + sym_on_quit_phrase, + STATE(4277), 1, + sym_on_stop_phrase, STATE(2954), 2, sym_comment, sym_include, - [133742] = 6, - ACTIONS(59), 1, + [130983] = 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(4564), 1, - aux_sym_procedure_parameter_definition_token1, + ACTIONS(4587), 1, + sym_identifier, + ACTIONS(4589), 1, + sym__terminator, + ACTIONS(4591), 1, + aux_sym_query_definition_token1, + STATE(3030), 1, + sym_qualified_name, STATE(2955), 2, sym_comment, sym_include, - ACTIONS(4566), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [133764] = 5, + [131009] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(96), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4593), 1, sym_identifier, + STATE(288), 1, + sym_qualified_name, + ACTIONS(4595), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, STATE(2956), 2, sym_comment, sym_include, - ACTIONS(94), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [133784] = 8, + [131033] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1358), 1, + ACTIONS(3907), 1, anon_sym_COMMA, - ACTIONS(4568), 1, - aux_sym_of_token1, - ACTIONS(4570), 1, - aux_sym_on_statement_token1, - STATE(2969), 1, - aux_sym_on_statement_repeat1, + ACTIONS(3909), 1, + aux_sym_data_relation_token1, + STATE(2910), 1, + aux_sym_data_relation_repeat1, + STATE(4110), 1, + sym_data_relation, STATE(2957), 2, sym_comment, sym_include, - [133810] = 7, - ACTIONS(3), 1, + [131059] = 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(4572), 1, - anon_sym_DQUOTE, - STATE(2972), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(3909), 1, + aux_sym_data_relation_token1, + STATE(2579), 1, + aux_sym_data_relation_repeat1, + STATE(4110), 1, + sym_data_relation, STATE(2958), 2, sym_comment, sym_include, - [133834] = 7, - ACTIONS(3), 1, + [131085] = 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(4574), 1, - anon_sym_DQUOTE, - STATE(2958), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(3909), 1, + aux_sym_data_relation_token1, + STATE(3001), 1, + aux_sym_data_relation_repeat1, + STATE(4644), 1, + sym_data_relation, STATE(2959), 2, sym_comment, sym_include, - [133858] = 8, + [131111] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3844), 1, + ACTIONS(3828), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4304), 1, + ACTIONS(4597), 1, anon_sym_COLON, - STATE(3488), 1, + STATE(3128), 1, sym_on_quit_phrase, - STATE(4460), 1, + STATE(4307), 1, sym_on_stop_phrase, STATE(2960), 2, sym_comment, sym_include, - [133884] = 7, + [131137] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4576), 1, + ACTIONS(4599), 1, anon_sym_SQUOTE, - STATE(2984), 1, + STATE(2886), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(4408), 2, + ACTIONS(4450), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, STATE(2961), 2, sym_comment, sym_include, - [133908] = 6, - ACTIONS(59), 1, + [131161] = 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(4578), 1, - aux_sym_procedure_parameter_definition_token1, + ACTIONS(4601), 1, + anon_sym_DQUOTE, + STATE(2888), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4456), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, STATE(2962), 2, sym_comment, sym_include, - ACTIONS(4580), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [133930] = 5, + [131185] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4064), 1, + anon_sym_COLON, + STATE(3439), 1, + sym_on_quit_phrase, + STATE(4357), 1, + sym_on_stop_phrase, STATE(2963), 2, sym_comment, sym_include, - ACTIONS(4582), 4, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - [133950] = 5, - ACTIONS(3), 1, + [131211] = 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(3947), 1, + sym_for_phrase, STATE(2964), 2, sym_comment, sym_include, - ACTIONS(4584), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [133970] = 8, + ACTIONS(4603), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [131233] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1358), 1, - anon_sym_COMMA, - ACTIONS(4586), 1, - aux_sym_of_token1, - ACTIONS(4588), 1, - aux_sym_on_statement_token1, - STATE(2969), 1, - aux_sym_on_statement_repeat1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4605), 1, + sym__terminator, + ACTIONS(4607), 1, + aux_sym_using_statement_token2, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(2965), 2, sym_comment, sym_include, - [133996] = 6, - ACTIONS(59), 1, + [131259] = 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(4592), 1, - aux_sym_variable_definition_token2, + ACTIONS(4609), 1, + anon_sym_SQUOTE, + STATE(2961), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4450), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, STATE(2966), 2, sym_comment, sym_include, - ACTIONS(4590), 3, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - [134018] = 7, + [131283] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4594), 1, + ACTIONS(4611), 1, anon_sym_DQUOTE, - STATE(2972), 1, + STATE(2962), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, + ACTIONS(4456), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, STATE(2967), 2, sym_comment, sym_include, - [134042] = 7, + [131307] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4613), 1, + sym_identifier, + STATE(278), 1, + sym_qualified_name, + ACTIONS(4615), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(2968), 2, + sym_comment, + sym_include, + [131331] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4617), 1, + sym_identifier, + STATE(284), 1, + sym_qualified_name, + ACTIONS(4619), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(2969), 2, + sym_comment, + sym_include, + [131355] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2970), 2, + sym_comment, + sym_include, + ACTIONS(4621), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [131375] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4623), 1, + sym_identifier, + ACTIONS(4625), 1, + sym__terminator, + ACTIONS(4627), 1, + aux_sym_query_definition_token1, + STATE(3311), 1, + sym_qualified_name, + STATE(2971), 2, + sym_comment, + sym_include, + [131401] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4596), 1, - anon_sym_SQUOTE, - STATE(2984), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4408), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2968), 2, + ACTIONS(209), 1, + sym_identifier, + STATE(2972), 2, sym_comment, sym_include, - [134066] = 6, + ACTIONS(207), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [131421] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4598), 1, - anon_sym_COMMA, - ACTIONS(1425), 2, - aux_sym_of_token1, - aux_sym_on_statement_token1, - STATE(2969), 3, + STATE(2973), 2, sym_comment, sym_include, - aux_sym_on_statement_repeat1, - [134088] = 8, + ACTIONS(4629), 4, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + [131441] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(4601), 1, - sym__terminator, - ACTIONS(4603), 1, - aux_sym_using_statement_token2, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(2970), 2, + STATE(2974), 2, sym_comment, sym_include, - [134114] = 6, - ACTIONS(3), 1, + ACTIONS(4631), 4, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + [131461] = 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(4605), 1, - sym_identifier, - STATE(2971), 2, - sym_comment, - sym_include, - ACTIONS(4607), 3, + ACTIONS(1437), 1, anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [134136] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4609), 1, - anon_sym_DQUOTE, - ACTIONS(4611), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2972), 3, + ACTIONS(4633), 1, + aux_sym_of_token1, + ACTIONS(4635), 1, + aux_sym_on_statement_token1, + STATE(2933), 1, + aux_sym_on_statement_repeat1, + STATE(2975), 2, sym_comment, sym_include, - aux_sym_double_quoted_string_repeat1, - [134158] = 8, + [131487] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4166), 1, + ACTIONS(3734), 1, anon_sym_COLON, - STATE(3226), 1, + ACTIONS(3828), 1, + aux_sym_on_error_phrase_token1, + STATE(3348), 1, sym_on_quit_phrase, - STATE(4076), 1, + STATE(4225), 1, sym_on_stop_phrase, - STATE(2973), 2, + STATE(2976), 2, sym_comment, sym_include, - [134184] = 8, + [131513] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1358), 1, + ACTIONS(1437), 1, anon_sym_COMMA, - ACTIONS(4614), 1, + ACTIONS(4637), 1, aux_sym_of_token1, - ACTIONS(4616), 1, + ACTIONS(4639), 1, aux_sym_on_statement_token1, - STATE(2969), 1, + STATE(2933), 1, aux_sym_on_statement_repeat1, - STATE(2974), 2, + STATE(2977), 2, sym_comment, sym_include, - [134210] = 5, - ACTIONS(3), 1, + [131539] = 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(2975), 2, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3841), 1, + sym_on_stop_phrase, + ACTIONS(2555), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2978), 2, sym_comment, sym_include, - ACTIONS(4618), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [134230] = 7, + [131563] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4620), 1, - anon_sym_DQUOTE, - STATE(2972), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2976), 2, + ACTIONS(4641), 1, + sym_identifier, + STATE(2979), 2, sym_comment, sym_include, - [134254] = 7, - ACTIONS(3), 1, + ACTIONS(4643), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [131585] = 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(4622), 1, - anon_sym_DQUOTE, - STATE(3020), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2977), 2, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(4645), 1, + aux_sym_of_token1, + ACTIONS(4647), 1, + aux_sym_on_statement_token1, + STATE(2933), 1, + aux_sym_on_statement_repeat1, + STATE(2980), 2, sym_comment, sym_include, - [134278] = 5, + [131611] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2978), 2, + STATE(2981), 2, sym_comment, sym_include, - ACTIONS(4624), 4, + ACTIONS(4649), 4, sym__terminator, anon_sym_COMMA, anon_sym_COLON, aux_sym_on_error_phrase_token1, - [134298] = 7, + [131631] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3643), 1, - sym_on_stop_phrase, - ACTIONS(4150), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2979), 2, + ACTIONS(4651), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(2982), 2, sym_comment, sym_include, - [134322] = 5, + ACTIONS(4653), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [131653] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2980), 2, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(4655), 1, + aux_sym_of_token1, + ACTIONS(4657), 1, + aux_sym_on_statement_token1, + STATE(2933), 1, + aux_sym_on_statement_repeat1, + STATE(2983), 2, sym_comment, sym_include, - ACTIONS(4626), 4, - sym__terminator, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [134342] = 8, + [131679] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4023), 1, - anon_sym_COLON, - STATE(3321), 1, - sym_on_quit_phrase, - STATE(4157), 1, - sym_on_stop_phrase, - STATE(2981), 2, + ACTIONS(4659), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(2984), 2, sym_comment, sym_include, - [134368] = 7, + ACTIONS(4661), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [131701] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4628), 1, - anon_sym_SQUOTE, - STATE(2893), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4408), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2982), 2, + ACTIONS(4663), 1, + sym_identifier, + STATE(2985), 2, sym_comment, sym_include, - [134392] = 8, + ACTIONS(4665), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [131723] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1358), 1, + ACTIONS(1437), 1, anon_sym_COMMA, - ACTIONS(4630), 1, + ACTIONS(4667), 1, aux_sym_of_token1, - ACTIONS(4632), 1, + ACTIONS(4669), 1, aux_sym_on_statement_token1, - STATE(2969), 1, + STATE(2933), 1, aux_sym_on_statement_repeat1, - STATE(2983), 2, + STATE(2986), 2, sym_comment, sym_include, - [134418] = 6, + [131749] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4637), 1, + ACTIONS(4671), 1, anon_sym_SQUOTE, - ACTIONS(4634), 2, + STATE(2946), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4450), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(2984), 3, + STATE(2987), 2, sym_comment, sym_include, - aux_sym_single_quoted_string_repeat1, - [134440] = 5, + [131773] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2985), 2, + STATE(2988), 2, sym_comment, sym_include, - ACTIONS(4639), 4, + ACTIONS(4673), 4, sym__terminator, anon_sym_COMMA, anon_sym_COLON, aux_sym_on_error_phrase_token1, - [134460] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4641), 1, - sym_identifier, - STATE(2986), 2, - sym_comment, - sym_include, - ACTIONS(4643), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [134482] = 7, + [131793] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4645), 1, + ACTIONS(4675), 1, anon_sym_SQUOTE, - STATE(2984), 1, + STATE(2938), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(4408), 2, + ACTIONS(4450), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(2987), 2, + STATE(2989), 2, sym_comment, sym_include, - [134506] = 7, + [131817] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4647), 1, - anon_sym_SQUOTE, - STATE(2987), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4408), 2, + ACTIONS(4677), 1, + anon_sym_DQUOTE, + STATE(2945), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4456), 2, + aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2988), 2, + STATE(2990), 2, sym_comment, sym_include, - [134530] = 8, + [131841] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3776), 1, + STATE(2991), 2, + sym_comment, + sym_include, + ACTIONS(4679), 4, + sym__terminator, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3844), 1, aux_sym_on_error_phrase_token1, - STATE(3256), 1, - sym_on_quit_phrase, - STATE(4082), 1, - sym_on_stop_phrase, - STATE(2989), 2, + [131861] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + sym_identifier, + ACTIONS(4683), 1, + sym__terminator, + ACTIONS(4685), 1, + aux_sym_query_definition_token1, + STATE(3144), 1, + sym_qualified_name, + STATE(2992), 2, sym_comment, sym_include, - [134556] = 8, + [131887] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3816), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(3341), 1, - sym_on_quit_phrase, - STATE(4179), 1, - sym_on_stop_phrase, - STATE(2990), 2, + STATE(2993), 2, sym_comment, sym_include, - [134582] = 7, + ACTIONS(4687), 4, + sym__terminator, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [131907] = 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(4689), 1, anon_sym_DQUOTE, - STATE(2976), 1, + STATE(2888), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, + ACTIONS(4456), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(2991), 2, + STATE(2994), 2, sym_comment, sym_include, - [134606] = 7, + [131931] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3926), 1, - sym_on_stop_phrase, - ACTIONS(2421), 2, + ACTIONS(3907), 1, anon_sym_COMMA, - anon_sym_COLON, - STATE(2992), 2, - sym_comment, - sym_include, - [134630] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4651), 1, - anon_sym_DQUOTE, - STATE(3003), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2993), 2, + ACTIONS(3909), 1, + aux_sym_data_relation_token1, + STATE(2958), 1, + aux_sym_data_relation_repeat1, + STATE(4015), 1, + sym_data_relation, + STATE(2995), 2, sym_comment, sym_include, - [134654] = 7, + [131957] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4653), 1, + ACTIONS(4691), 1, anon_sym_SQUOTE, - STATE(3004), 1, + STATE(2886), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(4408), 2, + ACTIONS(4450), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(2994), 2, + STATE(2996), 2, sym_comment, sym_include, - [134678] = 6, - ACTIONS(3), 1, + [131981] = 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(4655), 1, - sym_identifier, - STATE(2995), 2, - sym_comment, - sym_include, - ACTIONS(4657), 3, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(3580), 1, + sym_on_stop_phrase, + ACTIONS(2392), 2, anon_sym_COMMA, anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [134700] = 5, + STATE(2997), 2, + sym_comment, + sym_include, + [132005] = 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(4693), 1, + aux_sym_stream_definition_token1, + ACTIONS(4695), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4697), 1, + aux_sym_input_close_statement_token2, + ACTIONS(4699), 1, + aux_sym_output_stream_statement_token1, + STATE(2998), 2, sym_comment, sym_include, - ACTIONS(4659), 4, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - [134720] = 6, + [132031] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4578), 1, + ACTIONS(4659), 1, aux_sym_procedure_parameter_definition_token1, - STATE(2997), 2, + STATE(2999), 2, sym_comment, sym_include, - ACTIONS(4661), 3, + ACTIONS(4701), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [134742] = 5, + [132053] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2998), 2, - sym_comment, - sym_include, - ACTIONS(4663), 4, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - [134762] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2999), 2, + ACTIONS(4703), 1, + aux_sym_using_statement_token2, + ACTIONS(4705), 1, + aux_sym_stream_definition_token1, + ACTIONS(4707), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4709), 1, + aux_sym_input_close_statement_token2, + STATE(3000), 2, sym_comment, sym_include, - ACTIONS(4665), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [134782] = 8, + [132079] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, + ACTIONS(3907), 1, anon_sym_COMMA, - ACTIONS(3878), 1, + ACTIONS(3909), 1, aux_sym_data_relation_token1, - STATE(2919), 1, + STATE(2579), 1, aux_sym_data_relation_repeat1, - STATE(4189), 1, + STATE(4015), 1, sym_data_relation, - STATE(3000), 2, - sym_comment, - sym_include, - [134808] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(3569), 1, - sym_on_stop_phrase, - ACTIONS(3294), 2, - anon_sym_COMMA, - anon_sym_COLON, STATE(3001), 2, sym_comment, sym_include, - [134832] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4667), 1, - aux_sym_procedure_parameter_definition_token1, - STATE(3002), 2, - sym_comment, - sym_include, - ACTIONS(4669), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [134854] = 7, + [132105] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4671), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - STATE(2972), 1, + STATE(2994), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, + ACTIONS(4456), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(3003), 2, + STATE(3002), 2, sym_comment, sym_include, - [134878] = 7, + [132129] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4673), 1, + ACTIONS(4713), 1, anon_sym_SQUOTE, - STATE(2984), 1, + STATE(2996), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(4408), 2, + ACTIONS(4450), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(3004), 2, + STATE(3003), 2, sym_comment, sym_include, - [134902] = 5, - ACTIONS(59), 1, + [132153] = 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(3005), 2, + ACTIONS(4715), 1, + sym_identifier, + STATE(3004), 2, sym_comment, sym_include, - ACTIONS(4675), 4, - sym__terminator, + ACTIONS(4717), 3, anon_sym_COMMA, anon_sym_COLON, aux_sym_on_error_phrase_token1, - [134922] = 7, + [132175] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4677), 1, - sym_identifier, - STATE(279), 1, - sym_qualified_name, - ACTIONS(4679), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(3006), 2, + ACTIONS(4719), 1, + anon_sym_DQUOTE, + STATE(2942), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4456), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3005), 2, sym_comment, sym_include, - [134946] = 8, + [132199] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4681), 1, + ACTIONS(4721), 1, sym_identifier, - ACTIONS(4683), 1, - sym__terminator, - ACTIONS(4685), 1, - aux_sym_query_definition_token1, - STATE(3249), 1, - sym_qualified_name, - STATE(3007), 2, + STATE(3006), 2, sym_comment, sym_include, - [134972] = 8, + ACTIONS(4723), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [132221] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3790), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3838), 1, anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(3250), 1, - sym_on_quit_phrase, - STATE(4046), 1, - sym_on_stop_phrase, + STATE(3342), 1, + aux_sym_for_statement_repeat1, + STATE(3007), 2, + sym_comment, + sym_include, + [132244] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4725), 1, + sym__integer_literal, + STATE(788), 1, + sym__decimal_literal, + STATE(2201), 1, + sym_number_literal, STATE(3008), 2, sym_comment, sym_include, - [134998] = 6, - ACTIONS(3), 1, + [132267] = 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(4687), 1, - sym_identifier, STATE(3009), 2, sym_comment, sym_include, - ACTIONS(4689), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [135020] = 8, + ACTIONS(4727), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [132286] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4691), 1, - aux_sym_stream_definition_token1, - ACTIONS(4693), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4695), 1, - aux_sym_input_close_statement_token2, - ACTIONS(4697), 1, - aux_sym_output_stream_statement_token1, + ACTIONS(4729), 1, + anon_sym_RPAREN, + ACTIONS(4731), 1, + anon_sym_COMMA, + STATE(3129), 1, + aux_sym_function_statement_repeat1, STATE(3010), 2, sym_comment, sym_include, - [135046] = 5, + [132309] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -153782,169 +150258,147 @@ static const uint16_t ts_small_parse_table[] = { STATE(3011), 2, sym_comment, sym_include, - ACTIONS(4699), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [135066] = 8, - ACTIONS(59), 1, + ACTIONS(4733), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [132328] = 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(3876), 1, - anon_sym_COMMA, - ACTIONS(3878), 1, - aux_sym_data_relation_token1, - STATE(2561), 1, - aux_sym_data_relation_repeat1, - STATE(4575), 1, - sym_data_relation, + ACTIONS(4735), 1, + sym_identifier, + ACTIONS(4737), 1, + anon_sym_RPAREN, + STATE(3482), 1, + aux_sym_query_fields_repeat1, STATE(3012), 2, sym_comment, sym_include, - [135092] = 8, + [132351] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4701), 1, - aux_sym_stream_definition_token1, - ACTIONS(4703), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4705), 1, - aux_sym_input_close_statement_token2, - ACTIONS(4707), 1, - aux_sym_output_stream_statement_token1, STATE(3013), 2, sym_comment, sym_include, - [135118] = 8, + ACTIONS(1879), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [132370] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4709), 1, - aux_sym_using_statement_token2, - ACTIONS(4711), 1, - aux_sym_stream_definition_token1, - ACTIONS(4713), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4715), 1, - aux_sym_input_close_statement_token2, STATE(3014), 2, sym_comment, sym_include, - [135144] = 8, + ACTIONS(4739), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [132389] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4717), 1, - aux_sym_using_statement_token2, - ACTIONS(4719), 1, - aux_sym_stream_definition_token1, - ACTIONS(4721), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4723), 1, - aux_sym_input_close_statement_token2, STATE(3015), 2, sym_comment, sym_include, - [135170] = 8, + ACTIONS(4741), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [132408] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4725), 1, - anon_sym_COLON, - STATE(3296), 1, - sym_on_quit_phrase, - STATE(4143), 1, - sym_on_stop_phrase, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(4036), 1, + sym__terminator, + STATE(2579), 1, + aux_sym_data_relation_repeat1, STATE(3016), 2, sym_comment, sym_include, - [135196] = 5, - ACTIONS(59), 1, + [132431] = 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(4743), 1, + sym_identifier, + ACTIONS(4745), 1, + aux_sym_input_expression_token2, + STATE(1589), 1, + sym_qualified_name, STATE(3017), 2, sym_comment, sym_include, - ACTIONS(4727), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [135216] = 8, - ACTIONS(59), 1, + [132454] = 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(3743), 1, - anon_sym_COLON, - ACTIONS(3844), 1, - aux_sym_on_error_phrase_token1, - STATE(3236), 1, - sym_on_quit_phrase, - STATE(4045), 1, - sym_on_stop_phrase, + ACTIONS(1065), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + sym_identifier, + STATE(1588), 1, + sym_parenthesized_expression, STATE(3018), 2, sym_comment, sym_include, - [135242] = 7, + [132477] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4729), 1, + ACTIONS(4683), 1, + sym__terminator, + ACTIONS(4749), 1, sym_identifier, - STATE(284), 1, + STATE(3144), 1, sym_qualified_name, - ACTIONS(4731), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, STATE(3019), 2, sym_comment, sym_include, - [135266] = 7, - ACTIONS(3), 1, + [132500] = 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(4733), 1, - anon_sym_DQUOTE, - STATE(2972), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4402), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, STATE(3020), 2, sym_comment, sym_include, - [135290] = 5, + ACTIONS(1875), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [132519] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -153954,105 +150408,97 @@ static const uint16_t ts_small_parse_table[] = { STATE(3021), 2, sym_comment, sym_include, - ACTIONS(2073), 3, + ACTIONS(1871), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [135309] = 5, - ACTIONS(3), 1, + [132538] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, STATE(3022), 2, sym_comment, sym_include, - ACTIONS(4735), 3, - aux_sym_double_quoted_string_token2, - anon_sym_SQUOTE, - aux_sym_single_quoted_string_token1, - [135328] = 7, + ACTIONS(4751), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [132557] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(4021), 1, - aux_sym_data_relation_token2, - STATE(3042), 1, - aux_sym_data_relation_repeat1, STATE(3023), 2, sym_comment, sym_include, - [135351] = 7, + ACTIONS(1867), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [132576] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4737), 1, - anon_sym_RPAREN, - ACTIONS(4739), 1, - anon_sym_COMMA, - STATE(3186), 1, - aux_sym_function_statement_repeat1, STATE(3024), 2, sym_comment, sym_include, - [135374] = 7, + ACTIONS(4753), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [132595] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(4048), 1, - sym__terminator, - STATE(2561), 1, - aux_sym_data_relation_repeat1, STATE(3025), 2, sym_comment, sym_include, - [135397] = 7, + ACTIONS(1863), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [132614] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(4048), 1, - sym__terminator, - STATE(3044), 1, - aux_sym_data_relation_repeat1, STATE(3026), 2, sym_comment, sym_include, - [135420] = 7, + ACTIONS(1859), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [132633] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4737), 1, - anon_sym_RPAREN, - ACTIONS(4739), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - STATE(3045), 1, - aux_sym_function_statement_repeat1, + ACTIONS(2533), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3027), 2, sym_comment, sym_include, - [135443] = 5, + [132656] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -154062,83 +150508,89 @@ static const uint16_t ts_small_parse_table[] = { STATE(3028), 2, sym_comment, sym_include, - ACTIONS(4741), 3, + ACTIONS(4755), 3, aux_sym_for_phrase_token1, aux_sym_for_phrase_token2, aux_sym_for_phrase_token3, - [135462] = 7, - ACTIONS(3), 1, + [132675] = 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(4743), 1, - sym_identifier, - ACTIONS(4745), 1, - sym__terminator, - STATE(3047), 1, - sym_qualified_name, STATE(3029), 2, sym_comment, sym_include, - [135485] = 5, + ACTIONS(1857), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [132694] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(4036), 1, + sym__terminator, + STATE(3146), 1, + aux_sym_data_relation_repeat1, STATE(3030), 2, sym_comment, sym_include, - ACTIONS(4747), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [135504] = 5, - ACTIONS(59), 1, + [132717] = 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(4757), 1, + sym_identifier, + ACTIONS(4759), 1, + anon_sym_AMP, + ACTIONS(4761), 1, + sym__integer_literal, STATE(3031), 2, sym_comment, sym_include, - ACTIONS(4749), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [135523] = 5, + [132740] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2533), 1, + anon_sym_COLON, + STATE(3468), 1, + aux_sym_for_statement_repeat1, STATE(3032), 2, sym_comment, sym_include, - ACTIONS(4751), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [135542] = 5, - ACTIONS(59), 1, + [132763] = 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(4763), 1, + sym_identifier, + ACTIONS(4765), 1, + aux_sym_primitive_type_token19, + STATE(4439), 1, + sym_qualified_name, STATE(3033), 2, sym_comment, sym_include, - ACTIONS(4753), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [135561] = 5, + [132786] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -154148,43 +150600,39 @@ static const uint16_t ts_small_parse_table[] = { STATE(3034), 2, sym_comment, sym_include, - ACTIONS(4755), 3, + ACTIONS(4767), 3, aux_sym_for_phrase_token1, aux_sym_for_phrase_token2, aux_sym_for_phrase_token3, - [135580] = 7, - ACTIONS(3), 1, + [132805] = 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(4757), 1, - sym_identifier, - ACTIONS(4759), 1, - aux_sym_input_expression_token2, - STATE(934), 1, - sym_qualified_name, STATE(3035), 2, sym_comment, sym_include, - [135603] = 7, + ACTIONS(1853), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [132824] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4761), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3036), 2, sym_comment, sym_include, - [135626] = 5, + ACTIONS(4769), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [132843] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -154194,203 +150642,200 @@ static const uint16_t ts_small_parse_table[] = { STATE(3037), 2, sym_comment, sym_include, - ACTIONS(4763), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [135645] = 7, + ACTIONS(1897), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [132862] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(4731), 1, anon_sym_COMMA, - ACTIONS(4761), 1, - anon_sym_COLON, - STATE(3055), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4771), 1, + anon_sym_RPAREN, + STATE(3448), 1, + aux_sym_function_statement_repeat1, STATE(3038), 2, sym_comment, sym_include, - [135668] = 7, - ACTIONS(3), 1, + [132885] = 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(1022), 1, - anon_sym_LPAREN, - ACTIONS(4765), 1, - sym_identifier, - STATE(987), 1, - sym_parenthesized_expression, + ACTIONS(4731), 1, + anon_sym_COMMA, + ACTIONS(4773), 1, + anon_sym_RPAREN, + STATE(3167), 1, + aux_sym_function_statement_repeat1, STATE(3039), 2, sym_comment, sym_include, - [135691] = 7, + [132908] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4100), 1, + ACTIONS(2382), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3040), 2, sym_comment, sym_include, - [135714] = 7, + [132931] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4100), 1, + ACTIONS(2636), 1, + aux_sym_inherits_token1, + ACTIONS(4054), 1, anon_sym_COLON, - STATE(3057), 1, - aux_sym_for_statement_repeat1, + STATE(4531), 1, + sym_inherits, STATE(3041), 2, sym_comment, sym_include, - [135737] = 7, + [132954] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, + ACTIONS(4731), 1, anon_sym_COMMA, - ACTIONS(4767), 1, - aux_sym_data_relation_token2, - STATE(2561), 1, - aux_sym_data_relation_repeat1, + ACTIONS(4775), 1, + anon_sym_RPAREN, + STATE(3448), 1, + aux_sym_function_statement_repeat1, STATE(3042), 2, sym_comment, sym_include, - [135760] = 7, - ACTIONS(3), 1, + [132977] = 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(4769), 1, - sym_identifier, - ACTIONS(4771), 1, - anon_sym_AMP, - ACTIONS(4773), 1, - sym__integer_literal, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2537), 1, + anon_sym_COLON, + STATE(3160), 1, + aux_sym_for_statement_repeat1, STATE(3043), 2, sym_comment, sym_include, - [135783] = 7, + [133000] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(4134), 1, - sym__terminator, - STATE(2561), 1, - aux_sym_data_relation_repeat1, + ACTIONS(3692), 1, + aux_sym__block_terminator_token1, + STATE(3035), 1, + sym__block_terminator, + STATE(3150), 1, + sym__case_terminator, STATE(3044), 2, sym_comment, sym_include, - [135806] = 7, + [133023] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, - anon_sym_COMMA, - ACTIONS(4775), 1, - anon_sym_RPAREN, - STATE(3186), 1, - aux_sym_function_statement_repeat1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4777), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3045), 2, sym_comment, sym_include, - [135829] = 7, + [133046] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4777), 1, - sym_identifier, ACTIONS(4779), 1, + sym_identifier, + ACTIONS(4781), 1, aux_sym_input_expression_token2, - STATE(579), 1, + STATE(561), 1, sym_qualified_name, STATE(3046), 2, sym_comment, sym_include, - [135852] = 7, - ACTIONS(59), 1, + [133069] = 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(3876), 1, - anon_sym_COMMA, - ACTIONS(4134), 1, - sym__terminator, - STATE(3061), 1, - aux_sym_data_relation_repeat1, - STATE(3047), 2, + ACTIONS(4783), 1, + sym_identifier, + ACTIONS(4786), 1, + anon_sym_RPAREN, + STATE(3047), 3, sym_comment, sym_include, - [135875] = 7, + aux_sym_query_fields_repeat1, + [133090] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, - anon_sym_COMMA, - ACTIONS(4775), 1, - anon_sym_RPAREN, - STATE(3062), 1, - aux_sym_function_statement_repeat1, STATE(3048), 2, sym_comment, sym_include, - [135898] = 7, - ACTIONS(3), 1, + ACTIONS(1845), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [133109] = 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(4781), 1, - sym_identifier, - ACTIONS(4783), 1, - aux_sym_primitive_type_token19, - STATE(4441), 1, - sym_qualified_name, + ACTIONS(2636), 1, + aux_sym_inherits_token1, + ACTIONS(4058), 1, + anon_sym_COLON, + STATE(4499), 1, + sym_inherits, STATE(3049), 2, sym_comment, sym_include, - [135921] = 5, + [133132] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -154400,1920 +150845,1876 @@ static const uint16_t ts_small_parse_table[] = { STATE(3050), 2, sym_comment, sym_include, - ACTIONS(4785), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [135940] = 7, - ACTIONS(3), 1, + ACTIONS(1841), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [133151] = 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(763), 1, - anon_sym_LPAREN, - ACTIONS(4787), 1, - sym_identifier, - STATE(580), 1, - sym_parenthesized_expression, + ACTIONS(4788), 1, + aux_sym_buffer_definition_token2, + ACTIONS(4790), 1, + aux_sym_repeat_statement_token1, + ACTIONS(4792), 1, + aux_sym_do_block_token1, STATE(3051), 2, sym_comment, sym_include, - [135963] = 5, + [133174] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3052), 2, sym_comment, sym_include, - ACTIONS(4789), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [135982] = 7, + [133197] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, - aux_sym_inherits_token1, - ACTIONS(4148), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_COLON, - STATE(4533), 1, - sym_inherits, + STATE(3176), 1, + aux_sym_for_statement_repeat1, STATE(3053), 2, sym_comment, sym_include, - [136005] = 7, + [133220] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3848), 1, + ACTIONS(2636), 1, + aux_sym_inherits_token1, + ACTIONS(4062), 1, anon_sym_COLON, - STATE(3040), 1, - aux_sym_for_statement_repeat1, + STATE(4466), 1, + sym_inherits, STATE(3054), 2, sym_comment, sym_include, - [136028] = 7, + [133243] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4791), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3055), 2, sym_comment, sym_include, - [136051] = 7, + ACTIONS(1837), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [133262] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4793), 1, - aux_sym__block_terminator_token1, - STATE(1316), 1, - sym__block_terminator, - STATE(1341), 1, - sym__function_terminator, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4794), 1, + anon_sym_COLON, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3056), 2, sym_comment, sym_include, - [136074] = 7, + [133285] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4795), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3057), 2, sym_comment, sym_include, - [136097] = 7, + ACTIONS(1831), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [133304] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4795), 1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4796), 1, anon_sym_COLON, - STATE(3069), 1, - aux_sym_for_statement_repeat1, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3058), 2, sym_comment, sym_include, - [136120] = 7, + [133327] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, - aux_sym_inherits_token1, - ACTIONS(4152), 1, - anon_sym_COLON, - STATE(4501), 1, - sym_inherits, + ACTIONS(3730), 1, + aux_sym__block_terminator_token1, + STATE(917), 1, + sym__case_terminator, + STATE(941), 1, + sym__block_terminator, STATE(3059), 2, sym_comment, sym_include, - [136143] = 7, - ACTIONS(3), 1, + [133350] = 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(4797), 1, - sym_identifier, - ACTIONS(4799), 1, - anon_sym_RPAREN, - STATE(3070), 1, - sym_qualified_name, + ACTIONS(4798), 1, + aux_sym_buffer_definition_token2, + ACTIONS(4800), 1, + aux_sym_repeat_statement_token1, + ACTIONS(4802), 1, + aux_sym_do_block_token1, STATE(3060), 2, sym_comment, sym_include, - [136166] = 7, - ACTIONS(59), 1, + [133373] = 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(3876), 1, - anon_sym_COMMA, - ACTIONS(4801), 1, - sym__terminator, - STATE(2561), 1, - aux_sym_data_relation_repeat1, + ACTIONS(4804), 1, + sym_identifier, + ACTIONS(4806), 1, + aux_sym_input_expression_token2, + STATE(43), 1, + sym_qualified_name, STATE(3061), 2, sym_comment, sym_include, - [136189] = 7, + [133396] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, - anon_sym_COMMA, - ACTIONS(4803), 1, - anon_sym_RPAREN, - STATE(3186), 1, - aux_sym_function_statement_repeat1, + ACTIONS(4808), 1, + aux_sym__block_terminator_token1, + STATE(1274), 1, + sym__function_terminator, + STATE(1473), 1, + sym__block_terminator, STATE(3062), 2, sym_comment, sym_include, - [136212] = 7, - ACTIONS(59), 1, + [133419] = 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(4805), 1, - aux_sym_buffer_definition_token2, - ACTIONS(4807), 1, - aux_sym_repeat_statement_token1, - ACTIONS(4809), 1, - aux_sym_do_block_token1, + ACTIONS(802), 1, + anon_sym_LPAREN, + ACTIONS(4810), 1, + sym_identifier, + STATE(572), 1, + sym_parenthesized_expression, STATE(3063), 2, sym_comment, sym_include, - [136235] = 7, + [133442] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4811), 1, - anon_sym_RPAREN, - ACTIONS(4813), 1, - anon_sym_COMMA, - STATE(3426), 1, - aux_sym__function_call_arguments_repeat1, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + sym__namecolon, + STATE(3293), 1, + aux_sym_object_access_repeat1, STATE(3064), 2, sym_comment, sym_include, - [136258] = 7, + [133465] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2636), 1, aux_sym_inherits_token1, - ACTIONS(4180), 1, + ACTIONS(4072), 1, anon_sym_COLON, - STATE(4468), 1, + STATE(4426), 1, sym_inherits, STATE(3065), 2, sym_comment, sym_include, - [136281] = 7, + [133488] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(4815), 1, - anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(4812), 1, + aux_sym_on_error_phrase_token2, + ACTIONS(4814), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(4816), 1, + aux_sym_on_quit_phrase_token1, STATE(3066), 2, sym_comment, sym_include, - [136304] = 7, + [133511] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(4817), 1, - anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, STATE(3067), 2, sym_comment, sym_include, - [136327] = 7, + ACTIONS(1849), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [133530] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4819), 1, - aux_sym_buffer_definition_token2, - ACTIONS(4821), 1, - aux_sym_repeat_statement_token1, - ACTIONS(4823), 1, - aux_sym_do_block_token1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4818), 1, + anon_sym_LPAREN, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3068), 2, sym_comment, sym_include, - [136350] = 7, + [133553] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4825), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4820), 1, + anon_sym_LPAREN, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3069), 2, sym_comment, sym_include, - [136373] = 7, + [133576] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(4198), 1, - anon_sym_RPAREN, - STATE(3079), 1, - aux_sym_data_relation_repeat1, STATE(3070), 2, sym_comment, sym_include, - [136396] = 7, + ACTIONS(4822), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [133595] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4827), 1, + ACTIONS(4824), 1, sym_identifier, - ACTIONS(4829), 1, - anon_sym_RPAREN, - STATE(3087), 1, - sym_qualified_name, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4828), 1, + sym__integer_literal, STATE(3071), 2, sym_comment, sym_include, - [136419] = 7, + [133618] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, - aux_sym_inherits_token1, - ACTIONS(4222), 1, - anon_sym_COLON, - STATE(4428), 1, - sym_inherits, STATE(3072), 2, sym_comment, sym_include, - [136442] = 7, - ACTIONS(59), 1, + ACTIONS(4830), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [133637] = 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(4831), 1, - aux_sym_on_error_phrase_token2, - ACTIONS(4833), 1, - aux_sym_on_stop_phrase_token1, - ACTIONS(4835), 1, - aux_sym_on_quit_phrase_token1, + ACTIONS(4832), 1, + sym_identifier, + ACTIONS(4834), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(3073), 2, sym_comment, sym_include, - [136465] = 7, + [133658] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(4837), 1, - anon_sym_LPAREN, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3225), 1, + anon_sym_COLON, + STATE(3007), 1, + aux_sym_for_statement_repeat1, STATE(3074), 2, sym_comment, sym_include, - [136488] = 7, + [133681] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4839), 1, + ACTIONS(4836), 1, sym_identifier, - ACTIONS(4841), 1, - anon_sym_AMP, - ACTIONS(4843), 1, - sym__integer_literal, + ACTIONS(4838), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(3075), 2, sym_comment, sym_include, - [136511] = 7, + [133702] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(4845), 1, + ACTIONS(4840), 1, anon_sym_LPAREN, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, STATE(3076), 2, sym_comment, sym_include, - [136534] = 7, + [133725] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4847), 1, + ACTIONS(4842), 1, sym_identifier, - ACTIONS(4849), 1, + ACTIONS(4844), 1, anon_sym_AMP, - ACTIONS(4851), 1, + ACTIONS(4846), 1, sym__integer_literal, STATE(3077), 2, sym_comment, sym_include, - [136557] = 7, + [133748] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4833), 1, - aux_sym_on_stop_phrase_token1, - ACTIONS(4853), 1, - aux_sym_on_error_phrase_token2, - ACTIONS(4855), 1, - aux_sym_on_quit_phrase_token1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4848), 1, + anon_sym_LPAREN, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3078), 2, sym_comment, sym_include, - [136580] = 7, + [133771] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(4254), 1, - anon_sym_RPAREN, - STATE(2561), 1, - aux_sym_data_relation_repeat1, STATE(3079), 2, sym_comment, sym_include, - [136603] = 7, + ACTIONS(1823), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [133790] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4857), 1, + ACTIONS(4850), 1, sym_identifier, - ACTIONS(4859), 1, - aux_sym_buffer_definition_token3, - STATE(4528), 1, - sym_qualified_name, + ACTIONS(4852), 1, + anon_sym_AMP, + ACTIONS(4854), 1, + sym__integer_literal, STATE(3080), 2, sym_comment, sym_include, - [136626] = 7, + [133813] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(4861), 1, - anon_sym_LPAREN, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(4856), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3081), 2, sym_comment, sym_include, - [136649] = 7, - ACTIONS(3), 1, + [133836] = 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(4863), 1, - sym_identifier, - ACTIONS(4865), 1, - anon_sym_AMP, - ACTIONS(4867), 1, - sym__integer_literal, STATE(3082), 2, sym_comment, sym_include, - [136672] = 7, + ACTIONS(1999), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [133855] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4869), 1, + ACTIONS(4858), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3081), 1, aux_sym_for_statement_repeat1, STATE(3083), 2, sym_comment, sym_include, - [136695] = 7, + [133878] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4871), 1, + ACTIONS(4858), 1, anon_sym_COLON, - STATE(3083), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3084), 2, sym_comment, sym_include, - [136718] = 7, + [133901] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4871), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3085), 2, sym_comment, sym_include, - [136741] = 7, + ACTIONS(4860), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [133920] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4873), 1, + ACTIONS(4862), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3086), 2, sym_comment, sym_include, - [136764] = 7, + [133943] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(4254), 1, - anon_sym_RPAREN, - STATE(3097), 1, - aux_sym_data_relation_repeat1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4864), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3087), 2, sym_comment, sym_include, - [136787] = 7, + [133966] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4248), 1, - anon_sym_COLON, - STATE(3085), 1, - aux_sym_for_statement_repeat1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4866), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3088), 2, sym_comment, sym_include, - [136810] = 7, + [133989] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4248), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3824), 1, + aux_sym__block_terminator_token1, + STATE(1116), 1, + sym__case_terminator, + STATE(1259), 1, + sym__block_terminator, STATE(3089), 2, sym_comment, sym_include, - [136833] = 7, + [134012] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(4875), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(4080), 1, + anon_sym_COLON, + STATE(3084), 1, + aux_sym_for_statement_repeat1, STATE(3090), 2, sym_comment, sym_include, - [136856] = 7, + [134035] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4877), 1, + ACTIONS(4080), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3091), 2, sym_comment, sym_include, - [136879] = 7, + [134058] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4877), 1, + ACTIONS(4868), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3086), 1, aux_sym_for_statement_repeat1, STATE(3092), 2, sym_comment, sym_include, - [136902] = 7, + [134081] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3866), 1, - anon_sym_COLON, - STATE(3089), 1, - aux_sym_for_statement_repeat1, STATE(3093), 2, sym_comment, sym_include, - [136925] = 7, + ACTIONS(4870), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [134100] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3866), 1, + ACTIONS(4868), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3094), 2, sym_comment, sym_include, - [136948] = 7, + [134123] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4282), 1, + ACTIONS(3734), 1, anon_sym_COLON, - STATE(3092), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(4225), 1, + sym_on_stop_phrase, STATE(3095), 2, sym_comment, sym_include, - [136971] = 7, + [134146] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4282), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3096), 2, sym_comment, sym_include, - [136994] = 7, + ACTIONS(1819), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [134165] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4879), 1, - anon_sym_RPAREN, - STATE(2561), 1, - aux_sym_data_relation_repeat1, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(3091), 1, + aux_sym_for_statement_repeat1, STATE(3097), 2, sym_comment, sym_include, - [137017] = 7, - ACTIONS(59), 1, + [134188] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(4068), 1, - anon_sym_COLON, - STATE(3036), 1, - aux_sym_for_statement_repeat1, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(4872), 1, + sym_identifier, + STATE(42), 1, + sym_parenthesized_expression, STATE(3098), 2, sym_comment, sym_include, - [137040] = 7, + [134211] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3193), 1, + ACTIONS(3924), 1, anon_sym_COLON, - STATE(3094), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3099), 2, sym_comment, sym_include, - [137063] = 7, + [134234] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3193), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4874), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3100), 2, sym_comment, sym_include, - [137086] = 7, + [134257] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4068), 1, + ACTIONS(4082), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3094), 1, aux_sym_for_statement_repeat1, STATE(3101), 2, sym_comment, sym_include, - [137109] = 7, + [134280] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3870), 1, - anon_sym_COLON, - STATE(3096), 1, - aux_sym_for_statement_repeat1, STATE(3102), 2, sym_comment, sym_include, - [137132] = 7, + ACTIONS(4876), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [134299] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3870), 1, + ACTIONS(4082), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3103), 2, sym_comment, sym_include, - [137155] = 7, + [134322] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(4881), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, STATE(3104), 2, sym_comment, sym_include, - [137178] = 7, + ACTIONS(1815), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [134341] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2558), 1, + ACTIONS(3217), 1, anon_sym_COLON, - STATE(3100), 1, + STATE(3099), 1, aux_sym_for_statement_repeat1, STATE(3105), 2, sym_comment, sym_include, - [137201] = 5, + [134364] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3217), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3106), 2, sym_comment, sym_include, - ACTIONS(4883), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [137220] = 7, + [134387] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2558), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3107), 2, sym_comment, sym_include, - [137243] = 7, + ACTIONS(1811), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [134406] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4885), 1, - anon_sym_RPAREN, - STATE(3186), 1, - aux_sym_function_statement_repeat1, + ACTIONS(3922), 1, + anon_sym_COLON, + STATE(3103), 1, + aux_sym_for_statement_repeat1, STATE(3108), 2, sym_comment, sym_include, - [137266] = 7, + [134429] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3162), 1, + ACTIONS(3922), 1, anon_sym_COLON, - STATE(3103), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3109), 2, sym_comment, sym_include, - [137289] = 7, + [134452] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3162), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3110), 2, sym_comment, sym_include, - [137312] = 7, + ACTIONS(1807), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [134471] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2528), 1, - anon_sym_COLON, - STATE(3107), 1, - aux_sym_for_statement_repeat1, STATE(3111), 2, sym_comment, sym_include, - [137335] = 7, + ACTIONS(1803), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [134490] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2528), 1, + ACTIONS(2513), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3106), 1, aux_sym_for_statement_repeat1, STATE(3112), 2, sym_comment, sym_include, - [137358] = 7, - ACTIONS(3), 1, + [134513] = 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(4887), 1, - sym_identifier, - ACTIONS(4889), 1, - sym__terminator, - STATE(3026), 1, - sym_qualified_name, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2513), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3113), 2, sym_comment, sym_include, - [137381] = 7, + [134536] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4364), 1, - sym__terminator, - STATE(2561), 1, - aux_sym_data_relation_repeat1, + ACTIONS(2511), 1, + anon_sym_COLON, + STATE(3027), 1, + aux_sym_for_statement_repeat1, STATE(3114), 2, sym_comment, sym_include, - [137404] = 7, + [134559] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2564), 1, - anon_sym_COLON, - STATE(3110), 1, - aux_sym_for_statement_repeat1, STATE(3115), 2, sym_comment, sym_include, - [137427] = 7, + ACTIONS(1799), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [134578] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2564), 1, + ACTIONS(2511), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3116), 2, sym_comment, sym_include, - [137450] = 7, + [134601] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4364), 1, - sym__terminator, - STATE(3025), 1, - aux_sym_data_relation_repeat1, + ACTIONS(3231), 1, + anon_sym_COLON, + STATE(3109), 1, + aux_sym_for_statement_repeat1, STATE(3117), 2, sym_comment, sym_include, - [137473] = 7, + [134624] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4891), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3231), 1, anon_sym_COLON, - STATE(4336), 1, - sym_on_stop_phrase, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3118), 2, sym_comment, sym_include, - [137496] = 7, + [134647] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, - anon_sym_COMMA, - ACTIONS(4893), 1, - anon_sym_RPAREN, - STATE(3024), 1, - aux_sym_function_statement_repeat1, STATE(3119), 2, sym_comment, sym_include, - [137519] = 7, + ACTIONS(1795), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [134666] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4893), 1, - anon_sym_RPAREN, - STATE(3186), 1, - aux_sym_function_statement_repeat1, + ACTIONS(2515), 1, + anon_sym_COLON, + STATE(3113), 1, + aux_sym_for_statement_repeat1, STATE(3120), 2, sym_comment, sym_include, - [137542] = 7, + [134689] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2405), 1, + ACTIONS(2515), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3121), 2, sym_comment, sym_include, - [137565] = 7, + [134712] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2405), 1, - anon_sym_COLON, - STATE(3112), 1, - aux_sym_for_statement_repeat1, STATE(3122), 2, sym_comment, sym_include, - [137588] = 7, + ACTIONS(1791), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [134731] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3838), 1, - aux_sym__block_terminator_token1, - STATE(1548), 1, - sym__block_terminator, - STATE(1587), 1, - sym__case_terminator, STATE(3123), 2, sym_comment, sym_include, - [137611] = 7, + ACTIONS(1787), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [134750] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2560), 1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4878), 1, anon_sym_COLON, - STATE(3116), 1, - aux_sym_for_statement_repeat1, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3124), 2, sym_comment, sym_include, - [137634] = 7, + [134773] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2560), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4880), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3125), 2, sym_comment, sym_include, - [137657] = 7, + [134796] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2383), 1, + ACTIONS(2519), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3118), 1, aux_sym_for_statement_repeat1, STATE(3126), 2, sym_comment, sym_include, - [137680] = 6, + [134819] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4895), 1, - aux_sym__block_terminator_token1, - STATE(1595), 2, - sym__block_terminator, - sym__procedure_terminator, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2519), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3127), 2, sym_comment, sym_include, - [137701] = 7, + [134842] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(4897), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4882), 1, + anon_sym_COLON, + STATE(4334), 1, + sym_on_stop_phrase, STATE(3128), 2, sym_comment, sym_include, - [137724] = 7, - ACTIONS(3), 1, + [134865] = 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(2333), 1, - sym_identifier, - ACTIONS(4899), 1, - sym__namedot, - STATE(3471), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(4731), 1, + anon_sym_COMMA, + ACTIONS(4884), 1, + anon_sym_RPAREN, + STATE(3448), 1, + aux_sym_function_statement_repeat1, STATE(3129), 2, sym_comment, sym_include, - [137747] = 7, + [134888] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2383), 1, - anon_sym_COLON, - STATE(3121), 1, - aux_sym_for_statement_repeat1, STATE(3130), 2, sym_comment, sym_include, - [137770] = 7, + ACTIONS(1783), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [134907] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3236), 1, + ACTIONS(2402), 1, anon_sym_COLON, - STATE(3281), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3131), 2, sym_comment, sym_include, - [137793] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(4901), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, - STATE(3132), 2, - sym_comment, - sym_include, - [137816] = 7, + [134930] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4903), 1, + ACTIONS(4886), 1, anon_sym_RPAREN, - ACTIONS(4905), 1, + ACTIONS(4888), 1, anon_sym_, - STATE(3258), 1, + STATE(3419), 1, aux_sym_accumulate_statement_repeat1, - STATE(3133), 2, + STATE(3132), 2, sym_comment, sym_include, - [137839] = 7, + [134953] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(4907), 1, + ACTIONS(4890), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, + STATE(3133), 2, + sym_comment, + sym_include, + [134976] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2382), 1, + anon_sym_COLON, + STATE(3322), 1, + aux_sym_for_statement_repeat1, STATE(3134), 2, sym_comment, sym_include, - [137862] = 7, + [134999] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3236), 1, + ACTIONS(2402), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3121), 1, aux_sym_for_statement_repeat1, STATE(3135), 2, sym_comment, sym_include, - [137885] = 7, + [135022] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(4909), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(4731), 1, + anon_sym_COMMA, + ACTIONS(4884), 1, + anon_sym_RPAREN, + STATE(3224), 1, + aux_sym_function_statement_repeat1, STATE(3136), 2, sym_comment, sym_include, - [137908] = 7, + [135045] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4436), 1, + ACTIONS(4892), 1, anon_sym_COLON, - STATE(4309), 1, + STATE(4057), 1, sym_on_stop_phrase, STATE(3137), 2, sym_comment, sym_include, - [137931] = 6, - ACTIONS(3), 1, + [135068] = 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(4911), 1, - sym_identifier, - ACTIONS(4689), 2, - sym__terminator, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2404), 1, anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3138), 2, sym_comment, sym_include, - [137952] = 6, - ACTIONS(3), 1, + [135091] = 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(4913), 1, - sym_identifier, - ACTIONS(4643), 2, - sym__terminator, - anon_sym_COLON, STATE(3139), 2, sym_comment, sym_include, - [137973] = 7, - ACTIONS(3), 1, + ACTIONS(1779), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [135110] = 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(4915), 1, - sym_identifier, - ACTIONS(4917), 1, - aux_sym_primitive_type_token19, - STATE(4230), 1, - sym_qualified_name, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2404), 1, + anon_sym_COLON, + STATE(3268), 1, + aux_sym_for_statement_repeat1, STATE(3140), 2, sym_comment, sym_include, - [137996] = 7, + [135133] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2413), 1, + ACTIONS(2529), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3127), 1, aux_sym_for_statement_repeat1, STATE(3141), 2, sym_comment, sym_include, - [138019] = 7, + [135156] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2413), 1, + ACTIONS(2529), 1, anon_sym_COLON, - STATE(3125), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3142), 2, sym_comment, sym_include, - [138042] = 7, - ACTIONS(3), 1, + [135179] = 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(4919), 1, - sym_identifier, - ACTIONS(4921), 1, - aux_sym_buffer_definition_token3, - STATE(4217), 1, - sym_qualified_name, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4894), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3143), 2, sym_comment, sym_include, - [138065] = 6, + [135202] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4895), 1, - aux_sym__block_terminator_token1, - STATE(1577), 2, - sym__block_terminator, - sym__procedure_terminator, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(4102), 1, + sym__terminator, + STATE(3225), 1, + aux_sym_data_relation_repeat1, STATE(3144), 2, sym_comment, sym_include, - [138086] = 7, + [135225] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4923), 1, - aux_sym__block_terminator_token1, - STATE(1432), 1, - sym__function_terminator, - STATE(1470), 1, - sym__block_terminator, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2356), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3145), 2, sym_comment, sym_include, - [138109] = 7, + [135248] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4923), 1, - aux_sym__block_terminator_token1, - STATE(1412), 1, - sym__function_terminator, - STATE(1470), 1, - sym__block_terminator, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(4102), 1, + sym__terminator, + STATE(2579), 1, + aux_sym_data_relation_repeat1, STATE(3146), 2, sym_comment, sym_include, - [138132] = 7, + [135271] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + sym_identifier, + ACTIONS(4898), 1, + sym__terminator, + STATE(3229), 1, + sym_qualified_name, + STATE(3147), 2, + sym_comment, + sym_include, + [135294] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4923), 1, + STATE(3148), 2, + sym_comment, + sym_include, + ACTIONS(1775), 3, aux_sym__block_terminator_token1, - STATE(1392), 1, - sym__function_terminator, - STATE(1470), 1, - sym__block_terminator, - STATE(3147), 2, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [135313] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2356), 1, + anon_sym_COLON, + STATE(3131), 1, + aux_sym_for_statement_repeat1, + STATE(3149), 2, + sym_comment, + sym_include, + [135336] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(3150), 2, + sym_comment, + sym_include, + ACTIONS(1771), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [135355] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4900), 1, + anon_sym_RPAREN, + ACTIONS(4902), 1, + anon_sym_COMMA, + STATE(3151), 3, sym_comment, sym_include, - [138155] = 7, + aux_sym__function_call_arguments_repeat1, + [135376] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4905), 1, + ACTIONS(4888), 1, anon_sym_, - ACTIONS(4925), 1, + ACTIONS(4905), 1, anon_sym_RPAREN, - STATE(3133), 1, + STATE(3179), 1, aux_sym_accumulate_statement_repeat1, - STATE(3148), 2, - sym_comment, - sym_include, - [138178] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4793), 1, - aux_sym__block_terminator_token1, - STATE(1316), 1, - sym__block_terminator, - STATE(1416), 1, - sym__function_terminator, - STATE(3149), 2, + STATE(3152), 2, sym_comment, sym_include, - [138201] = 7, + [135399] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3904), 1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4597), 1, anon_sym_COLON, - STATE(3101), 1, - aux_sym_for_statement_repeat1, - STATE(3150), 2, + STATE(4307), 1, + sym_on_stop_phrase, + STATE(3153), 2, sym_comment, sym_include, - [138224] = 7, + [135422] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4310), 1, - anon_sym_COLON, - STATE(4279), 1, - sym_on_stop_phrase, - STATE(3151), 2, + STATE(3154), 2, sym_comment, sym_include, - [138247] = 7, + ACTIONS(1767), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [135441] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(4731), 1, anon_sym_COMMA, - ACTIONS(2347), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, - STATE(3152), 2, + ACTIONS(4907), 1, + anon_sym_RPAREN, + STATE(3448), 1, + aux_sym_function_statement_repeat1, + STATE(3155), 2, sym_comment, sym_include, - [138270] = 5, + [135464] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3153), 2, + STATE(3156), 2, sym_comment, sym_include, - ACTIONS(2233), 3, - aux_sym_buffer_definition_token2, - aux_sym_repeat_statement_token1, - aux_sym_do_block_token1, - [138289] = 7, + ACTIONS(1827), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [135483] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3904), 1, + ACTIONS(2394), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, - STATE(3154), 2, + STATE(3157), 2, sym_comment, sym_include, - [138312] = 7, + [135506] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2347), 1, + ACTIONS(2394), 1, anon_sym_COLON, - STATE(3141), 1, + STATE(3142), 1, aux_sym_for_statement_repeat1, - STATE(3155), 2, - sym_comment, - sym_include, - [138335] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4927), 1, - sym_identifier, - ACTIONS(4930), 1, - anon_sym_RPAREN, - STATE(3156), 3, + STATE(3158), 2, sym_comment, sym_include, - aux_sym_query_fields_repeat1, - [138356] = 7, + [135529] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4932), 1, + ACTIONS(4909), 1, sym_identifier, - ACTIONS(4934), 1, + ACTIONS(4911), 1, aux_sym_buffer_definition_token3, - STATE(4154), 1, + STATE(4294), 1, sym_qualified_name, - STATE(3157), 2, + STATE(3159), 2, sym_comment, sym_include, - [138379] = 7, + [135552] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4936), 1, - anon_sym_RPAREN, - STATE(3186), 1, - aux_sym_function_statement_repeat1, - STATE(3158), 2, + ACTIONS(3225), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, + STATE(3160), 2, sym_comment, sym_include, - [138402] = 7, + [135575] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3687), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2537), 1, anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(4138), 1, - sym_on_stop_phrase, - STATE(3159), 2, + STATE(3342), 1, + aux_sym_for_statement_repeat1, + STATE(3161), 2, sym_comment, sym_include, - [138425] = 7, - ACTIONS(59), 1, + [135598] = 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(4739), 1, - anon_sym_COMMA, - ACTIONS(4938), 1, + ACTIONS(4888), 1, + anon_sym_, + ACTIONS(4913), 1, anon_sym_RPAREN, - STATE(3108), 1, - aux_sym_function_statement_repeat1, - STATE(3160), 2, + STATE(3152), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3162), 2, sym_comment, sym_include, - [138448] = 7, + [135621] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, - anon_sym_COMMA, - ACTIONS(4940), 1, - anon_sym_RPAREN, - STATE(3186), 1, - aux_sym_function_statement_repeat1, - STATE(3161), 2, + ACTIONS(4725), 1, + sym__integer_literal, + STATE(788), 1, + sym__decimal_literal, + STATE(2887), 1, + sym_number_literal, + STATE(3163), 2, sym_comment, sym_include, - [138471] = 7, + [135644] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(4942), 1, + ACTIONS(4915), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, - STATE(3162), 2, + STATE(3164), 2, sym_comment, sym_include, - [138494] = 7, + [135667] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3685), 1, - anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(3999), 1, aux_sym_on_error_phrase_token1, - STATE(4248), 1, + ACTIONS(4111), 1, + anon_sym_COLON, + STATE(4277), 1, sym_on_stop_phrase, - STATE(3163), 2, - sym_comment, - sym_include, - [138517] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(4340), 1, - sym__terminator, - STATE(3114), 1, - aux_sym_data_relation_repeat1, - STATE(3164), 2, + STATE(3165), 2, sym_comment, sym_include, - [138540] = 7, + [135690] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2371), 1, + ACTIONS(2374), 1, anon_sym_COLON, - STATE(3495), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, - STATE(3165), 2, - sym_comment, - sym_include, - [138563] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4428), 1, - sym__terminator, - ACTIONS(4944), 1, - sym_identifier, - STATE(3117), 1, - sym_qualified_name, STATE(3166), 2, sym_comment, sym_include, - [138586] = 7, + [135713] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(4946), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(4731), 1, + anon_sym_COMMA, + ACTIONS(4917), 1, + anon_sym_RPAREN, + STATE(3448), 1, + aux_sym_function_statement_repeat1, STATE(3167), 2, sym_comment, sym_include, - [138609] = 7, + [135736] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4340), 1, - sym__terminator, - STATE(2561), 1, - aux_sym_data_relation_repeat1, + ACTIONS(2374), 1, + anon_sym_COLON, + STATE(3157), 1, + aux_sym_for_statement_repeat1, STATE(3168), 2, sym_comment, sym_include, - [138632] = 7, + [135759] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(4948), 1, - anon_sym_LPAREN, - STATE(2), 1, - aux_sym_qualified_name_repeat1, STATE(3169), 2, sym_comment, sym_include, - [138655] = 7, - ACTIONS(59), 1, + ACTIONS(1929), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [135778] = 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(4739), 1, - anon_sym_COMMA, - ACTIONS(4950), 1, - anon_sym_RPAREN, - STATE(3120), 1, - aux_sym_function_statement_repeat1, + ACTIONS(4919), 1, + sym_identifier, + ACTIONS(4921), 1, + aux_sym_buffer_definition_token3, + STATE(4164), 1, + sym_qualified_name, STATE(3170), 2, sym_comment, sym_include, - [138678] = 5, + [135801] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -156323,1691 +152724,1657 @@ static const uint16_t ts_small_parse_table[] = { STATE(3171), 2, sym_comment, sym_include, - ACTIONS(2111), 3, + ACTIONS(1901), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [138697] = 7, + [135820] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3673), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(4214), 1, - sym_on_stop_phrase, STATE(3172), 2, sym_comment, sym_include, - [138720] = 7, + ACTIONS(1903), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [135839] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3691), 1, - aux_sym__block_terminator_token1, - STATE(1086), 1, - sym__case_terminator, - STATE(1113), 1, - sym__block_terminator, + ACTIONS(4725), 1, + sym__integer_literal, + STATE(788), 1, + sym__decimal_literal, + STATE(1874), 1, + sym_number_literal, STATE(3173), 2, sym_comment, sym_include, - [138743] = 7, + [135862] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2554), 1, - anon_sym_COLON, - STATE(3135), 1, - aux_sym_for_statement_repeat1, STATE(3174), 2, sym_comment, sym_include, - [138766] = 7, - ACTIONS(3), 1, + ACTIONS(1907), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [135881] = 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(4952), 1, - sym_identifier, - ACTIONS(4954), 1, - anon_sym_AMP, - ACTIONS(4956), 1, - sym__integer_literal, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(4246), 1, + sym_on_stop_phrase, STATE(3175), 2, sym_comment, sym_include, - [138789] = 7, + [135904] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2554), 1, + ACTIONS(4147), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3176), 2, sym_comment, sym_include, - [138812] = 7, + [135927] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4958), 1, + ACTIONS(4147), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3257), 1, aux_sym_for_statement_repeat1, STATE(3177), 2, sym_comment, sym_include, - [138835] = 7, + [135950] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4960), 1, - anon_sym_COLON, - STATE(3177), 1, - aux_sym_for_statement_repeat1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4923), 1, + anon_sym_LPAREN, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3178), 2, sym_comment, sym_include, - [138858] = 7, - ACTIONS(59), 1, + [135973] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(2371), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, - STATE(3179), 2, + ACTIONS(4925), 1, + anon_sym_RPAREN, + ACTIONS(4927), 1, + anon_sym_, + STATE(3179), 3, sym_comment, sym_include, - [138881] = 7, - ACTIONS(59), 1, + aux_sym_accumulate_statement_repeat1, + [135994] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(4960), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, - STATE(3180), 2, + ACTIONS(93), 1, + sym_identifier, + ACTIONS(4930), 1, + sym__namedot, + STATE(3180), 3, sym_comment, sym_include, - [138904] = 7, + aux_sym_qualified_name_repeat1, + [136015] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4962), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4808), 1, + aux_sym__block_terminator_token1, + STATE(1341), 1, + sym__function_terminator, + STATE(1473), 1, + sym__block_terminator, STATE(3181), 2, sym_comment, sym_include, - [138927] = 7, + [136038] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4306), 1, - anon_sym_COLON, - STATE(3180), 1, - aux_sym_for_statement_repeat1, STATE(3182), 2, sym_comment, sym_include, - [138950] = 7, + ACTIONS(1909), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [136057] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4306), 1, + ACTIONS(3782), 1, anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(4212), 1, + sym_on_stop_phrase, STATE(3183), 2, sym_comment, sym_include, - [138973] = 7, - ACTIONS(59), 1, + [136080] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(4964), 1, - anon_sym_COLON, - STATE(3181), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4933), 1, + sym_identifier, + ACTIONS(4935), 1, + anon_sym_AMP, + ACTIONS(4937), 1, + sym__integer_literal, STATE(3184), 2, sym_comment, sym_include, - [138996] = 7, + [136103] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4964), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3185), 2, sym_comment, sym_include, - [139019] = 6, + ACTIONS(1475), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [136122] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4966), 1, - anon_sym_RPAREN, - ACTIONS(4968), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - STATE(3186), 3, + ACTIONS(4939), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, + STATE(3186), 2, sym_comment, sym_include, - aux_sym_function_statement_repeat1, - [139040] = 7, + [136145] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3924), 1, - anon_sym_COLON, - STATE(3183), 1, - aux_sym_for_statement_repeat1, STATE(3187), 2, sym_comment, sym_include, - [139063] = 7, + ACTIONS(4941), 3, + aux_sym_index_tuning_token2, + aux_sym_index_tuning_token3, + aux_sym_index_tuning_token4, + [136164] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3924), 1, + ACTIONS(4943), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3186), 1, aux_sym_for_statement_repeat1, STATE(3188), 2, sym_comment, sym_include, - [139086] = 7, + [136187] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4296), 1, + ACTIONS(4943), 1, anon_sym_COLON, - STATE(3185), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3189), 2, sym_comment, sym_include, - [139109] = 7, - ACTIONS(3), 1, + [136210] = 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(4971), 1, - sym_identifier, - ACTIONS(4973), 1, - aux_sym_input_expression_token2, - STATE(39), 1, - sym_qualified_name, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(4945), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3190), 2, sym_comment, sym_include, - [139132] = 7, + [136233] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4296), 1, + ACTIONS(4161), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3189), 1, aux_sym_for_statement_repeat1, STATE(3191), 2, sym_comment, sym_include, - [139155] = 7, + [136256] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4975), 1, - anon_sym_RPAREN, - STATE(3158), 1, - aux_sym_function_statement_repeat1, + ACTIONS(4161), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3192), 2, sym_comment, sym_include, - [139178] = 7, + [136279] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3160), 1, + ACTIONS(4947), 1, anon_sym_COLON, - STATE(3188), 1, + STATE(3190), 1, aux_sym_for_statement_repeat1, STATE(3193), 2, sym_comment, sym_include, - [139201] = 7, + [136302] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3160), 1, + ACTIONS(4947), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3194), 2, sym_comment, sym_include, - [139224] = 7, + [136325] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4793), 1, - aux_sym__block_terminator_token1, - STATE(1316), 1, - sym__block_terminator, - STATE(1352), 1, - sym__function_terminator, STATE(3195), 2, sym_comment, sym_include, - [139247] = 7, + ACTIONS(1757), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [136344] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3938), 1, - anon_sym_COLON, - STATE(3191), 1, - aux_sym_for_statement_repeat1, STATE(3196), 2, sym_comment, sym_include, - [139270] = 7, + ACTIONS(4949), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [136363] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3938), 1, + ACTIONS(3875), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3192), 1, aux_sym_for_statement_repeat1, STATE(3197), 2, sym_comment, sym_include, - [139293] = 5, + [136386] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3198), 2, sym_comment, sym_include, - ACTIONS(4977), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [139312] = 5, + [136409] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(4163), 1, + anon_sym_COLON, + STATE(3194), 1, + aux_sym_for_statement_repeat1, STATE(3199), 2, sym_comment, sym_include, - ACTIONS(4979), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [139331] = 7, + [136432] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2566), 1, + ACTIONS(4163), 1, anon_sym_COLON, - STATE(3194), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3200), 2, sym_comment, sym_include, - [139354] = 7, + [136455] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2566), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3201), 2, sym_comment, sym_include, - [139377] = 7, + ACTIONS(1753), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [136474] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, ACTIONS(3178), 1, anon_sym_COLON, - STATE(3197), 1, + STATE(3198), 1, aux_sym_for_statement_repeat1, STATE(3202), 2, sym_comment, sym_include, - [139400] = 7, + [136497] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, ACTIONS(3178), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3203), 2, sym_comment, sym_include, - [139423] = 7, + [136520] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3180), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4951), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3204), 2, sym_comment, sym_include, - [139446] = 7, - ACTIONS(3), 1, + [136543] = 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(4981), 1, - sym_identifier, - ACTIONS(4983), 1, - anon_sym_RPAREN, - STATE(3156), 1, - aux_sym_query_fields_repeat1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3873), 1, + anon_sym_COLON, + STATE(3200), 1, + aux_sym_for_statement_repeat1, STATE(3205), 2, sym_comment, sym_include, - [139469] = 7, + [136566] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4985), 1, - aux_sym_buffer_definition_token2, - ACTIONS(4987), 1, - aux_sym_repeat_statement_token1, - ACTIONS(4989), 1, - aux_sym_do_block_token1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3873), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3206), 2, sym_comment, sym_include, - [139492] = 7, + [136589] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2562), 1, + ACTIONS(3838), 1, anon_sym_COLON, - STATE(3201), 1, + STATE(3263), 1, aux_sym_for_statement_repeat1, STATE(3207), 2, sym_comment, sym_include, - [139515] = 7, + [136612] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2562), 1, + ACTIONS(2549), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3203), 1, aux_sym_for_statement_repeat1, STATE(3208), 2, sym_comment, sym_include, - [139538] = 7, - ACTIONS(59), 1, + [136635] = 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(4991), 1, - sym__integer_literal, - STATE(11), 1, - sym__decimal_literal, - STATE(2252), 1, - sym_number_literal, + ACTIONS(81), 1, + sym_identifier, + ACTIONS(4953), 1, + sym__namedot, + STATE(3180), 1, + aux_sym_qualified_name_repeat1, STATE(3209), 2, sym_comment, sym_include, - [139561] = 7, + [136658] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4975), 1, - anon_sym_RPAREN, - STATE(3186), 1, - aux_sym_function_statement_repeat1, + ACTIONS(2549), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3210), 2, sym_comment, sym_include, - [139584] = 7, + [136681] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2532), 1, - anon_sym_COLON, - STATE(3203), 1, - aux_sym_for_statement_repeat1, STATE(3211), 2, sym_comment, sym_include, - [139607] = 7, + ACTIONS(1763), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [136700] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2532), 1, + ACTIONS(3186), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3206), 1, aux_sym_for_statement_repeat1, STATE(3212), 2, sym_comment, sym_include, - [139630] = 7, + [136723] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4993), 1, - anon_sym_RPAREN, - STATE(3161), 1, - aux_sym_function_statement_repeat1, + ACTIONS(3186), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3213), 2, sym_comment, sym_include, - [139653] = 7, + [136746] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4995), 1, - anon_sym_COLON, - STATE(4133), 1, - sym_on_stop_phrase, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(4165), 1, + aux_sym_data_relation_token2, + STATE(3270), 1, + aux_sym_data_relation_repeat1, STATE(3214), 2, sym_comment, sym_include, - [139676] = 7, - ACTIONS(59), 1, + [136769] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(2407), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3215), 2, sym_comment, sym_include, - [139699] = 7, + ACTIONS(4955), 3, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + [136788] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2407), 1, + ACTIONS(2547), 1, anon_sym_COLON, - STATE(3208), 1, + STATE(3210), 1, aux_sym_for_statement_repeat1, STATE(3216), 2, sym_comment, sym_include, - [139722] = 7, + [136811] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3180), 1, + ACTIONS(2547), 1, anon_sym_COLON, - STATE(3154), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3217), 2, sym_comment, sym_include, - [139745] = 7, - ACTIONS(59), 1, + [136834] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(2534), 1, - anon_sym_COLON, - STATE(3212), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4957), 1, + sym_identifier, + ACTIONS(4959), 1, + aux_sym_buffer_definition_token3, + STATE(4075), 1, + sym_qualified_name, STATE(3218), 2, sym_comment, sym_include, - [139768] = 7, + [136857] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2534), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3219), 2, sym_comment, sym_include, - [139791] = 7, + ACTIONS(1749), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [136876] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2369), 1, + ACTIONS(2543), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3213), 1, aux_sym_for_statement_repeat1, STATE(3220), 2, sym_comment, sym_include, - [139814] = 7, + [136899] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2550), 1, - anon_sym_COLON, - STATE(3176), 1, - aux_sym_for_statement_repeat1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(4961), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3221), 2, sym_comment, sym_include, - [139837] = 7, + [136922] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2550), 1, + ACTIONS(2543), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3222), 2, sym_comment, sym_include, - [139860] = 7, + [136945] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2369), 1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4963), 1, anon_sym_COLON, - STATE(3215), 1, - aux_sym_for_statement_repeat1, + STATE(4131), 1, + sym_on_stop_phrase, STATE(3223), 2, sym_comment, sym_include, - [139883] = 7, - ACTIONS(3), 1, + [136968] = 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(4905), 1, - anon_sym_, - ACTIONS(4997), 1, + ACTIONS(4731), 1, + anon_sym_COMMA, + ACTIONS(4965), 1, anon_sym_RPAREN, - STATE(3258), 1, - aux_sym_accumulate_statement_repeat1, + STATE(3448), 1, + aux_sym_function_statement_repeat1, STATE(3224), 2, sym_comment, sym_include, - [139906] = 7, + [136991] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, - aux_sym_inherits_token1, - ACTIONS(4092), 1, - anon_sym_COLON, - STATE(4088), 1, - sym_inherits, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(4181), 1, + sym__terminator, + STATE(2579), 1, + aux_sym_data_relation_repeat1, STATE(3225), 2, sym_comment, sym_include, - [139929] = 7, + [137014] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4438), 1, - anon_sym_COLON, - STATE(4106), 1, - sym_on_stop_phrase, STATE(3226), 2, sym_comment, sym_include, - [139952] = 5, + ACTIONS(1745), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [137033] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2398), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3227), 2, sym_comment, sym_include, - ACTIONS(4999), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [139971] = 7, - ACTIONS(3), 1, + [137056] = 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(4981), 1, - sym_identifier, - ACTIONS(5001), 1, - anon_sym_RPAREN, - STATE(3205), 1, - aux_sym_query_fields_repeat1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2398), 1, + anon_sym_COLON, + STATE(3217), 1, + aux_sym_for_statement_repeat1, STATE(3228), 2, sym_comment, sym_include, - [139994] = 7, + [137079] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(3907), 1, anon_sym_COMMA, - ACTIONS(2419), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4181), 1, + sym__terminator, + STATE(3272), 1, + aux_sym_data_relation_repeat1, STATE(3229), 2, sym_comment, sym_include, - [140017] = 7, + [137102] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2419), 1, - anon_sym_COLON, - STATE(3219), 1, - aux_sym_for_statement_repeat1, STATE(3230), 2, sym_comment, sym_include, - [140040] = 7, - ACTIONS(3), 1, + ACTIONS(1741), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [137121] = 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(5003), 1, - sym_identifier, - ACTIONS(5005), 1, - aux_sym_buffer_definition_token3, - STATE(4285), 1, - sym_qualified_name, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2541), 1, + anon_sym_COLON, + STATE(3222), 1, + aux_sym_for_statement_repeat1, STATE(3231), 2, sym_comment, sym_include, - [140063] = 7, + [137144] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_RPAREN, - STATE(3186), 1, - aux_sym_function_statement_repeat1, + ACTIONS(2541), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3232), 2, sym_comment, sym_include, - [140086] = 7, - ACTIONS(3), 1, + [137167] = 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(4905), 1, - anon_sym_, - ACTIONS(5009), 1, + ACTIONS(4731), 1, + anon_sym_COMMA, + ACTIONS(4965), 1, anon_sym_RPAREN, - STATE(3224), 1, - aux_sym_accumulate_statement_repeat1, + STATE(3273), 1, + aux_sym_function_statement_repeat1, STATE(3233), 2, sym_comment, sym_include, - [140109] = 5, - ACTIONS(59), 1, + [137190] = 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(4967), 1, + sym_identifier, + ACTIONS(4969), 1, + aux_sym_input_expression_token2, + STATE(733), 1, + sym_qualified_name, STATE(3234), 2, sym_comment, sym_include, - ACTIONS(5011), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [140128] = 5, - ACTIONS(59), 1, + [137213] = 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(4971), 1, + sym_identifier, + ACTIONS(4973), 1, + aux_sym_input_expression_token2, + STATE(1393), 1, + sym_qualified_name, STATE(3235), 2, sym_comment, sym_include, - ACTIONS(5013), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [140147] = 7, - ACTIONS(59), 1, + [137236] = 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(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4166), 1, - anon_sym_COLON, - STATE(4076), 1, - sym_on_stop_phrase, + ACTIONS(913), 1, + anon_sym_LPAREN, + ACTIONS(4975), 1, + sym_identifier, + STATE(726), 1, + sym_parenthesized_expression, STATE(3236), 2, sym_comment, sym_include, - [140170] = 7, - ACTIONS(3), 1, + [137259] = 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(5015), 1, - sym_identifier, - ACTIONS(5017), 1, - aux_sym_input_expression_token2, - STATE(986), 1, - sym_qualified_name, STATE(3237), 2, sym_comment, sym_include, - [140193] = 7, + ACTIONS(4977), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [137278] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2403), 1, + ACTIONS(2342), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3238), 2, sym_comment, sym_include, - [140216] = 7, + [137301] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1142), 1, - anon_sym_LPAREN, - ACTIONS(5019), 1, + ACTIONS(4979), 1, sym_identifier, - STATE(744), 1, - sym_parenthesized_expression, + ACTIONS(4981), 1, + sym__terminator, + STATE(3279), 1, + sym_qualified_name, STATE(3239), 2, sym_comment, sym_include, - [140239] = 7, - ACTIONS(3), 1, + [137324] = 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(932), 1, - anon_sym_LPAREN, - ACTIONS(5021), 1, - sym_identifier, - STATE(933), 1, - sym_parenthesized_expression, STATE(3240), 2, sym_comment, sym_include, - [140262] = 6, - ACTIONS(3), 1, + ACTIONS(1737), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [137343] = 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(5023), 1, - sym_identifier, - ACTIONS(5025), 2, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4983), 1, + aux_sym_buffer_definition_token2, + ACTIONS(4985), 1, + aux_sym_repeat_statement_token1, + ACTIONS(4987), 1, + aux_sym_do_block_token1, STATE(3241), 2, sym_comment, sym_include, - [140283] = 7, + [137366] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3836), 1, - aux_sym__block_terminator_token1, - STATE(1182), 1, - sym__block_terminator, - STATE(1240), 1, - sym__case_terminator, STATE(3242), 2, sym_comment, sym_include, - [140306] = 7, - ACTIONS(59), 1, + ACTIONS(1935), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [137385] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(2556), 1, - anon_sym_COLON, - STATE(3204), 1, - aux_sym_for_statement_repeat1, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(4989), 1, + sym_identifier, + STATE(1391), 1, + sym_parenthesized_expression, STATE(3243), 2, sym_comment, sym_include, - [140329] = 7, + [137408] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2403), 1, + ACTIONS(2342), 1, anon_sym_COLON, - STATE(3229), 1, + STATE(3227), 1, aux_sym_for_statement_repeat1, STATE(3244), 2, sym_comment, sym_include, - [140352] = 7, + [137431] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2556), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3245), 2, sym_comment, sym_include, - [140375] = 7, + ACTIONS(1733), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [137450] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5027), 1, - sym_identifier, - ACTIONS(5029), 1, - aux_sym_buffer_definition_token3, - STATE(4369), 1, - sym_qualified_name, + ACTIONS(4888), 1, + anon_sym_, + ACTIONS(4991), 1, + anon_sym_RPAREN, + STATE(3179), 1, + aux_sym_accumulate_statement_repeat1, STATE(3246), 2, sym_comment, sym_include, - [140398] = 7, + [137473] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(5031), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4472), 1, + anon_sym_COLON, + STATE(4104), 1, + sym_on_stop_phrase, STATE(3247), 2, sym_comment, sym_include, - [140421] = 7, + [137496] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, - anon_sym_COMMA, - ACTIONS(5033), 1, - anon_sym_RPAREN, - STATE(3210), 1, - aux_sym_function_statement_repeat1, STATE(3248), 2, sym_comment, sym_include, - [140444] = 7, + ACTIONS(1729), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [137515] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3876), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4216), 1, - sym__terminator, - STATE(3168), 1, - aux_sym_data_relation_repeat1, + ACTIONS(2408), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3249), 2, sym_comment, sym_include, - [140467] = 7, + [137538] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3743), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2408), 1, anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(4045), 1, - sym_on_stop_phrase, + STATE(3232), 1, + aux_sym_for_statement_repeat1, STATE(3250), 2, sym_comment, sym_include, - [140490] = 7, - ACTIONS(59), 1, + [137561] = 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(69), 1, - sym__namedot, - ACTIONS(5035), 1, - anon_sym_LPAREN, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(4993), 1, + sym_identifier, + ACTIONS(4995), 1, + aux_sym_buffer_definition_token3, + STATE(4311), 1, + sym_qualified_name, STATE(3251), 2, sym_comment, sym_include, - [140513] = 7, - ACTIONS(59), 1, + [137584] = 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(3790), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(4046), 1, - sym_on_stop_phrase, + ACTIONS(4888), 1, + anon_sym_, + ACTIONS(4997), 1, + anon_sym_RPAREN, + STATE(3246), 1, + aux_sym_accumulate_statement_repeat1, STATE(3252), 2, sym_comment, sym_include, - [140536] = 7, - ACTIONS(59), 1, + [137607] = 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(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5037), 1, - anon_sym_COLON, - STATE(4090), 1, - sym_on_stop_phrase, + ACTIONS(4999), 1, + sym_identifier, + ACTIONS(5001), 1, + aux_sym_primitive_type_token19, + STATE(4321), 1, + sym_qualified_name, STATE(3253), 2, sym_comment, sym_include, - [140559] = 7, + [137630] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2415), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3254), 2, sym_comment, sym_include, - [140582] = 7, + ACTIONS(1725), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [137649] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2415), 1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4207), 1, anon_sym_COLON, - STATE(3222), 1, - aux_sym_for_statement_repeat1, + STATE(4074), 1, + sym_on_stop_phrase, STATE(3255), 2, sym_comment, sym_include, - [140605] = 7, + [137672] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4304), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2354), 1, anon_sym_COLON, - STATE(4460), 1, - sym_on_stop_phrase, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3256), 2, sym_comment, sym_include, - [140628] = 7, - ACTIONS(3), 1, + [137695] = 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(5039), 1, - sym_identifier, - ACTIONS(5041), 1, - anon_sym_AMP, - ACTIONS(5043), 1, - sym__integer_literal, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(5003), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3257), 2, sym_comment, sym_include, - [140651] = 6, - ACTIONS(3), 1, + [137718] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5045), 1, - anon_sym_RPAREN, - ACTIONS(5047), 1, - anon_sym_, - STATE(3258), 3, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(5003), 1, + anon_sym_COLON, + STATE(3327), 1, + aux_sym_for_statement_repeat1, + STATE(3258), 2, sym_comment, sym_include, - aux_sym_accumulate_statement_repeat1, - [140672] = 7, + [137741] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(5050), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3259), 2, sym_comment, sym_include, - [140695] = 7, + ACTIONS(1899), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [137760] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(5052), 1, + ACTIONS(2354), 1, anon_sym_COLON, - STATE(3259), 1, + STATE(3249), 1, aux_sym_for_statement_repeat1, STATE(3260), 2, sym_comment, sym_include, - [140718] = 6, + [137783] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5054), 1, - aux_sym__block_terminator_token1, - STATE(1314), 2, - sym__block_terminator, - sym__procedure_terminator, STATE(3261), 2, sym_comment, sym_include, - [140739] = 7, - ACTIONS(59), 1, + ACTIONS(1721), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [137802] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(5052), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(5005), 1, + sym_identifier, + ACTIONS(5007), 1, + aux_sym_buffer_definition_token3, + STATE(4370), 1, + sym_qualified_name, STATE(3262), 2, sym_comment, sym_include, - [140762] = 7, + [137825] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(5056), 1, + ACTIONS(4223), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3263), 2, sym_comment, sym_include, - [140785] = 7, + [137848] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4042), 1, - anon_sym_COLON, - STATE(3262), 1, - aux_sym_for_statement_repeat1, STATE(3264), 2, sym_comment, sym_include, - [140808] = 7, + ACTIONS(1717), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [137867] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4042), 1, + ACTIONS(4223), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3373), 1, aux_sym_for_statement_repeat1, STATE(3265), 2, sym_comment, sym_include, - [140831] = 7, + [137890] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(5058), 1, - anon_sym_COLON, - STATE(3263), 1, - aux_sym_for_statement_repeat1, STATE(3266), 2, sym_comment, sym_include, - [140854] = 7, + ACTIONS(1911), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [137909] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(5058), 1, + ACTIONS(3812), 1, anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(4043), 1, + sym_on_stop_phrase, STATE(3267), 2, sym_comment, sym_include, - [140877] = 5, + [137932] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2539), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3268), 2, sym_comment, sym_include, - ACTIONS(5060), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [140896] = 7, + [137955] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3991), 1, + ACTIONS(2539), 1, anon_sym_COLON, - STATE(3265), 1, + STATE(3161), 1, aux_sym_for_statement_repeat1, STATE(3269), 2, sym_comment, sym_include, - [140919] = 7, + [137978] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(3907), 1, anon_sym_COMMA, - ACTIONS(3991), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(5009), 1, + aux_sym_data_relation_token2, + STATE(2579), 1, + aux_sym_data_relation_repeat1, STATE(3270), 2, sym_comment, sym_include, - [140942] = 7, + [138001] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4040), 1, - anon_sym_COLON, - STATE(3267), 1, - aux_sym_for_statement_repeat1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(5011), 1, + anon_sym_LPAREN, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3271), 2, sym_comment, sym_include, - [140965] = 7, + [138024] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(3907), 1, anon_sym_COMMA, - ACTIONS(4040), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4253), 1, + sym__terminator, + STATE(2579), 1, + aux_sym_data_relation_repeat1, STATE(3272), 2, sym_comment, sym_include, - [140988] = 7, + [138047] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, + ACTIONS(4731), 1, anon_sym_COMMA, - ACTIONS(5062), 1, + ACTIONS(5013), 1, anon_sym_RPAREN, - STATE(3232), 1, + STATE(3448), 1, aux_sym_function_statement_repeat1, STATE(3273), 2, sym_comment, sym_include, - [141011] = 7, + [138070] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3240), 1, - anon_sym_COLON, - STATE(3270), 1, - aux_sym_for_statement_repeat1, STATE(3274), 2, sym_comment, sym_include, - [141034] = 7, + ACTIONS(1709), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [138089] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3240), 1, + ACTIONS(3802), 1, anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(4024), 1, + sym_on_stop_phrase, STATE(3275), 2, sym_comment, sym_include, - [141057] = 7, - ACTIONS(59), 1, + [138112] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(3987), 1, - anon_sym_COLON, - STATE(3272), 1, - aux_sym_for_statement_repeat1, + ACTIONS(5015), 1, + sym_identifier, + ACTIONS(5017), 1, + aux_sym_buffer_definition_token3, + STATE(4317), 1, + sym_qualified_name, STATE(3276), 2, sym_comment, sym_include, - [141080] = 7, - ACTIONS(59), 1, + [138135] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(3987), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(5019), 1, + sym_identifier, + ACTIONS(5021), 1, + anon_sym_AMP, + ACTIONS(5023), 1, + sym__integer_literal, STATE(3277), 2, sym_comment, sym_include, - [141103] = 5, + [138158] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -158017,196 +154384,201 @@ static const uint16_t ts_small_parse_table[] = { STATE(3278), 2, sym_comment, sym_include, - ACTIONS(2077), 3, + ACTIONS(1705), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [141122] = 7, + [138177] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(3907), 1, anon_sym_COMMA, - ACTIONS(2552), 1, - anon_sym_COLON, - STATE(3275), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4253), 1, + sym__terminator, + STATE(3339), 1, + aux_sym_data_relation_repeat1, STATE(3279), 2, sym_comment, sym_include, - [141145] = 7, + [138200] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2552), 1, + ACTIONS(5025), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3280), 2, sym_comment, sym_include, - [141168] = 7, + [138223] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3848), 1, + ACTIONS(5027), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3280), 1, aux_sym_for_statement_repeat1, STATE(3281), 2, sym_comment, sym_include, - [141191] = 7, + [138246] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3254), 1, + ACTIONS(5027), 1, anon_sym_COLON, - STATE(3277), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3282), 2, sym_comment, sym_include, - [141214] = 7, + [138269] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3254), 1, + ACTIONS(5029), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3283), 2, sym_comment, sym_include, - [141237] = 5, + [138292] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(4731), 1, + anon_sym_COMMA, + ACTIONS(5031), 1, + anon_sym_RPAREN, + STATE(3481), 1, + aux_sym_function_statement_repeat1, STATE(3284), 2, sym_comment, sym_include, - ACTIONS(5064), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [141256] = 5, + [138315] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(4261), 1, + anon_sym_COLON, + STATE(3282), 1, + aux_sym_for_statement_repeat1, STATE(3285), 2, sym_comment, sym_include, - ACTIONS(5066), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [141275] = 6, - ACTIONS(3), 1, + [138338] = 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(5068), 1, - sym_identifier, - ACTIONS(5070), 2, + ACTIONS(2136), 1, anon_sym_COMMA, + ACTIONS(4261), 1, anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3286), 2, sym_comment, sym_include, - [141296] = 7, + [138361] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2536), 1, + ACTIONS(5033), 1, anon_sym_COLON, - STATE(3280), 1, + STATE(3283), 1, aux_sym_for_statement_repeat1, STATE(3287), 2, sym_comment, sym_include, - [141319] = 7, + [138384] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2536), 1, + ACTIONS(5033), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3288), 2, sym_comment, sym_include, - [141342] = 7, + [138407] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3776), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(4082), 1, - sym_on_stop_phrase, STATE(3289), 2, sym_comment, sym_include, - [141365] = 5, + ACTIONS(1701), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [138426] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3836), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, STATE(3290), 2, sym_comment, sym_include, - ACTIONS(2061), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [141384] = 5, + [138449] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -158216,133 +154588,136 @@ static const uint16_t ts_small_parse_table[] = { STATE(3291), 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, - [141403] = 5, + ACTIONS(2089), 3, + aux_sym_buffer_definition_token2, + aux_sym_repeat_statement_token1, + aux_sym_do_block_token1, + [138468] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3836), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3292), 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, - [141422] = 5, + [138491] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3293), 2, + ACTIONS(100), 1, + anon_sym_LPAREN, + ACTIONS(5035), 1, + sym__namecolon, + STATE(3293), 3, sym_comment, sym_include, - ACTIONS(2055), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [141441] = 7, + aux_sym_object_access_repeat1, + [138512] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2530), 1, + ACTIONS(4263), 1, anon_sym_COLON, - STATE(3283), 1, + STATE(3288), 1, aux_sym_for_statement_repeat1, STATE(3294), 2, sym_comment, sym_include, - [141464] = 7, + [138535] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2530), 1, + ACTIONS(4263), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3295), 2, sym_comment, sym_include, - [141487] = 7, + [138558] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5072), 1, - anon_sym_COLON, - STATE(4129), 1, - sym_on_stop_phrase, + ACTIONS(4731), 1, + anon_sym_COMMA, + ACTIONS(5013), 1, + anon_sym_RPAREN, + STATE(3341), 1, + aux_sym_function_statement_repeat1, STATE(3296), 2, sym_comment, sym_include, - [141510] = 7, + [138581] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2538), 1, - anon_sym_COLON, - STATE(3245), 1, - aux_sym_for_statement_repeat1, STATE(3297), 2, sym_comment, sym_include, - [141533] = 7, + ACTIONS(1913), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [138600] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2538), 1, + ACTIONS(3182), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3292), 1, aux_sym_for_statement_repeat1, STATE(3298), 2, sym_comment, sym_include, - [141556] = 5, + [138623] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3182), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3299), 2, sym_comment, sym_include, - ACTIONS(2015), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [141575] = 5, + [138646] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -158352,821 +154727,877 @@ static const uint16_t ts_small_parse_table[] = { STATE(3300), 2, sym_comment, sym_include, - ACTIONS(2011), 3, + ACTIONS(1695), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [141594] = 7, + [138665] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2417), 1, + ACTIONS(3834), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3295), 1, aux_sym_for_statement_repeat1, STATE(3301), 2, sym_comment, sym_include, - [141617] = 5, + [138688] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3834), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3302), 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, - [141636] = 7, + [138711] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2417), 1, - anon_sym_COLON, - STATE(3288), 1, - aux_sym_for_statement_repeat1, STATE(3303), 2, sym_comment, sym_include, - [141659] = 5, + ACTIONS(1691), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [138730] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2545), 1, + anon_sym_COLON, + STATE(3299), 1, + aux_sym_for_statement_repeat1, STATE(3304), 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, - [141678] = 5, + [138753] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2545), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3305), 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, - [141697] = 5, + [138776] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3133), 1, + anon_sym_COLON, + STATE(3302), 1, + aux_sym_for_statement_repeat1, STATE(3306), 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, - [141716] = 7, + [138799] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3723), 1, - aux_sym__block_terminator_token1, - STATE(1306), 1, - sym__case_terminator, - STATE(1453), 1, - sym__block_terminator, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3133), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3307), 2, sym_comment, sym_include, - [141739] = 5, + [138822] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(5038), 1, + aux_sym__block_terminator_token1, + STATE(1425), 1, + sym__function_terminator, + STATE(1478), 1, + sym__block_terminator, STATE(3308), 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, - [141758] = 5, + [138845] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(5040), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3309), 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, - [141777] = 7, + [138868] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2546), 1, - anon_sym_COLON, - STATE(3295), 1, - aux_sym_for_statement_repeat1, + ACTIONS(5038), 1, + aux_sym__block_terminator_token1, + STATE(1437), 1, + sym__function_terminator, + STATE(1478), 1, + sym__block_terminator, STATE(3310), 2, sym_comment, sym_include, - [141800] = 7, + [138891] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(3907), 1, anon_sym_COMMA, - ACTIONS(2546), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4109), 1, + sym__terminator, + STATE(3016), 1, + aux_sym_data_relation_repeat1, STATE(3311), 2, sym_comment, sym_include, - [141823] = 5, + [138914] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2531), 1, + anon_sym_COLON, + STATE(3305), 1, + aux_sym_for_statement_repeat1, STATE(3312), 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, - [141842] = 7, + [138937] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2379), 1, + ACTIONS(2531), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3313), 2, sym_comment, sym_include, - [141865] = 7, + [138960] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(5074), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2517), 1, + anon_sym_COLON, + STATE(3307), 1, + aux_sym_for_statement_repeat1, STATE(3314), 2, sym_comment, sym_include, - [141888] = 7, + [138983] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2379), 1, + ACTIONS(2517), 1, anon_sym_COLON, - STATE(3301), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3315), 2, sym_comment, sym_include, - [141911] = 5, + [139006] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5042), 1, + anon_sym_COLON, + STATE(4138), 1, + sym_on_stop_phrase, STATE(3316), 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, - [141930] = 7, - ACTIONS(3), 1, + [139029] = 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(4905), 1, - anon_sym_, - ACTIONS(5076), 1, - anon_sym_RPAREN, - STATE(3258), 1, - aux_sym_accumulate_statement_repeat1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(5044), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3317), 2, sym_comment, sym_include, - [141953] = 5, + [139052] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(5046), 1, + anon_sym_COLON, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3318), 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, - [141972] = 5, + [139075] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2390), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3319), 2, sym_comment, sym_include, - ACTIONS(1955), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [141991] = 7, + [139098] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(5078), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2396), 1, + anon_sym_COLON, + STATE(3116), 1, + aux_sym_for_statement_repeat1, STATE(3320), 2, sym_comment, sym_include, - [142014] = 7, + [139121] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4725), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2390), 1, anon_sym_COLON, - STATE(4143), 1, - sym_on_stop_phrase, + STATE(3313), 1, + aux_sym_for_statement_repeat1, STATE(3321), 2, sym_comment, sym_include, - [142037] = 5, + [139144] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2396), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3322), 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, - [142056] = 5, + [139167] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(5038), 1, + aux_sym__block_terminator_token1, + STATE(1449), 1, + sym__function_terminator, + STATE(1478), 1, + sym__block_terminator, STATE(3323), 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, - [142075] = 5, + [139190] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2535), 1, + anon_sym_COLON, + STATE(3315), 1, + aux_sym_for_statement_repeat1, STATE(3324), 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, - [142094] = 5, + [139213] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2535), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3325), 2, sym_comment, sym_include, - ACTIONS(1939), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142113] = 7, + [139236] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2423), 1, + ACTIONS(2366), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3326), 2, sym_comment, sym_include, - [142136] = 5, + [139259] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(5048), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3327), 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, - [142155] = 7, + [139282] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2423), 1, + ACTIONS(2366), 1, anon_sym_COLON, - STATE(3311), 1, + STATE(3319), 1, aux_sym_for_statement_repeat1, STATE(3328), 2, sym_comment, sym_include, - [142178] = 7, - ACTIONS(3), 1, + [139305] = 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(5080), 1, - sym_identifier, - ACTIONS(5082), 1, - aux_sym_buffer_definition_token3, - STATE(4288), 1, - sym_qualified_name, STATE(3329), 2, sym_comment, sym_include, - [142201] = 5, - ACTIONS(59), 1, + ACTIONS(1713), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [139324] = 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(4888), 1, + anon_sym_, + ACTIONS(5050), 1, + anon_sym_RPAREN, + STATE(3179), 1, + aux_sym_accumulate_statement_repeat1, STATE(3330), 2, sym_comment, sym_include, - ACTIONS(1931), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142220] = 7, + [139347] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, - aux_sym__block_terminator_token1, - STATE(3327), 1, - sym__block_terminator, - STATE(3356), 1, - sym__case_terminator, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4406), 1, + anon_sym_COLON, + STATE(4171), 1, + sym_on_stop_phrase, STATE(3331), 2, sym_comment, sym_include, - [142243] = 5, + [139370] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(5052), 1, + anon_sym_COLON, + STATE(3358), 1, + aux_sym_for_statement_repeat1, STATE(3332), 2, sym_comment, sym_include, - ACTIONS(1927), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142262] = 5, - ACTIONS(59), 1, + [139393] = 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(5054), 1, + sym_identifier, + ACTIONS(5056), 1, + anon_sym_RPAREN, + STATE(3359), 1, + sym_qualified_name, STATE(3333), 2, sym_comment, sym_include, - ACTIONS(1917), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142281] = 5, + [139416] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(5058), 1, + anon_sym_LPAREN, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3334), 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, - [142300] = 7, - ACTIONS(3), 1, + [139439] = 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(4905), 1, - anon_sym_, - ACTIONS(5084), 1, - anon_sym_RPAREN, - STATE(3317), 1, - aux_sym_accumulate_statement_repeat1, STATE(3335), 2, sym_comment, sym_include, - [142323] = 5, + ACTIONS(1687), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [139458] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2388), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3336), 2, sym_comment, sym_include, - ACTIONS(1907), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142342] = 5, + [139481] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2388), 1, + anon_sym_COLON, + STATE(3325), 1, + aux_sym_for_statement_repeat1, STATE(3337), 2, sym_comment, sym_include, - ACTIONS(1903), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142361] = 5, - ACTIONS(59), 1, + [139504] = 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(5060), 1, + sym_identifier, + ACTIONS(5062), 1, + aux_sym_buffer_definition_token3, + STATE(4496), 1, + sym_qualified_name, STATE(3338), 2, sym_comment, sym_include, - ACTIONS(1899), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142380] = 5, + [139527] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(5064), 1, + sym__terminator, + STATE(2579), 1, + aux_sym_data_relation_repeat1, STATE(3339), 2, sym_comment, sym_include, - ACTIONS(1895), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142399] = 5, - ACTIONS(59), 1, + [139550] = 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(4888), 1, + anon_sym_, + ACTIONS(5066), 1, + anon_sym_RPAREN, + STATE(3330), 1, + aux_sym_accumulate_statement_repeat1, STATE(3340), 2, sym_comment, sym_include, - ACTIONS(5086), 3, - aux_sym_index_tuning_token2, - aux_sym_index_tuning_token3, - aux_sym_index_tuning_token4, - [142418] = 7, + [139573] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4023), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(4157), 1, - sym_on_stop_phrase, + ACTIONS(4731), 1, + anon_sym_COMMA, + ACTIONS(5068), 1, + anon_sym_RPAREN, + STATE(3448), 1, + aux_sym_function_statement_repeat1, STATE(3341), 2, sym_comment, sym_include, - [142441] = 5, + [139596] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3342), 2, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5073), 1, + anon_sym_COLON, + STATE(3342), 3, sym_comment, sym_include, - ACTIONS(1891), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142460] = 7, + aux_sym_for_statement_repeat1, + [139617] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2395), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4814), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(5075), 1, + aux_sym_on_error_phrase_token2, + ACTIONS(5077), 1, + aux_sym_on_quit_phrase_token1, STATE(3343), 2, sym_comment, sym_include, - [142483] = 5, + [139640] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4305), 1, + anon_sym_COLON, + STATE(4200), 1, + sym_on_stop_phrase, STATE(3344), 2, sym_comment, sym_include, - ACTIONS(1887), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142502] = 5, + [139663] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2376), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3345), 2, sym_comment, sym_include, - ACTIONS(1883), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142521] = 5, + [139686] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(5079), 1, + anon_sym_RPAREN, + ACTIONS(5081), 1, + anon_sym_COMMA, + STATE(3415), 1, + aux_sym__function_call_arguments_repeat1, STATE(3346), 2, sym_comment, sym_include, - ACTIONS(1879), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142540] = 5, - ACTIONS(59), 1, + [139709] = 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(5083), 1, + sym_identifier, + ACTIONS(4723), 2, + sym__terminator, + anon_sym_COLON, STATE(3347), 2, sym_comment, sym_include, - ACTIONS(1875), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142559] = 5, + [139730] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4064), 1, + anon_sym_COLON, + STATE(4357), 1, + sym_on_stop_phrase, STATE(3348), 2, sym_comment, sym_include, - ACTIONS(1871), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142578] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(3349), 2, - sym_comment, - sym_include, - ACTIONS(1867), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142597] = 7, + [139753] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2395), 1, + ACTIONS(2376), 1, anon_sym_COLON, - STATE(3326), 1, + STATE(3336), 1, aux_sym_for_statement_repeat1, - STATE(3350), 2, + STATE(3349), 2, sym_comment, sym_include, - [142620] = 5, + [139776] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3351), 2, + STATE(3350), 2, sym_comment, sym_include, - ACTIONS(1863), 3, + ACTIONS(1683), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [142639] = 7, + [139795] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5088), 1, + ACTIONS(5085), 1, sym_identifier, - ACTIONS(5090), 1, + ACTIONS(5087), 1, aux_sym_buffer_definition_token3, - STATE(4227), 1, + STATE(4318), 1, sym_qualified_name, - STATE(3352), 2, + STATE(3351), 2, sym_comment, sym_include, - [142662] = 5, + [139818] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3353), 2, + STATE(3352), 2, sym_comment, sym_include, - ACTIONS(1859), 3, + ACTIONS(1679), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [142681] = 5, + [139837] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3354), 2, + STATE(3353), 2, sym_comment, sym_include, - ACTIONS(1855), 3, + ACTIONS(5089), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [142700] = 5, + [139856] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3766), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(4234), 1, + sym_on_stop_phrase, + STATE(3354), 2, + sym_comment, + sym_include, + [139879] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(5091), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3355), 2, sym_comment, sym_include, - ACTIONS(1851), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142719] = 5, + [139902] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -159176,87 +155607,89 @@ static const uint16_t ts_small_parse_table[] = { STATE(3356), 2, sym_comment, sym_include, - ACTIONS(1847), 3, + ACTIONS(1677), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [142738] = 5, + [139921] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(5093), 1, + anon_sym_LPAREN, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3357), 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, - [142757] = 7, + [139944] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(5092), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(5095), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3358), 2, sym_comment, sym_include, - [142780] = 5, + [139967] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(4335), 1, + anon_sym_RPAREN, + STATE(3429), 1, + aux_sym_data_relation_repeat1, STATE(3359), 2, sym_comment, sym_include, - ACTIONS(1839), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142799] = 7, + [139990] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(5094), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2336), 1, anon_sym_COLON, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3360), 2, sym_comment, sym_include, - [142822] = 7, + [140013] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(5096), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, STATE(3361), 2, sym_comment, sym_include, - [142845] = 5, + ACTIONS(1571), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140032] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -159266,41 +155699,43 @@ static const uint16_t ts_small_parse_table[] = { STATE(3362), 2, sym_comment, sym_include, - ACTIONS(1831), 3, + ACTIONS(1933), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [142864] = 7, + [140051] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(5098), 1, + ACTIONS(5097), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, STATE(3363), 2, sym_comment, sym_include, - [142887] = 5, - ACTIONS(59), 1, + [140074] = 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(5099), 1, + sym_identifier, + ACTIONS(5101), 1, + anon_sym_RPAREN, + STATE(3435), 1, + sym_qualified_name, STATE(3364), 2, sym_comment, sym_include, - ACTIONS(1827), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142906] = 5, + [140097] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -159310,57 +155745,57 @@ static const uint16_t ts_small_parse_table[] = { STATE(3365), 2, sym_comment, sym_include, - ACTIONS(1823), 3, + ACTIONS(1673), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [142925] = 7, + [140116] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(5100), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(3764), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(4271), 1, + sym_on_stop_phrase, STATE(3366), 2, sym_comment, sym_include, - [142948] = 7, - ACTIONS(59), 1, + [140139] = 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(3816), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(4179), 1, - sym_on_stop_phrase, STATE(3367), 2, sym_comment, sym_include, - [142971] = 5, + ACTIONS(5103), 3, + sym_identifier, + sym__terminator, + anon_sym_NO_DASHERROR, + [140158] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(3762), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(4338), 1, + sym_on_stop_phrase, STATE(3368), 2, sym_comment, sym_include, - ACTIONS(1819), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142990] = 5, + [140181] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -159370,25 +155805,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(3369), 2, sym_comment, sym_include, - ACTIONS(1815), 3, + ACTIONS(1669), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143009] = 5, - ACTIONS(59), 1, + [140200] = 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(5105), 1, + sym_identifier, + ACTIONS(5107), 1, + anon_sym_AMP, + ACTIONS(5109), 1, + sym__integer_literal, STATE(3370), 2, sym_comment, sym_include, - ACTIONS(1811), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143028] = 5, + [140223] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -159398,199 +155835,217 @@ static const uint16_t ts_small_parse_table[] = { STATE(3371), 2, sym_comment, sym_include, - ACTIONS(1807), 3, + ACTIONS(1665), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143047] = 5, + [140242] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(5111), 1, + aux_sym__block_terminator_token1, + STATE(1186), 2, + sym__block_terminator, + sym__procedure_terminator, STATE(3372), 2, sym_comment, sym_include, - ACTIONS(1803), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143066] = 7, + [140263] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(5102), 1, - anon_sym_LPAREN, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(5052), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3373), 2, sym_comment, sym_include, - [143089] = 5, + [140286] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(5113), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3374), 2, sym_comment, sym_include, - ACTIONS(1799), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143108] = 5, + [140309] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(5115), 1, + aux_sym__block_terminator_token1, + STATE(1150), 2, + sym__block_terminator, + sym__procedure_terminator, STATE(3375), 2, sym_comment, sym_include, - ACTIONS(1795), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143127] = 5, + [140330] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(5117), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3376), 2, sym_comment, sym_include, - ACTIONS(1791), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143146] = 5, + [140353] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(5119), 1, + anon_sym_COLON, + STATE(3376), 1, + aux_sym_for_statement_repeat1, STATE(3377), 2, sym_comment, sym_include, - ACTIONS(1787), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143165] = 5, - ACTIONS(59), 1, + [140376] = 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(4804), 1, + sym_identifier, + ACTIONS(4806), 1, + aux_sym_input_expression_token2, + STATE(43), 1, + sym_qualified_name, STATE(3378), 2, sym_comment, sym_include, - ACTIONS(1783), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143184] = 5, + [140399] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(5119), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3379), 2, sym_comment, sym_include, - ACTIONS(1779), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143203] = 5, + [140422] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(5121), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3380), 2, sym_comment, sym_include, - ACTIONS(1775), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143222] = 7, + [140445] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3794), 1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(4357), 1, anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(4218), 1, - sym_on_stop_phrase, + STATE(3379), 1, + aux_sym_for_statement_repeat1, STATE(3381), 2, sym_comment, sym_include, - [143245] = 5, + [140468] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(4357), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3382), 2, sym_comment, sym_include, - ACTIONS(1755), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143264] = 5, + [140491] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(5123), 1, + anon_sym_COLON, + STATE(3380), 1, + aux_sym_for_statement_repeat1, STATE(3383), 2, sym_comment, sym_include, - ACTIONS(1751), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143283] = 7, - ACTIONS(3), 1, + [140514] = 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(5104), 1, - sym_identifier, - ACTIONS(5106), 1, - anon_sym_AMP, - ACTIONS(5108), 1, - sym__integer_literal, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(5123), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3384), 2, sym_comment, sym_include, - [143306] = 5, + [140537] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -159600,81 +156055,91 @@ static const uint16_t ts_small_parse_table[] = { STATE(3385), 2, sym_comment, sym_include, - ACTIONS(1747), 3, + ACTIONS(1661), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143325] = 5, + [140556] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3901), 1, + anon_sym_COLON, + STATE(3382), 1, + aux_sym_for_statement_repeat1, STATE(3386), 2, sym_comment, sym_include, - ACTIONS(1743), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143344] = 5, + [140579] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(5125), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3387), 2, sym_comment, sym_include, - ACTIONS(1739), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143363] = 5, - ACTIONS(3), 1, + [140602] = 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(2136), 1, + anon_sym_COMMA, + ACTIONS(3901), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3388), 2, sym_comment, sym_include, - ACTIONS(5110), 3, - sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - [143382] = 5, + [140625] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(4359), 1, + anon_sym_COLON, + STATE(3384), 1, + aux_sym_for_statement_repeat1, STATE(3389), 2, sym_comment, sym_include, - ACTIONS(1735), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143401] = 5, + [140648] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(4725), 1, + sym__integer_literal, + STATE(788), 1, + sym__decimal_literal, + STATE(2683), 1, + sym_number_literal, STATE(3390), 2, sym_comment, sym_include, - ACTIONS(1731), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143420] = 5, + [140671] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -159684,247 +156149,236 @@ static const uint16_t ts_small_parse_table[] = { STATE(3391), 2, sym_comment, sym_include, - ACTIONS(1727), 3, + ACTIONS(1537), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143439] = 7, + [140690] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(5112), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, STATE(3392), 2, sym_comment, sym_include, - [143462] = 7, + ACTIONS(1541), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140709] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(5114), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3393), 2, sym_comment, sym_include, - [143485] = 7, + ACTIONS(1545), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140728] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(5116), 1, + ACTIONS(5127), 1, sym__terminator, - STATE(2), 1, + STATE(333), 1, aux_sym_qualified_name_repeat1, STATE(3394), 2, sym_comment, sym_include, - [143508] = 7, + [140751] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(5118), 1, + ACTIONS(4359), 1, anon_sym_COLON, - STATE(3393), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3395), 2, sym_comment, sym_include, - [143531] = 7, + [140774] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(5118), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3396), 2, sym_comment, sym_include, - [143554] = 7, + ACTIONS(1557), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140793] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(5120), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3235), 1, + anon_sym_COLON, + STATE(3388), 1, + aux_sym_for_statement_repeat1, STATE(3397), 2, sym_comment, sym_include, - [143577] = 7, + [140816] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(5122), 1, + ACTIONS(3235), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3398), 2, sym_comment, sym_include, - [143600] = 7, - ACTIONS(3), 1, + [140839] = 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(4905), 1, - anon_sym_, - ACTIONS(5124), 1, - anon_sym_RPAREN, - STATE(3474), 1, - aux_sym_accumulate_statement_repeat1, STATE(3399), 2, sym_comment, sym_include, - [143623] = 7, - ACTIONS(59), 1, + ACTIONS(1653), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140858] = 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(4991), 1, - sym__integer_literal, - STATE(11), 1, - sym__decimal_literal, - STATE(2996), 1, - sym_number_literal, STATE(3400), 2, sym_comment, sym_include, - [143646] = 7, + ACTIONS(5129), 3, + aux_sym_double_quoted_string_token2, + anon_sym_SQUOTE, + aux_sym_single_quoted_string_token1, + [140877] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4288), 1, + ACTIONS(3903), 1, anon_sym_COLON, - STATE(3396), 1, + STATE(3395), 1, aux_sym_for_statement_repeat1, STATE(3401), 2, sym_comment, sym_include, - [143669] = 7, + [140900] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4288), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3402), 2, sym_comment, sym_include, - [143692] = 7, + ACTIONS(1567), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140919] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(5126), 1, - anon_sym_COLON, - STATE(3398), 1, - aux_sym_for_statement_repeat1, STATE(3403), 2, sym_comment, sym_include, - [143715] = 7, - ACTIONS(59), 1, + ACTIONS(1619), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140938] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(5126), 1, + ACTIONS(5131), 1, + sym_identifier, + ACTIONS(4643), 2, + sym__terminator, anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3404), 2, sym_comment, sym_include, - [143738] = 5, + [140959] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3903), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3405), 2, sym_comment, sym_include, - ACTIONS(5128), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143757] = 5, + [140982] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2527), 1, + anon_sym_COLON, + STATE(3398), 1, + aux_sym_for_statement_repeat1, STATE(3406), 2, sym_comment, sym_include, - ACTIONS(1719), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143776] = 5, + [141005] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -159934,43 +156388,41 @@ static const uint16_t ts_small_parse_table[] = { STATE(3407), 2, sym_comment, sym_include, - ACTIONS(1715), 3, + ACTIONS(1575), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143795] = 7, + [141024] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3948), 1, + ACTIONS(2527), 1, anon_sym_COLON, - STATE(3402), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3408), 2, sym_comment, sym_include, - [143818] = 7, - ACTIONS(59), 1, + [141047] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(3948), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3409), 2, sym_comment, sym_include, - [143841] = 5, + ACTIONS(5133), 3, + anon_sym_DQUOTE, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + [141066] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -159980,43 +156432,41 @@ static const uint16_t ts_small_parse_table[] = { STATE(3410), 2, sym_comment, sym_include, - ACTIONS(1711), 3, + ACTIONS(1579), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143860] = 7, + [141085] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(4294), 1, - anon_sym_COLON, - STATE(3404), 1, - aux_sym_for_statement_repeat1, STATE(3411), 2, sym_comment, sym_include, - [143883] = 7, + ACTIONS(1583), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141104] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(4294), 1, + ACTIONS(2336), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3138), 1, aux_sym_for_statement_repeat1, STATE(3412), 2, sym_comment, sym_include, - [143906] = 5, + [141127] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -160026,149 +156476,151 @@ static const uint16_t ts_small_parse_table[] = { STATE(3413), 2, sym_comment, sym_include, - ACTIONS(1703), 3, + ACTIONS(1587), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143925] = 7, + [141146] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3211), 1, - anon_sym_COLON, - STATE(3409), 1, - aux_sym_for_statement_repeat1, STATE(3414), 2, sym_comment, sym_include, - [143948] = 7, + ACTIONS(1649), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141165] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(5081), 1, anon_sym_COMMA, - ACTIONS(3211), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(5135), 1, + anon_sym_RPAREN, + STATE(3151), 1, + aux_sym__function_call_arguments_repeat1, STATE(3415), 2, sym_comment, sym_include, - [143971] = 7, + [141188] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(3940), 1, + ACTIONS(3237), 1, anon_sym_COLON, - STATE(3412), 1, + STATE(3405), 1, aux_sym_for_statement_repeat1, STATE(3416), 2, sym_comment, sym_include, - [143994] = 7, + [141211] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3940), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3417), 2, sym_comment, sym_include, - [144017] = 5, + ACTIONS(1591), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141230] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3237), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3418), 2, sym_comment, sym_include, - ACTIONS(1699), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144036] = 5, - ACTIONS(59), 1, + [141253] = 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(4888), 1, + anon_sym_, + ACTIONS(5137), 1, + anon_sym_RPAREN, + STATE(3179), 1, + aux_sym_accumulate_statement_repeat1, STATE(3419), 2, sym_comment, sym_include, - ACTIONS(1695), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144055] = 5, + [141276] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2525), 1, + anon_sym_COLON, + STATE(3408), 1, + aux_sym_for_statement_repeat1, STATE(3420), 2, sym_comment, sym_include, - ACTIONS(1691), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144074] = 7, + [141299] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2540), 1, + ACTIONS(2525), 1, anon_sym_COLON, - STATE(3415), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3421), 2, sym_comment, sym_include, - [144097] = 7, + [141322] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(4731), 1, anon_sym_COMMA, - ACTIONS(2540), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(5139), 1, + anon_sym_RPAREN, + STATE(3448), 1, + aux_sym_function_statement_repeat1, STATE(3422), 2, sym_comment, sym_include, - [144120] = 5, + [141345] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -160178,25 +156630,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(3423), 2, sym_comment, sym_include, - ACTIONS(1689), 3, + ACTIONS(1923), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [144139] = 5, + [141364] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2523), 1, + anon_sym_COLON, + STATE(3418), 1, + aux_sym_for_statement_repeat1, STATE(3424), 2, sym_comment, sym_include, - ACTIONS(1685), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144158] = 5, + [141387] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -160206,72 +156660,73 @@ static const uint16_t ts_small_parse_table[] = { STATE(3425), 2, sym_comment, sym_include, - ACTIONS(1681), 3, + ACTIONS(1595), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [144177] = 6, + [141406] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5130), 1, - anon_sym_RPAREN, - ACTIONS(5132), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - STATE(3426), 3, + ACTIONS(2523), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, + STATE(3426), 2, sym_comment, sym_include, - aux_sym__function_call_arguments_repeat1, - [144198] = 7, + [141429] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3191), 1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5141), 1, anon_sym_COLON, - STATE(3417), 1, - aux_sym_for_statement_repeat1, + STATE(4348), 1, + sym_on_stop_phrase, STATE(3427), 2, sym_comment, sym_include, - [144221] = 7, + [141452] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(3191), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3428), 2, sym_comment, sym_include, - [144244] = 5, + ACTIONS(1599), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141471] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(4333), 1, + anon_sym_RPAREN, + STATE(2579), 1, + aux_sym_data_relation_repeat1, STATE(3429), 2, sym_comment, sym_include, - ACTIONS(1677), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144263] = 5, + [141494] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -160281,105 +156736,103 @@ static const uint16_t ts_small_parse_table[] = { STATE(3430), 2, sym_comment, sym_include, - ACTIONS(1673), 3, + ACTIONS(1603), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [144282] = 7, + [141513] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(5135), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2406), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3431), 2, sym_comment, sym_include, - [144305] = 7, + [141536] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2542), 1, + ACTIONS(2406), 1, anon_sym_COLON, - STATE(3422), 1, + STATE(3421), 1, aux_sym_for_statement_repeat1, STATE(3432), 2, sym_comment, sym_include, - [144328] = 7, + [141559] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2542), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3433), 2, sym_comment, sym_include, - [144351] = 7, + ACTIONS(1607), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141578] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, - anon_sym_COMMA, - ACTIONS(5137), 1, - anon_sym_RPAREN, - STATE(3186), 1, - aux_sym_function_statement_repeat1, STATE(3434), 2, sym_comment, sym_include, - [144374] = 5, + ACTIONS(1611), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141597] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(4333), 1, + anon_sym_RPAREN, + STATE(3442), 1, + aux_sym_data_relation_repeat1, STATE(3435), 2, sym_comment, sym_include, - ACTIONS(1669), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144393] = 7, + [141620] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, - sym__integer_literal, - STATE(674), 1, - sym__decimal_literal, - STATE(1865), 1, - sym_number_literal, + ACTIONS(4731), 1, + anon_sym_COMMA, + ACTIONS(5143), 1, + anon_sym_RPAREN, + STATE(3422), 1, + aux_sym_function_statement_repeat1, STATE(3436), 2, sym_comment, sym_include, - [144416] = 5, + [141643] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -160389,101 +156842,107 @@ static const uint16_t ts_small_parse_table[] = { STATE(3437), 2, sym_comment, sym_include, - ACTIONS(1665), 3, + ACTIONS(1925), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [144435] = 5, + [141662] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2521), 1, + anon_sym_COLON, + STATE(3426), 1, + aux_sym_for_statement_repeat1, STATE(3438), 2, sym_comment, sym_include, - ACTIONS(1661), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144454] = 5, + [141685] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4585), 1, + anon_sym_COLON, + STATE(4082), 1, + sym_on_stop_phrase, STATE(3439), 2, sym_comment, sym_include, - ACTIONS(1657), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144473] = 7, + [141708] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2544), 1, + ACTIONS(2521), 1, anon_sym_COLON, - STATE(3428), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3440), 2, sym_comment, sym_include, - [144496] = 7, + [141731] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2544), 1, + ACTIONS(2384), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3441), 2, sym_comment, sym_include, - [144519] = 7, + [141754] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5141), 1, - anon_sym_COLON, - STATE(4321), 1, - sym_on_stop_phrase, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(5145), 1, + anon_sym_RPAREN, + STATE(2579), 1, + aux_sym_data_relation_repeat1, STATE(3442), 2, sym_comment, sym_include, - [144542] = 5, + [141777] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2384), 1, + anon_sym_COLON, + STATE(3431), 1, + aux_sym_for_statement_repeat1, STATE(3443), 2, sym_comment, sym_include, - ACTIONS(1653), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144561] = 5, + [141800] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -160493,157 +156952,168 @@ static const uint16_t ts_small_parse_table[] = { STATE(3444), 2, sym_comment, sym_include, - ACTIONS(1649), 3, + ACTIONS(1927), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [144580] = 5, - ACTIONS(59), 1, + [141819] = 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(4888), 1, + anon_sym_, + ACTIONS(5147), 1, + anon_sym_RPAREN, + STATE(3179), 1, + aux_sym_accumulate_statement_repeat1, STATE(3445), 2, sym_comment, sym_include, - ACTIONS(1645), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144599] = 5, + [141842] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4404), 1, + anon_sym_COLON, + STATE(4369), 1, + sym_on_stop_phrase, STATE(3446), 2, sym_comment, sym_include, - ACTIONS(1641), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144618] = 7, + [141865] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(4731), 1, anon_sym_COMMA, - ACTIONS(2411), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(5149), 1, + anon_sym_RPAREN, + STATE(3042), 1, + aux_sym_function_statement_repeat1, STATE(3447), 2, sym_comment, sym_include, - [144641] = 5, + [141888] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3448), 2, + ACTIONS(5151), 1, + anon_sym_RPAREN, + ACTIONS(5153), 1, + anon_sym_COMMA, + STATE(3448), 3, sym_comment, sym_include, - ACTIONS(1637), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144660] = 7, + aux_sym_function_statement_repeat1, + [141909] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2411), 1, - anon_sym_COLON, - STATE(3433), 1, - aux_sym_for_statement_repeat1, STATE(3449), 2, sym_comment, sym_include, - [144683] = 7, + ACTIONS(1657), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141928] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4739), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(5143), 1, - anon_sym_RPAREN, - STATE(3434), 1, - aux_sym_function_statement_repeat1, + ACTIONS(2400), 1, + anon_sym_COLON, + STATE(3342), 1, + aux_sym_for_statement_repeat1, STATE(3450), 2, sym_comment, sym_include, - [144706] = 5, + [141951] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2400), 1, + anon_sym_COLON, + STATE(3440), 1, + aux_sym_for_statement_repeat1, STATE(3451), 2, sym_comment, sym_include, - ACTIONS(1723), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144725] = 5, - ACTIONS(59), 1, + [141974] = 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(5156), 1, + sym_identifier, + ACTIONS(5158), 1, + aux_sym_buffer_definition_token3, + STATE(4154), 1, + sym_qualified_name, STATE(3452), 2, sym_comment, sym_include, - ACTIONS(1633), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144744] = 5, + [141997] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(4808), 1, + aux_sym__block_terminator_token1, + STATE(1183), 1, + sym__function_terminator, + STATE(1473), 1, + sym__block_terminator, STATE(3453), 2, sym_comment, sym_include, - ACTIONS(1629), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144763] = 5, - ACTIONS(59), 1, + [142020] = 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(4888), 1, + anon_sym_, + ACTIONS(5160), 1, + anon_sym_RPAREN, + STATE(3445), 1, + aux_sym_accumulate_statement_repeat1, STATE(3454), 2, sym_comment, sym_include, - ACTIONS(1625), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144782] = 5, + [142043] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -160653,117 +157123,120 @@ static const uint16_t ts_small_parse_table[] = { STATE(3455), 2, sym_comment, sym_include, - ACTIONS(1621), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144801] = 7, + ACTIONS(5162), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [142062] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2548), 1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4251), 1, anon_sym_COLON, - STATE(3441), 1, - aux_sym_for_statement_repeat1, + STATE(4415), 1, + sym_on_stop_phrase, STATE(3456), 2, sym_comment, sym_include, - [144824] = 7, + [142085] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2548), 1, + ACTIONS(2358), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3457), 2, sym_comment, sym_include, - [144847] = 5, + [142108] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(5164), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3458), 2, sym_comment, sym_include, - ACTIONS(1617), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144866] = 5, - ACTIONS(59), 1, + [142131] = 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(5166), 1, + sym_identifier, + ACTIONS(5168), 1, + aux_sym_input_expression_token2, + STATE(1536), 1, + sym_qualified_name, STATE(3459), 2, sym_comment, sym_include, - ACTIONS(1613), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144885] = 7, + [142154] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2377), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, + ACTIONS(5111), 1, + aux_sym__block_terminator_token1, + STATE(1273), 2, + sym__block_terminator, + sym__procedure_terminator, STATE(3460), 2, sym_comment, sym_include, - [144908] = 5, - ACTIONS(59), 1, + [142175] = 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(951), 1, + anon_sym_LPAREN, + ACTIONS(5170), 1, + sym_identifier, + STATE(1535), 1, + sym_parenthesized_expression, STATE(3461), 2, sym_comment, sym_include, - ACTIONS(1609), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [144927] = 7, - ACTIONS(3), 1, + [142198] = 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(5145), 1, - sym_identifier, - ACTIONS(5147), 1, - aux_sym_input_expression_token2, - STATE(743), 1, - sym_qualified_name, STATE(3462), 2, sym_comment, sym_include, - [144950] = 5, + ACTIONS(5172), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [142217] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -160773,27 +157246,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(3463), 2, sym_comment, sym_include, - ACTIONS(1605), 3, + ACTIONS(1645), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [144969] = 7, - ACTIONS(3), 1, + [142236] = 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(980), 1, - anon_sym_LPAREN, - ACTIONS(5149), 1, - sym_identifier, - STATE(961), 1, - sym_parenthesized_expression, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(2358), 1, + anon_sym_COLON, + STATE(3450), 1, + aux_sym_for_statement_repeat1, STATE(3464), 2, sym_comment, sym_include, - [144992] = 5, + [142259] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -160803,15362 +157276,15269 @@ static const uint16_t ts_small_parse_table[] = { STATE(3465), 2, sym_comment, sym_include, - ACTIONS(2027), 3, + ACTIONS(1643), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [145011] = 5, - ACTIONS(59), 1, + [142278] = 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(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + aux_sym_buffer_definition_token3, + STATE(4134), 1, + sym_qualified_name, STATE(3466), 2, sym_comment, sym_include, - ACTIONS(1707), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [145030] = 5, + [142301] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2136), 1, + anon_sym_COMMA, + ACTIONS(3205), 1, + anon_sym_COLON, + STATE(3052), 1, + aux_sym_for_statement_repeat1, STATE(3467), 2, sym_comment, sym_include, - ACTIONS(1759), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [145049] = 7, + [142324] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2136), 1, anon_sym_COMMA, - ACTIONS(2377), 1, + ACTIONS(3205), 1, anon_sym_COLON, - STATE(3447), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, STATE(3468), 2, sym_comment, sym_include, - [145072] = 7, - ACTIONS(3), 1, + [142347] = 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(4905), 1, - anon_sym_, - ACTIONS(5151), 1, - anon_sym_RPAREN, - STATE(3258), 1, - aux_sym_accumulate_statement_repeat1, STATE(3469), 2, sym_comment, sym_include, - [145095] = 7, + ACTIONS(1641), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142366] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2385), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3470), 2, sym_comment, sym_include, - [145118] = 7, - ACTIONS(3), 1, + ACTIONS(5178), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [142385] = 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(67), 1, - sym_identifier, - ACTIONS(4899), 1, + ACTIONS(893), 1, sym__namedot, - STATE(3479), 1, + ACTIONS(5180), 1, + sym__terminator, + STATE(333), 1, aux_sym_qualified_name_repeat1, STATE(3471), 2, sym_comment, sym_include, - [145141] = 7, + [142408] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2385), 1, - anon_sym_COLON, - STATE(3254), 1, - aux_sym_for_statement_repeat1, + ACTIONS(893), 1, + sym__namedot, + ACTIONS(5182), 1, + sym__terminator, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3472), 2, sym_comment, sym_include, - [145164] = 7, + [142431] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4454), 1, + ACTIONS(3720), 1, anon_sym_COLON, - STATE(4352), 1, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(4452), 1, sym_on_stop_phrase, STATE(3473), 2, sym_comment, sym_include, - [145187] = 7, - ACTIONS(3), 1, + [142454] = 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(4905), 1, - anon_sym_, - ACTIONS(5153), 1, + ACTIONS(4731), 1, + anon_sym_COMMA, + ACTIONS(5184), 1, anon_sym_RPAREN, - STATE(3258), 1, - aux_sym_accumulate_statement_repeat1, + STATE(3155), 1, + aux_sym_function_statement_repeat1, STATE(3474), 2, sym_comment, sym_include, - [145210] = 7, + [142477] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2425), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3475), 2, sym_comment, sym_include, - [145233] = 7, + ACTIONS(1639), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142496] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(893), 1, sym__namedot, - ACTIONS(5155), 1, - anon_sym_COLON, - STATE(2), 1, + ACTIONS(5186), 1, + anon_sym_LPAREN, + STATE(333), 1, aux_sym_qualified_name_repeat1, STATE(3476), 2, sym_comment, sym_include, - [145256] = 7, + [142519] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2425), 1, - anon_sym_COLON, - STATE(3457), 1, - aux_sym_for_statement_repeat1, STATE(3477), 2, sym_comment, sym_include, - [145279] = 7, - ACTIONS(3), 1, + ACTIONS(1637), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142538] = 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(5157), 1, - sym_identifier, - ACTIONS(5159), 1, - aux_sym_buffer_definition_token3, - STATE(4257), 1, - sym_qualified_name, + ACTIONS(4731), 1, + anon_sym_COMMA, + ACTIONS(5188), 1, + anon_sym_RPAREN, + STATE(3038), 1, + aux_sym_function_statement_repeat1, STATE(3478), 2, sym_comment, sym_include, - [145302] = 6, - ACTIONS(3), 1, + [142561] = 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(73), 1, - sym_identifier, - ACTIONS(5161), 1, - sym__namedot, - STATE(3479), 3, + STATE(3479), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - [145323] = 7, - ACTIONS(3), 1, + ACTIONS(1615), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142580] = 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(4905), 1, - anon_sym_, - ACTIONS(5164), 1, - anon_sym_RPAREN, - STATE(3469), 1, - aux_sym_accumulate_statement_repeat1, STATE(3480), 2, sym_comment, sym_include, - [145346] = 5, + ACTIONS(1635), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142599] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4731), 1, + anon_sym_COMMA, + ACTIONS(5149), 1, + anon_sym_RPAREN, + STATE(3448), 1, + aux_sym_function_statement_repeat1, + STATE(3481), 2, + sym_comment, + sym_include, + [142622] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3481), 2, - sym_comment, - sym_include, - ACTIONS(5166), 3, + ACTIONS(4735), 1, sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - [145365] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(5168), 1, - anon_sym_LPAREN, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(5190), 1, + anon_sym_RPAREN, + STATE(3047), 1, + aux_sym_query_fields_repeat1, STATE(3482), 2, sym_comment, sym_include, - [145388] = 7, + [142645] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4371), 1, - anon_sym_COLON, - STATE(4372), 1, - sym_on_stop_phrase, + ACTIONS(3820), 1, + aux_sym__block_terminator_token1, + STATE(977), 1, + sym__block_terminator, + STATE(1031), 1, + sym__case_terminator, STATE(3483), 2, sym_comment, sym_include, - [145411] = 7, + [142668] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4991), 1, - sym__integer_literal, - STATE(11), 1, - sym__decimal_literal, - STATE(1865), 1, - sym_number_literal, + ACTIONS(3688), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + aux_sym_on_error_phrase_token1, + STATE(4495), 1, + sym_on_stop_phrase, STATE(3484), 2, sym_comment, sym_include, - [145434] = 7, - ACTIONS(59), 1, + [142691] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4813), 1, - anon_sym_COMMA, - ACTIONS(5170), 1, - anon_sym_RPAREN, - STATE(3064), 1, - aux_sym__function_call_arguments_repeat1, + ACTIONS(5192), 1, + sym_identifier, + ACTIONS(5194), 1, + anon_sym_AMP, + ACTIONS(5196), 1, + sym__integer_literal, STATE(3485), 2, sym_comment, sym_include, - [145457] = 7, + [142714] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2381), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3486), 2, sym_comment, sym_include, - [145480] = 6, + ACTIONS(1631), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142733] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5054), 1, + ACTIONS(5115), 1, aux_sym__block_terminator_token1, - STATE(1353), 2, + STATE(1214), 2, sym__block_terminator, sym__procedure_terminator, STATE(3487), 2, sym_comment, sym_include, - [145501] = 7, - ACTIONS(59), 1, + [142754] = 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(4029), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4424), 1, - anon_sym_COLON, - STATE(4121), 1, - sym_on_stop_phrase, + ACTIONS(5198), 1, + sym_identifier, + ACTIONS(5200), 1, + aux_sym_input_expression_token2, + STATE(685), 1, + sym_qualified_name, STATE(3488), 2, sym_comment, sym_include, - [145524] = 7, - ACTIONS(59), 1, + [142777] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(2381), 1, - anon_sym_COLON, - STATE(3475), 1, - aux_sym_for_statement_repeat1, + ACTIONS(2284), 1, + sym_identifier, + ACTIONS(4953), 1, + sym__namedot, + STATE(3209), 1, + aux_sym_qualified_name_repeat1, STATE(3489), 2, sym_comment, sym_include, - [145547] = 7, + [142800] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5172), 1, + ACTIONS(989), 1, + anon_sym_LPAREN, + ACTIONS(5202), 1, sym_identifier, - ACTIONS(5174), 1, - aux_sym_buffer_definition_token3, - STATE(4322), 1, - sym_qualified_name, + STATE(686), 1, + sym_parenthesized_expression, STATE(3490), 2, sym_comment, sym_include, - [145570] = 7, - ACTIONS(3), 1, + [142823] = 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(5176), 1, - sym_identifier, - ACTIONS(5178), 1, - aux_sym_input_expression_token2, - STATE(963), 1, - sym_qualified_name, STATE(3491), 2, sym_comment, sym_include, - [145593] = 7, + ACTIONS(1627), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142842] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4991), 1, - sym__integer_literal, - STATE(11), 1, - sym__decimal_literal, - STATE(2726), 1, - sym_number_literal, STATE(3492), 2, sym_comment, sym_include, - [145616] = 7, - ACTIONS(3), 1, + ACTIONS(1623), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142861] = 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(1092), 1, - anon_sym_LPAREN, - ACTIONS(5180), 1, - sym_identifier, - STATE(676), 1, - sym_parenthesized_expression, + ACTIONS(2636), 1, + aux_sym_inherits_token1, + ACTIONS(4235), 1, + anon_sym_COLON, + STATE(4375), 1, + sym_inherits, STATE(3493), 2, sym_comment, sym_include, - [145639] = 6, + [142884] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5182), 1, - anon_sym_COMMA, - ACTIONS(5185), 1, - anon_sym_COLON, - STATE(3494), 3, + ACTIONS(3796), 1, + aux_sym__block_terminator_token1, + STATE(1197), 1, + sym__case_terminator, + STATE(1264), 1, + sym__block_terminator, + STATE(3494), 2, sym_comment, sym_include, - aux_sym_for_statement_repeat1, - [145660] = 7, + [142907] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2409), 1, - anon_sym_COLON, - STATE(3494), 1, - aux_sym_for_statement_repeat1, STATE(3495), 2, sym_comment, sym_include, - [145683] = 7, - ACTIONS(59), 1, + ACTIONS(1647), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142926] = 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(2141), 1, - anon_sym_COMMA, - ACTIONS(2409), 1, - anon_sym_COLON, - STATE(3298), 1, - aux_sym_for_statement_repeat1, + ACTIONS(5204), 1, + sym_identifier, + STATE(2562), 1, + sym_qualified_name, STATE(3496), 2, sym_comment, sym_include, - [145706] = 7, + [142946] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3701), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(4443), 1, - sym_on_stop_phrase, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(999), 1, + sym__block_terminator, STATE(3497), 2, sym_comment, sym_include, - [145729] = 7, + [142966] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5187), 1, + ACTIONS(5208), 1, sym_identifier, - ACTIONS(5189), 1, - aux_sym_buffer_definition_token3, - STATE(4147), 1, - sym_qualified_name, + ACTIONS(5210), 1, + anon_sym_STAR, STATE(3498), 2, sym_comment, sym_include, - [145752] = 7, + [142986] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(5191), 1, - anon_sym_LPAREN, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(5212), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(5214), 1, + aux_sym_function_statement_token1, STATE(3499), 2, sym_comment, sym_include, - [145775] = 7, + [143006] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - ACTIONS(5193), 1, - sym__terminator, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1504), 1, + sym__block_terminator, STATE(3500), 2, sym_comment, sym_include, - [145798] = 5, + [143026] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(5218), 1, + aux_sym_getter_token1, + ACTIONS(5220), 1, + aux_sym_setter_token1, STATE(3501), 2, sym_comment, sym_include, - ACTIONS(5195), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [145817] = 7, - ACTIONS(3), 1, + [143046] = 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(5197), 1, - sym_identifier, - ACTIONS(5199), 1, - aux_sym_input_expression_token2, - STATE(39), 1, - sym_qualified_name, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(851), 1, + sym__block_terminator, STATE(3502), 2, sym_comment, sym_include, - [145840] = 7, + [143066] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(4029), 1, - aux_sym_on_error_phrase_token1, - STATE(4506), 1, - sym_on_stop_phrase, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1173), 1, + sym__block_terminator, STATE(3503), 2, sym_comment, sym_include, - [145863] = 7, - ACTIONS(3), 1, + [143086] = 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(339), 1, + ACTIONS(5226), 1, anon_sym_LPAREN, - ACTIONS(5201), 1, - sym_identifier, - STATE(36), 1, - sym_parenthesized_expression, + STATE(2614), 1, + sym_query_fields, STATE(3504), 2, sym_comment, sym_include, - [145886] = 7, + [143106] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5203), 1, + ACTIONS(5228), 1, sym_identifier, - ACTIONS(5205), 1, - anon_sym_AMP, - ACTIONS(5207), 1, - sym__integer_literal, + STATE(679), 1, + sym_qualified_name, STATE(3505), 2, sym_comment, sym_include, - [145909] = 7, + [143126] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5197), 1, + ACTIONS(4579), 1, + anon_sym_COLON, + ACTIONS(5230), 1, sym_identifier, - ACTIONS(5199), 1, - aux_sym_input_expression_token2, - STATE(39), 1, - sym_qualified_name, STATE(3506), 2, sym_comment, sym_include, - [145932] = 5, - ACTIONS(3), 1, + [143146] = 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(5232), 1, + sym__terminator, + ACTIONS(5234), 1, + aux_sym_interface_statement_token1, STATE(3507), 2, sym_comment, sym_include, - ACTIONS(5209), 3, - anon_sym_DQUOTE, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - [145951] = 7, + [143166] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5211), 1, + ACTIONS(5236), 1, sym_identifier, - ACTIONS(5213), 1, - aux_sym_input_expression_token2, - STATE(679), 1, + STATE(2959), 1, sym_qualified_name, STATE(3508), 2, sym_comment, sym_include, - [145974] = 6, - ACTIONS(59), 1, + [143186] = 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(5215), 1, - aux_sym__block_terminator_token1, - STATE(3443), 1, - sym__block_terminator, + ACTIONS(5238), 1, + sym_identifier, + STATE(3603), 1, + sym_qualified_name, STATE(3509), 2, sym_comment, sym_include, - [145994] = 6, - ACTIONS(59), 1, + [143206] = 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(5217), 1, - anon_sym_LPAREN, - STATE(2616), 1, - sym_query_fields, + ACTIONS(5240), 1, + sym_identifier, + STATE(1899), 1, + sym_qualified_name, STATE(3510), 2, sym_comment, sym_include, - [146014] = 6, + [143226] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5216), 1, aux_sym__block_terminator_token1, - STATE(1546), 1, + STATE(1308), 1, sym__block_terminator, STATE(3511), 2, sym_comment, sym_include, - [146034] = 6, + [143246] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5221), 1, + ACTIONS(5242), 1, sym_identifier, - ACTIONS(5223), 1, - sym__terminator, + ACTIONS(5244), 1, + anon_sym_COMMA, STATE(3512), 2, sym_comment, sym_include, - [146054] = 6, + [143266] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, - aux_sym__block_terminator_token1, - STATE(1538), 1, - sym__block_terminator, + ACTIONS(5246), 1, + anon_sym_DOT, + ACTIONS(5248), 1, + aux_sym__case_terminator_token1, STATE(3513), 2, sym_comment, sym_include, - [146074] = 6, + [143286] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5225), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(5227), 1, - aux_sym_function_statement_token1, + ACTIONS(2392), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(3514), 2, sym_comment, sym_include, - [146094] = 6, + [143304] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1013), 1, - sym__block_terminator, + ACTIONS(5250), 1, + aux_sym_variable_definition_token5, + ACTIONS(5252), 1, + aux_sym_function_parameter_token2, STATE(3515), 2, sym_comment, sym_include, - [146114] = 6, + [143324] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5231), 1, - sym__terminator, - ACTIONS(5233), 1, - anon_sym_METHOD, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1499), 1, + sym__block_terminator, STATE(3516), 2, sym_comment, sym_include, - [146134] = 6, + [143344] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, + ACTIONS(5216), 1, aux_sym__block_terminator_token1, - STATE(1343), 1, + STATE(1501), 1, sym__block_terminator, STATE(3517), 2, sym_comment, sym_include, - [146154] = 6, + [143364] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5237), 1, + ACTIONS(5254), 1, sym_identifier, - STATE(4011), 1, - sym_qualified_name, + ACTIONS(5256), 1, + anon_sym_STAR, STATE(3518), 2, sym_comment, sym_include, - [146174] = 6, + [143384] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5239), 1, + ACTIONS(5258), 1, sym_identifier, - ACTIONS(5241), 1, - anon_sym_COMMA, + ACTIONS(5260), 1, + anon_sym_STAR, STATE(3519), 2, sym_comment, sym_include, - [146194] = 6, + [143404] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5243), 1, + ACTIONS(5262), 1, sym_identifier, - ACTIONS(5245), 1, - anon_sym_STAR, + STATE(2957), 1, + sym_qualified_name, STATE(3520), 2, sym_comment, sym_include, - [146214] = 6, + [143424] = 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__terminator, - ACTIONS(5249), 1, - anon_sym_METHOD, + ACTIONS(5264), 1, + aux_sym_on_error_phrase_token1, + STATE(4494), 1, + sym_on_error_phrase, STATE(3521), 2, sym_comment, sym_include, - [146234] = 6, - ACTIONS(3), 1, + [143444] = 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(5251), 1, - sym_identifier, - ACTIONS(5253), 1, - anon_sym_STAR, + ACTIONS(5266), 2, + sym__terminator, + anon_sym_COLON, STATE(3522), 2, sym_comment, sym_include, - [146254] = 6, + [143462] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5268), 1, + sym__terminator, + ACTIONS(5270), 1, + aux_sym_catch_statement_token1, + STATE(3523), 2, + sym_comment, + sym_include, + [143482] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, + ACTIONS(5272), 1, sym_identifier, - ACTIONS(5257), 1, - anon_sym_STAR, - STATE(3523), 2, + STATE(1704), 1, + sym_qualified_name, + STATE(3524), 2, sym_comment, sym_include, - [146274] = 6, + [143502] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1015), 1, - sym__block_terminator, - STATE(3524), 2, + ACTIONS(5274), 1, + aux_sym_variable_definition_token5, + ACTIONS(5276), 1, + aux_sym_variable_definition_token6, + STATE(3525), 2, sym_comment, sym_include, - [146294] = 6, + [143522] = 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__terminator, - ACTIONS(5259), 1, - anon_sym_COLON, - STATE(3525), 2, + ACTIONS(5278), 1, + anon_sym_DOT, + ACTIONS(5280), 1, + aux_sym__case_terminator_token1, + STATE(3526), 2, sym_comment, sym_include, - [146314] = 6, + [143542] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5261), 1, + ACTIONS(5282), 1, sym_identifier, - STATE(667), 1, - sym_qualified_name, - STATE(3526), 2, - sym_comment, - sym_include, - [146334] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5263), 1, + ACTIONS(5284), 1, sym__terminator, - ACTIONS(5265), 1, - aux_sym_constructor_definition_token1, STATE(3527), 2, sym_comment, sym_include, - [146354] = 6, - ACTIONS(59), 1, + [143562] = 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(5267), 1, - aux_sym__block_terminator_token1, - STATE(1177), 1, - sym__block_terminator, + ACTIONS(5286), 1, + sym_identifier, + STATE(4442), 1, + sym_qualified_name, STATE(3528), 2, sym_comment, sym_include, - [146374] = 6, + [143582] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5269), 1, + ACTIONS(5288), 1, sym_identifier, - ACTIONS(5271), 1, - sym__integer_literal, + ACTIONS(5290), 1, + anon_sym_STAR, STATE(3529), 2, sym_comment, sym_include, - [146394] = 5, + [143602] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3294), 2, - anon_sym_COMMA, + ACTIONS(5292), 1, + sym__terminator, + ACTIONS(5294), 1, anon_sym_COLON, STATE(3530), 2, sym_comment, sym_include, - [146412] = 6, - ACTIONS(3), 1, + [143622] = 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(5273), 1, - sym_identifier, - ACTIONS(5275), 1, - anon_sym_STAR, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1495), 1, + sym__block_terminator, STATE(3531), 2, sym_comment, sym_include, - [146432] = 6, - ACTIONS(3), 1, + [143642] = 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(5277), 1, - sym_identifier, - ACTIONS(5279), 1, - sym__terminator, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(889), 1, + sym__block_terminator, STATE(3532), 2, sym_comment, sym_include, - [146452] = 6, - ACTIONS(3), 1, + [143662] = 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(5281), 1, - sym_identifier, - ACTIONS(5283), 1, - anon_sym_STAR, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(971), 1, + sym__block_terminator, STATE(3533), 2, sym_comment, sym_include, - [146472] = 6, + [143682] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5285), 1, + ACTIONS(5296), 1, sym_identifier, - ACTIONS(5287), 1, - anon_sym_STAR, + ACTIONS(5298), 1, + sym__terminator, STATE(3534), 2, sym_comment, sym_include, - [146492] = 6, - ACTIONS(59), 1, + [143702] = 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(5289), 1, - aux_sym_on_error_phrase_token1, - STATE(4346), 1, - sym_on_error_phrase, + ACTIONS(5300), 1, + sym_identifier, + ACTIONS(5302), 1, + anon_sym_STAR, STATE(3535), 2, sym_comment, sym_include, - [146512] = 6, - ACTIONS(59), 1, + [143722] = 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(5235), 1, - aux_sym__block_terminator_token1, - STATE(1383), 1, - sym__block_terminator, + ACTIONS(5304), 1, + sym_identifier, + STATE(4397), 1, + sym_qualified_name, STATE(3536), 2, sym_comment, sym_include, - [146532] = 6, - ACTIONS(59), 1, + [143742] = 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(5267), 1, - aux_sym__block_terminator_token1, - STATE(1179), 1, - sym__block_terminator, + ACTIONS(5306), 1, + sym_identifier, + ACTIONS(5308), 1, + anon_sym_STAR, STATE(3537), 2, sym_comment, sym_include, - [146552] = 6, + [143762] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5310), 1, sym_identifier, - STATE(3539), 1, - sym_qualified_name, + ACTIONS(5312), 1, + anon_sym_STAR, STATE(3538), 2, sym_comment, sym_include, - [146572] = 6, + [143782] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4512), 1, - sym__terminator, - ACTIONS(4514), 1, - aux_sym_using_statement_token2, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1267), 1, + sym__block_terminator, STATE(3539), 2, sym_comment, sym_include, - [146592] = 6, - ACTIONS(59), 1, + [143802] = 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(5229), 1, - aux_sym__block_terminator_token1, - STATE(1146), 1, - sym__block_terminator, + ACTIONS(5314), 1, + sym_identifier, + STATE(4395), 1, + sym_qualified_name, STATE(3540), 2, sym_comment, sym_include, - [146612] = 6, + [143822] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5289), 1, - aux_sym_on_error_phrase_token1, - STATE(4599), 1, - sym_on_error_phrase, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(885), 1, + sym__block_terminator, STATE(3541), 2, sym_comment, sym_include, - [146632] = 6, - ACTIONS(59), 1, + [143842] = 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(5229), 1, - aux_sym__block_terminator_token1, - STATE(1041), 1, - sym__block_terminator, + ACTIONS(5316), 1, + sym_identifier, + STATE(3977), 1, + sym_qualified_name, STATE(3542), 2, sym_comment, sym_include, - [146652] = 6, + [143862] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, - aux_sym__block_terminator_token1, - STATE(1387), 1, - sym__block_terminator, + ACTIONS(5246), 1, + anon_sym_DOT, + ACTIONS(5318), 1, + aux_sym__procedure_terminator_token1, STATE(3543), 2, sym_comment, sym_include, - [146672] = 6, + [143882] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, - sym__terminator, - ACTIONS(5295), 1, - aux_sym_primitive_type_token19, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(857), 1, + sym__block_terminator, STATE(3544), 2, sym_comment, sym_include, - [146692] = 6, + [143902] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1016), 1, - sym__block_terminator, + ACTIONS(5264), 1, + aux_sym_on_error_phrase_token1, + STATE(4320), 1, + sym_on_error_phrase, STATE(3545), 2, sym_comment, sym_include, - [146712] = 6, - ACTIONS(59), 1, + [143922] = 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(5229), 1, - aux_sym__block_terminator_token1, - STATE(1054), 1, - sym__block_terminator, + ACTIONS(5320), 1, + sym_identifier, + STATE(4388), 1, + sym_qualified_name, STATE(3546), 2, sym_comment, sym_include, - [146732] = 6, + [143942] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1014), 1, - sym__block_terminator, + ACTIONS(5322), 1, + sym__terminator, + ACTIONS(5324), 1, + anon_sym_COLON, STATE(3547), 2, sym_comment, sym_include, - [146752] = 6, + [143962] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5326), 1, sym_identifier, - STATE(4401), 1, + STATE(4379), 1, sym_qualified_name, STATE(3548), 2, sym_comment, sym_include, - [146772] = 6, + [143982] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5328), 1, + aux_sym_variable_definition_token5, + ACTIONS(5330), 1, + aux_sym_variable_definition_token6, + STATE(3549), 2, + sym_comment, + sym_include, + [144002] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5299), 1, + ACTIONS(5332), 1, sym_identifier, - STATE(912), 1, + STATE(1571), 1, sym_qualified_name, - STATE(3549), 2, + STATE(3550), 2, sym_comment, sym_include, - [146792] = 6, + [144022] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5301), 1, + ACTIONS(5334), 1, sym_identifier, - STATE(4444), 1, - sym_qualified_name, - STATE(3550), 2, + ACTIONS(5336), 1, + anon_sym_RPAREN, + STATE(3551), 2, sym_comment, sym_include, - [146812] = 6, + [144042] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5303), 1, + ACTIONS(5338), 2, sym_identifier, - STATE(277), 1, - sym_qualified_name, - STATE(3551), 2, + aux_sym_function_parameter_token1, + STATE(3552), 2, + sym_comment, + sym_include, + [144060] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5340), 1, + sym__terminator, + ACTIONS(5342), 1, + aux_sym_interface_statement_token1, + STATE(3553), 2, + sym_comment, + sym_include, + [144080] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1261), 1, + sym__block_terminator, + STATE(3554), 2, sym_comment, sym_include, - [146832] = 6, + [144100] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5305), 1, - sym__terminator, - ACTIONS(5307), 1, - anon_sym_METHOD, - STATE(3552), 2, + ACTIONS(5344), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3555), 2, sym_comment, sym_include, - [146852] = 6, + [144118] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5309), 1, + ACTIONS(5346), 1, sym_identifier, - STATE(4398), 1, + STATE(1701), 1, sym_qualified_name, - STATE(3553), 2, + STATE(3556), 2, sym_comment, sym_include, - [146872] = 6, - ACTIONS(3), 1, + [144138] = 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(5311), 1, - sym_identifier, - STATE(949), 1, - sym_qualified_name, - STATE(3554), 2, + ACTIONS(5348), 1, + aux_sym_variable_definition_token5, + ACTIONS(5350), 1, + aux_sym_variable_definition_token6, + STATE(3557), 2, + sym_comment, + sym_include, + [144158] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5352), 1, + sym__terminator, + ACTIONS(5354), 1, + aux_sym_constructor_definition_token1, + STATE(3558), 2, sym_comment, sym_include, - [146892] = 6, + [144178] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5313), 1, + ACTIONS(5356), 1, aux_sym_access_tuning_token1, - ACTIONS(5315), 1, + ACTIONS(5358), 1, anon_sym_COLON, - STATE(3555), 2, + STATE(3559), 2, sym_comment, sym_include, - [146912] = 6, - ACTIONS(3), 1, + [144198] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5317), 1, - sym_identifier, - STATE(4390), 1, - sym_qualified_name, - STATE(3556), 2, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(892), 1, + sym__block_terminator, + STATE(3560), 2, sym_comment, sym_include, - [146932] = 6, + [144218] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5319), 1, + ACTIONS(5360), 1, sym_identifier, - STATE(4381), 1, + STATE(2710), 1, sym_qualified_name, - STATE(3557), 2, + STATE(3561), 2, sym_comment, sym_include, - [146952] = 6, + [144238] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5321), 1, - aux_sym_variable_definition_token5, - ACTIONS(5323), 1, - aux_sym_variable_definition_token6, - STATE(3558), 2, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1114), 1, + sym__block_terminator, + STATE(3562), 2, sym_comment, sym_include, - [146972] = 6, + [144258] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5325), 1, + ACTIONS(5362), 1, sym_identifier, - STATE(1617), 1, - sym_qualified_name, - STATE(3559), 2, + ACTIONS(5364), 1, + aux_sym_function_parameter_token1, + STATE(3563), 2, sym_comment, sym_include, - [146992] = 6, + [144278] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - sym__terminator, - ACTIONS(5329), 1, - anon_sym_METHOD, - STATE(3560), 2, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2621), 1, + sym_query_fields, + STATE(3564), 2, sym_comment, sym_include, - [147012] = 6, + [144298] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5331), 1, - aux_sym_variable_definition_token5, - ACTIONS(5333), 1, - aux_sym_variable_definition_token6, - STATE(3561), 2, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1519), 1, + sym__block_terminator, + STATE(3565), 2, + sym_comment, + sym_include, + [144318] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5366), 1, + sym_identifier, + STATE(1579), 1, + sym_qualified_name, + STATE(3566), 2, + sym_comment, + sym_include, + [144338] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5368), 1, + sym_identifier, + STATE(1887), 1, + sym_qualified_name, + STATE(3567), 2, sym_comment, sym_include, - [147032] = 6, + [144358] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5335), 1, - sym__terminator, - ACTIONS(5337), 1, - aux_sym_constructor_definition_token1, - STATE(3562), 2, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(852), 1, + sym__block_terminator, + STATE(3568), 2, sym_comment, sym_include, - [147052] = 6, + [144378] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5339), 1, + ACTIONS(5370), 1, sym_identifier, - STATE(1927), 1, + STATE(4201), 1, sym_qualified_name, - STATE(3563), 2, + STATE(3569), 2, sym_comment, sym_include, - [147072] = 6, + [144398] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5341), 1, + ACTIONS(5372), 1, sym_identifier, - STATE(4205), 1, - sym_qualified_name, - STATE(3564), 2, + ACTIONS(5374), 1, + anon_sym_COMMA, + STATE(3570), 2, sym_comment, sym_include, - [147092] = 6, + [144418] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5343), 1, + ACTIONS(5376), 1, sym_identifier, - ACTIONS(5345), 1, - anon_sym_STAR, - STATE(3565), 2, + ACTIONS(5378), 1, + sym__integer_literal, + STATE(3571), 2, sym_comment, sym_include, - [147112] = 6, + [144438] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5347), 1, + ACTIONS(5380), 1, aux_sym_variable_definition_token5, - ACTIONS(5349), 1, + ACTIONS(5382), 1, aux_sym_variable_definition_token6, - STATE(3566), 2, + STATE(3572), 2, sym_comment, sym_include, - [147132] = 6, + [144458] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5351), 1, + ACTIONS(5384), 1, sym_identifier, - ACTIONS(5353), 1, - sym__integer_literal, - STATE(3567), 2, + STATE(1597), 1, + sym_qualified_name, + STATE(3573), 2, sym_comment, sym_include, - [147152] = 6, + [144478] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5355), 1, + ACTIONS(5386), 1, sym_identifier, - STATE(1619), 1, + STATE(1578), 1, sym_qualified_name, - STATE(3568), 2, - sym_comment, - sym_include, - [147172] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4150), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3569), 2, + STATE(3574), 2, sym_comment, sym_include, - [147190] = 6, + [144498] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, + ACTIONS(5222), 1, aux_sym__block_terminator_token1, - STATE(1414), 1, + STATE(894), 1, sym__block_terminator, - STATE(3570), 2, - sym_comment, - sym_include, - [147210] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5357), 1, - sym_identifier, - STATE(2643), 1, - sym_qualified_name, - STATE(3571), 2, + STATE(3575), 2, sym_comment, sym_include, - [147230] = 6, + [144518] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5359), 1, + ACTIONS(5388), 1, aux_sym_using_statement_token2, - ACTIONS(5361), 1, + ACTIONS(5390), 1, aux_sym_input_close_statement_token2, - STATE(3572), 2, + STATE(3576), 2, sym_comment, sym_include, - [147250] = 6, + [144538] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5359), 1, + ACTIONS(5388), 1, aux_sym_using_statement_token2, - ACTIONS(5363), 1, + ACTIONS(5392), 1, aux_sym_input_close_statement_token2, - STATE(3573), 2, + STATE(3577), 2, sym_comment, sym_include, - [147270] = 6, - ACTIONS(3), 1, + [144558] = 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(5365), 1, - sym_identifier, - STATE(4203), 1, - sym_qualified_name, - STATE(3574), 2, + ACTIONS(5394), 1, + sym__terminator, + ACTIONS(5396), 1, + anon_sym_COLON, + STATE(3578), 2, sym_comment, sym_include, - [147290] = 6, - ACTIONS(3), 1, + [144578] = 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(5367), 1, - sym_identifier, - ACTIONS(5369), 1, - anon_sym_COMMA, - STATE(3575), 2, + ACTIONS(5398), 1, + aux_sym_scope_tuning_token1, + STATE(4359), 1, + sym_new_expression, + STATE(3579), 2, sym_comment, sym_include, - [147310] = 6, + [144598] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, - aux_sym__block_terminator_token1, - STATE(1417), 1, - sym__block_terminator, - STATE(3576), 2, + ACTIONS(2440), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3580), 2, sym_comment, sym_include, - [147330] = 6, + [144616] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5371), 1, + ACTIONS(5400), 1, aux_sym_variable_definition_token5, - ACTIONS(5373), 1, + ACTIONS(5402), 1, aux_sym_variable_definition_token6, - STATE(3577), 2, + STATE(3581), 2, sym_comment, sym_include, - [147350] = 6, + [144636] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5375), 1, + ACTIONS(5404), 1, aux_sym_input_close_statement_token2, - ACTIONS(5377), 1, + ACTIONS(5406), 1, aux_sym_output_stream_statement_token1, - STATE(3578), 2, + STATE(3582), 2, sym_comment, sym_include, - [147370] = 6, + [144656] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5377), 1, + ACTIONS(5406), 1, aux_sym_output_stream_statement_token1, - ACTIONS(5379), 1, + ACTIONS(5408), 1, aux_sym_input_close_statement_token2, - STATE(3579), 2, + STATE(3583), 2, sym_comment, sym_include, - [147390] = 6, + [144676] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5381), 1, + ACTIONS(5410), 1, anon_sym_COMMA, - ACTIONS(5383), 1, + ACTIONS(5412), 1, aux_sym_on_error_phrase_token3, - STATE(3580), 2, + STATE(3584), 2, sym_comment, sym_include, - [147410] = 6, + [144696] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5385), 1, + ACTIONS(5414), 1, sym_identifier, - STATE(1611), 1, - sym_qualified_name, - STATE(3581), 2, + ACTIONS(5416), 1, + sym__terminator, + STATE(3585), 2, sym_comment, sym_include, - [147430] = 6, + [144716] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5387), 1, - sym__terminator, - ACTIONS(5389), 1, - aux_sym_primitive_type_token19, - STATE(3582), 2, + ACTIONS(5418), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3586), 2, sym_comment, sym_include, - [147450] = 6, + [144734] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5420), 1, sym_identifier, - STATE(1624), 1, + STATE(4137), 1, sym_qualified_name, - STATE(3583), 2, + STATE(3587), 2, sym_comment, sym_include, - [147470] = 5, + [144754] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5185), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3584), 2, + ACTIONS(5422), 1, + aux_sym_primitive_type_token1, + ACTIONS(5424), 1, + aux_sym_event_definition_token2, + STATE(3588), 2, sym_comment, sym_include, - [147488] = 6, + [144774] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5393), 1, - aux_sym_variable_definition_token5, - ACTIONS(5395), 1, - aux_sym_variable_definition_token6, - STATE(3585), 2, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1485), 1, + sym__block_terminator, + STATE(3589), 2, sym_comment, sym_include, - [147508] = 6, - ACTIONS(59), 1, + [144794] = 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(5235), 1, - aux_sym__block_terminator_token1, - STATE(1319), 1, - sym__block_terminator, - STATE(3586), 2, + ACTIONS(5426), 1, + sym_identifier, + STATE(1598), 1, + sym_qualified_name, + STATE(3590), 2, sym_comment, sym_include, - [147528] = 5, + [144814] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5397), 2, + ACTIONS(5428), 2, aux_sym_using_statement_token3, aux_sym_using_statement_token4, - STATE(3587), 2, + STATE(3591), 2, sym_comment, sym_include, - [147546] = 6, - ACTIONS(3), 1, + [144832] = 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(5399), 1, - sym_identifier, - STATE(584), 1, - sym_qualified_name, - STATE(3588), 2, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2548), 1, + sym_query_fields, + STATE(3592), 2, sym_comment, sym_include, - [147566] = 6, - ACTIONS(3), 1, + [144852] = 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(5401), 1, - sym_identifier, - STATE(1615), 1, - sym_qualified_name, - STATE(3589), 2, + ACTIONS(2555), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3593), 2, sym_comment, sym_include, - [147586] = 5, + [144870] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5403), 2, + ACTIONS(5430), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(3590), 2, + STATE(3594), 2, sym_comment, sym_include, - [147604] = 6, + [144888] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5405), 1, + ACTIONS(5398), 1, aux_sym_scope_tuning_token1, - STATE(4345), 1, + STATE(4298), 1, sym_new_expression, - STATE(3591), 2, + STATE(3595), 2, + sym_comment, + sym_include, + [144908] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5432), 1, + sym_identifier, + STATE(4031), 1, + sym_qualified_name, + STATE(3596), 2, sym_comment, sym_include, - [147624] = 6, + [144928] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1035), 1, - sym__block_terminator, - STATE(3592), 2, + ACTIONS(5434), 1, + sym__terminator, + ACTIONS(5436), 1, + aux_sym_finally_statement_token1, + STATE(3597), 2, sym_comment, sym_include, - [147644] = 6, + [144948] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5407), 1, - sym_identifier, - ACTIONS(5409), 1, - anon_sym_STAR, - STATE(3593), 2, + ACTIONS(2338), 1, + anon_sym_RPAREN, + ACTIONS(5438), 1, + anon_sym_, + STATE(3598), 2, sym_comment, sym_include, - [147664] = 6, + [144968] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5411), 1, + ACTIONS(5440), 1, sym_identifier, - STATE(4055), 1, + STATE(1527), 1, sym_qualified_name, - STATE(3594), 2, + STATE(3599), 2, sym_comment, sym_include, - [147684] = 6, + [144988] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5413), 1, + ACTIONS(5442), 1, sym_identifier, - ACTIONS(5415), 1, + ACTIONS(5444), 1, anon_sym_COMMA, - STATE(3595), 2, - sym_comment, - sym_include, - [147704] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1231), 1, - sym__block_terminator, - STATE(3596), 2, + STATE(3600), 2, sym_comment, sym_include, - [147724] = 6, + [145008] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5417), 1, + ACTIONS(5446), 1, sym__terminator, - ACTIONS(5419), 1, - aux_sym_interface_statement_token1, - STATE(3597), 2, + ACTIONS(5448), 1, + aux_sym_primitive_type_token19, + STATE(3601), 2, sym_comment, sym_include, - [147744] = 5, + [145028] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5421), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(3598), 2, + ACTIONS(5450), 1, + aux_sym_variable_definition_token5, + ACTIONS(5452), 1, + aux_sym_variable_definition_token6, + STATE(3602), 2, sym_comment, sym_include, - [147762] = 6, + [145048] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5423), 1, - aux_sym_variable_definition_token5, - ACTIONS(5425), 1, - aux_sym_variable_definition_token6, - STATE(3599), 2, + ACTIONS(4458), 1, + sym__terminator, + ACTIONS(4460), 1, + aux_sym_using_statement_token2, + STATE(3603), 2, sym_comment, sym_include, - [147782] = 6, + [145068] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5427), 1, + ACTIONS(5454), 1, sym_identifier, - STATE(276), 1, + STATE(287), 1, sym_qualified_name, - STATE(3600), 2, + STATE(3604), 2, sym_comment, sym_include, - [147802] = 6, + [145088] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5429), 1, + ACTIONS(5456), 1, sym_identifier, - STATE(1613), 1, + STATE(1582), 1, sym_qualified_name, - STATE(3601), 2, - sym_comment, - sym_include, - [147822] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5431), 1, - sym__terminator, - ACTIONS(5433), 1, - anon_sym_METHOD, - STATE(3602), 2, + STATE(3605), 2, sym_comment, sym_include, - [147842] = 5, + [145108] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1441), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3603), 2, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1483), 1, + sym__block_terminator, + STATE(3606), 2, sym_comment, sym_include, - [147860] = 6, + [145128] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, + ACTIONS(5224), 1, aux_sym__block_terminator_token1, - STATE(1351), 1, + STATE(1266), 1, sym__block_terminator, - STATE(3604), 2, + STATE(3607), 2, sym_comment, sym_include, - [147880] = 6, - ACTIONS(59), 1, + [145148] = 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(5435), 1, - aux_sym_variable_definition_token5, - ACTIONS(5437), 1, - aux_sym_variable_definition_token6, - STATE(3605), 2, + ACTIONS(5458), 1, + sym_identifier, + STATE(13), 1, + sym_qualified_name, + STATE(3608), 2, sym_comment, sym_include, - [147900] = 6, + [145168] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5439), 1, - sym__terminator, - ACTIONS(5441), 1, - anon_sym_METHOD, - STATE(3606), 2, + ACTIONS(5460), 1, + aux_sym_variable_definition_token5, + ACTIONS(5462), 1, + aux_sym_variable_definition_token6, + STATE(3609), 2, sym_comment, sym_include, - [147920] = 6, + [145188] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5464), 1, sym_identifier, - STATE(2577), 1, + STATE(1812), 1, sym_qualified_name, - STATE(3607), 2, - sym_comment, - sym_include, - [147940] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5445), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3608), 2, + STATE(3610), 2, sym_comment, sym_include, - [147958] = 6, + [145208] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(5466), 1, sym_identifier, - STATE(1612), 1, + STATE(2596), 1, sym_qualified_name, - STATE(3609), 2, + STATE(3611), 2, sym_comment, sym_include, - [147978] = 6, + [145228] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5449), 1, - sym__terminator, - ACTIONS(5451), 1, - aux_sym_finally_statement_token1, - STATE(3610), 2, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(856), 1, + sym__block_terminator, + STATE(3612), 2, sym_comment, sym_include, - [147998] = 6, + [145248] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5453), 1, - sym__terminator, - ACTIONS(5455), 1, - aux_sym_constructor_definition_token1, - STATE(3611), 2, - sym_comment, - sym_include, - [148018] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5457), 1, - sym_identifier, - STATE(4225), 1, - sym_qualified_name, - STATE(3612), 2, - sym_comment, - sym_include, - [148038] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5459), 1, - sym_identifier, - ACTIONS(5461), 1, - anon_sym_COMMA, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(882), 1, + sym__block_terminator, STATE(3613), 2, sym_comment, sym_include, - [148058] = 6, + [145268] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, - aux_sym__block_terminator_token1, - STATE(1436), 1, - sym__block_terminator, + ACTIONS(5468), 2, + sym__terminator, + anon_sym_COLON, STATE(3614), 2, sym_comment, sym_include, - [148078] = 6, + [145286] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5463), 1, + ACTIONS(5470), 1, sym__terminator, - ACTIONS(5465), 1, + ACTIONS(5472), 1, aux_sym_interface_statement_token1, STATE(3615), 2, sym_comment, sym_include, - [148098] = 6, - ACTIONS(59), 1, + [145306] = 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(5235), 1, - aux_sym__block_terminator_token1, - STATE(1438), 1, - sym__block_terminator, + ACTIONS(5474), 1, + sym_identifier, + ACTIONS(5476), 1, + anon_sym_STAR, STATE(3616), 2, sym_comment, sym_include, - [148118] = 6, + [145326] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5467), 1, + ACTIONS(5478), 1, sym_identifier, - STATE(25), 1, + STATE(1569), 1, sym_qualified_name, STATE(3617), 2, sym_comment, sym_include, - [148138] = 6, - ACTIONS(3), 1, + [145346] = 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(5469), 1, - sym_identifier, - ACTIONS(5471), 1, - sym__terminator, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(859), 1, + sym__block_terminator, STATE(3618), 2, sym_comment, sym_include, - [148158] = 6, - ACTIONS(3), 1, + [145366] = 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(5473), 1, - sym_identifier, - ACTIONS(5475), 1, + ACTIONS(5480), 2, anon_sym_COMMA, + anon_sym_COLON, STATE(3619), 2, sym_comment, sym_include, - [148178] = 6, - ACTIONS(3), 1, + [145384] = 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(5477), 1, - sym_identifier, - ACTIONS(5479), 1, + ACTIONS(5482), 2, anon_sym_COMMA, + anon_sym_COLON, STATE(3620), 2, sym_comment, sym_include, - [148198] = 5, + [145402] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5481), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(881), 1, + sym__block_terminator, STATE(3621), 2, sym_comment, sym_include, - [148216] = 6, + [145422] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5483), 1, - aux_sym_variable_definition_token5, - ACTIONS(5485), 1, - aux_sym_variable_definition_token6, + ACTIONS(5484), 1, + aux_sym_access_tuning_token1, + ACTIONS(5486), 1, + anon_sym_COLON, STATE(3622), 2, sym_comment, sym_include, - [148236] = 6, + [145442] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5487), 1, + ACTIONS(5488), 1, sym_identifier, - STATE(1622), 1, - sym_qualified_name, + ACTIONS(5490), 1, + anon_sym_COMMA, STATE(3623), 2, sym_comment, sym_include, - [148256] = 6, + [145462] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5489), 1, + ACTIONS(5492), 1, sym_identifier, - STATE(1625), 1, - sym_qualified_name, + ACTIONS(5494), 1, + anon_sym_COMMA, STATE(3624), 2, sym_comment, sym_include, - [148276] = 6, + [145482] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, + ACTIONS(5224), 1, aux_sym__block_terminator_token1, - STATE(1239), 1, + STATE(1292), 1, sym__block_terminator, STATE(3625), 2, sym_comment, sym_include, - [148296] = 6, - ACTIONS(59), 1, + [145502] = 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(5229), 1, - aux_sym__block_terminator_token1, - STATE(1017), 1, - sym__block_terminator, + ACTIONS(5496), 1, + sym_identifier, + STATE(1568), 1, + sym_qualified_name, STATE(3626), 2, sym_comment, sym_include, - [148316] = 6, + [145522] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5491), 1, - aux_sym_variable_definition_token5, - ACTIONS(5493), 1, - aux_sym_variable_definition_token6, + ACTIONS(4953), 1, + sym__namedot, + STATE(3209), 1, + aux_sym_qualified_name_repeat1, STATE(3627), 2, sym_comment, sym_include, - [148336] = 5, - ACTIONS(59), 1, + [145542] = 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(5495), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, + ACTIONS(5498), 1, + sym_identifier, + STATE(4284), 1, + sym_qualified_name, STATE(3628), 2, sym_comment, sym_include, - [148354] = 6, - ACTIONS(59), 1, + [145562] = 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(5405), 1, - aux_sym_scope_tuning_token1, - STATE(4298), 1, - sym_new_expression, + ACTIONS(5500), 1, + sym_identifier, + ACTIONS(5502), 1, + anon_sym_COMMA, STATE(3629), 2, sym_comment, sym_include, - [148374] = 6, + [145582] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5497), 1, + ACTIONS(5504), 1, sym_identifier, - STATE(1614), 1, + STATE(1605), 1, sym_qualified_name, STATE(3630), 2, sym_comment, sym_include, - [148394] = 6, + [145602] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1018), 1, - sym__block_terminator, + ACTIONS(5506), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, STATE(3631), 2, sym_comment, sym_include, - [148414] = 6, + [145620] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1019), 1, - sym__block_terminator, + ACTIONS(5398), 1, + aux_sym_scope_tuning_token1, + STATE(4128), 1, + sym_new_expression, STATE(3632), 2, sym_comment, sym_include, - [148434] = 6, - ACTIONS(3), 1, + [145640] = 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(5499), 1, - sym_identifier, - STATE(1623), 1, - sym_qualified_name, + ACTIONS(5508), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3633), 2, sym_comment, sym_include, - [148454] = 6, + [145658] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5501), 1, + ACTIONS(5510), 1, sym__terminator, - ACTIONS(5503), 1, - anon_sym_METHOD, + ACTIONS(5512), 1, + aux_sym_primitive_type_token19, STATE(3634), 2, sym_comment, sym_include, - [148474] = 6, + [145678] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, + ACTIONS(5206), 1, aux_sym__block_terminator_token1, - STATE(1368), 1, + STATE(1016), 1, sym__block_terminator, STATE(3635), 2, sym_comment, sym_include, - [148494] = 6, - ACTIONS(3), 1, + [145698] = 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(5505), 1, - sym_identifier, - STATE(4520), 1, - sym_qualified_name, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3391), 1, + sym__block_terminator, STATE(3636), 2, sym_comment, sym_include, - [148514] = 6, - ACTIONS(3), 1, + [145718] = 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(5507), 1, - sym_identifier, - ACTIONS(5509), 1, - anon_sym_COMMA, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1181), 1, + sym__block_terminator, STATE(3637), 2, sym_comment, sym_include, - [148534] = 5, + [145738] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5511), 2, + ACTIONS(5516), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, STATE(3638), 2, sym_comment, sym_include, - [148552] = 6, + [145756] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, - aux_sym__block_terminator_token1, - STATE(1450), 1, - sym__block_terminator, + ACTIONS(5518), 1, + sym__terminator, + ACTIONS(5520), 1, + aux_sym_interface_statement_token1, STATE(3639), 2, sym_comment, sym_include, - [148572] = 6, - ACTIONS(3), 1, + [145776] = 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(5513), 1, - sym_identifier, - STATE(4273), 1, - sym_qualified_name, + ACTIONS(5522), 1, + anon_sym_DOT, + ACTIONS(5524), 1, + aux_sym__function_terminator_token1, STATE(3640), 2, sym_comment, sym_include, - [148592] = 6, - ACTIONS(3), 1, + [145796] = 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(5515), 1, - sym_identifier, - STATE(2624), 1, - sym_qualified_name, + ACTIONS(5526), 1, + aux_sym_variable_definition_token5, + ACTIONS(5528), 1, + aux_sym_variable_definition_token6, STATE(3641), 2, sym_comment, sym_include, - [148612] = 5, + [145816] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(73), 2, - sym__namedot, + ACTIONS(5530), 1, sym_identifier, + STATE(1566), 1, + sym_qualified_name, STATE(3642), 2, sym_comment, sym_include, - [148630] = 5, - ACTIONS(59), 1, + [145836] = 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(4412), 2, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(5532), 1, + sym_identifier, + STATE(4363), 1, + sym_qualified_name, STATE(3643), 2, sym_comment, sym_include, - [148648] = 6, + [145856] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5517), 1, + ACTIONS(5534), 1, sym_identifier, - ACTIONS(5519), 1, - sym__integer_literal, + STATE(2642), 1, + sym_qualified_name, STATE(3644), 2, sym_comment, sym_include, - [148668] = 6, + [145876] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5521), 1, - sym__terminator, - ACTIONS(5523), 1, - aux_sym_primitive_type_token19, + ACTIONS(5536), 1, + aux_sym_variable_definition_token5, + ACTIONS(5538), 1, + aux_sym_function_parameter_token2, STATE(3645), 2, sym_comment, sym_include, - [148688] = 6, + [145896] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5525), 1, + ACTIONS(5540), 1, sym_identifier, - STATE(288), 1, - sym_qualified_name, + ACTIONS(5542), 1, + sym__terminator, STATE(3646), 2, sym_comment, sym_include, - [148708] = 6, + [145916] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5527), 1, - sym__terminator, - ACTIONS(5529), 1, - aux_sym_primitive_type_token19, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3392), 1, + sym__block_terminator, STATE(3647), 2, sym_comment, sym_include, - [148728] = 6, + [145936] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, + ACTIONS(5216), 1, aux_sym__block_terminator_token1, - STATE(1021), 1, + STATE(1469), 1, sym__block_terminator, STATE(3648), 2, sym_comment, sym_include, - [148748] = 6, - ACTIONS(3), 1, + [145956] = 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(5531), 1, - sym_identifier, - ACTIONS(5533), 1, - sym__integer_literal, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3393), 1, + sym__block_terminator, STATE(3649), 2, sym_comment, sym_include, - [148768] = 6, + [145976] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1022), 1, - sym__block_terminator, + ACTIONS(5544), 1, + sym__terminator, + ACTIONS(5546), 1, + aux_sym_interface_statement_token1, STATE(3650), 2, sym_comment, sym_include, - [148788] = 6, - ACTIONS(3), 1, + [145996] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5535), 1, - sym_identifier, - STATE(282), 1, - sym_qualified_name, + ACTIONS(5548), 1, + aux_sym_variable_definition_token5, + ACTIONS(5550), 1, + aux_sym_variable_definition_token6, STATE(3651), 2, sym_comment, sym_include, - [148808] = 6, + [146016] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(1024), 1, + STATE(3396), 1, sym__block_terminator, STATE(3652), 2, sym_comment, sym_include, - [148828] = 6, - ACTIONS(3), 1, + [146036] = 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(5537), 1, - sym_identifier, - ACTIONS(5539), 1, - sym__integer_literal, + ACTIONS(5151), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3653), 2, sym_comment, sym_include, - [148848] = 6, + [146054] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1026), 1, - sym__block_terminator, + ACTIONS(5552), 2, + sym__terminator, + anon_sym_COLON, STATE(3654), 2, sym_comment, sym_include, - [148868] = 6, + [146072] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5541), 1, - sym__terminator, - ACTIONS(5543), 1, - aux_sym_primitive_type_token19, + ACTIONS(5554), 1, + aux_sym_variable_definition_token5, + ACTIONS(5556), 1, + aux_sym_variable_definition_token6, STATE(3655), 2, sym_comment, sym_include, - [148888] = 6, - ACTIONS(3), 1, + [146092] = 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(5545), 1, - sym_identifier, - STATE(2549), 1, - sym_qualified_name, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3402), 1, + sym__block_terminator, STATE(3656), 2, sym_comment, sym_include, - [148908] = 6, - ACTIONS(3), 1, + [146112] = 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(5547), 1, - sym_identifier, - STATE(730), 1, - sym_qualified_name, + ACTIONS(5558), 1, + sym__terminator, + ACTIONS(5560), 1, + aux_sym_catch_statement_token1, STATE(3657), 2, sym_comment, sym_include, - [148928] = 6, - ACTIONS(3), 1, + [146132] = 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(5549), 1, - sym_identifier, - STATE(2450), 1, - sym_qualified_name, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(1030), 1, + sym__block_terminator, STATE(3658), 2, sym_comment, sym_include, - [148948] = 6, - ACTIONS(59), 1, + [146152] = 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(5229), 1, - aux_sym__block_terminator_token1, - STATE(1027), 1, - sym__block_terminator, + ACTIONS(5562), 1, + sym_identifier, + STATE(1565), 1, + sym_qualified_name, STATE(3659), 2, sym_comment, sym_include, - [148968] = 6, + [146172] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1028), 1, - sym__block_terminator, + ACTIONS(5564), 2, + aux_sym_using_statement_token3, + aux_sym_using_statement_token4, STATE(3660), 2, sym_comment, sym_include, - [148988] = 6, - ACTIONS(59), 1, + [146190] = 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(5235), 1, - aux_sym__block_terminator_token1, - STATE(1456), 1, - sym__block_terminator, + ACTIONS(5566), 1, + sym_identifier, + STATE(4504), 1, + sym_qualified_name, STATE(3661), 2, sym_comment, sym_include, - [149008] = 6, - ACTIONS(59), 1, + [146210] = 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(5229), 1, - aux_sym__block_terminator_token1, - STATE(1031), 1, - sym__block_terminator, + ACTIONS(5568), 1, + sym_identifier, + ACTIONS(5570), 1, + anon_sym_COMMA, STATE(3662), 2, sym_comment, sym_include, - [149028] = 6, + [146230] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1032), 1, - sym__block_terminator, + ACTIONS(5572), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(5574), 1, + aux_sym_function_statement_token1, STATE(3663), 2, sym_comment, sym_include, - [149048] = 6, + [146250] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5224), 1, aux_sym__block_terminator_token1, - STATE(1575), 1, + STATE(1280), 1, sym__block_terminator, STATE(3664), 2, sym_comment, sym_include, - [149068] = 6, + [146270] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1251), 1, - sym__block_terminator, + ACTIONS(5522), 1, + anon_sym_DOT, + ACTIONS(5576), 1, + aux_sym__case_terminator_token1, STATE(3665), 2, sym_comment, sym_include, - [149088] = 6, + [146290] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5578), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3666), 2, + sym_comment, + sym_include, + [146308] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(1033), 1, + STATE(3361), 1, sym__block_terminator, - STATE(3666), 2, + STATE(3667), 2, sym_comment, sym_include, - [149108] = 6, + [146328] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5551), 1, + ACTIONS(5580), 1, sym_identifier, - ACTIONS(5553), 1, - aux_sym_input_expression_token2, - STATE(3667), 2, + ACTIONS(5582), 1, + sym__integer_literal, + STATE(3668), 2, sym_comment, sym_include, - [149128] = 6, + [146348] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(1253), 1, + STATE(3407), 1, sym__block_terminator, - STATE(3668), 2, + STATE(3669), 2, sym_comment, sym_include, - [149148] = 6, - ACTIONS(3), 1, + [146368] = 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(5555), 1, - sym_identifier, - ACTIONS(5557), 1, - anon_sym_STAR, - STATE(3669), 2, + ACTIONS(5584), 1, + anon_sym_DOT, + ACTIONS(5586), 1, + aux_sym__case_terminator_token1, + STATE(3670), 2, sym_comment, sym_include, - [149168] = 6, + [146388] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5559), 1, + ACTIONS(5588), 1, sym_identifier, - STATE(1616), 1, + STATE(289), 1, sym_qualified_name, - STATE(3670), 2, + STATE(3671), 2, sym_comment, sym_include, - [149188] = 6, + [146408] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4899), 1, - sym__namedot, - STATE(3471), 1, - aux_sym_qualified_name_repeat1, - STATE(3671), 2, + ACTIONS(5590), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3672), 2, sym_comment, sym_include, - [149208] = 6, + [146426] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5561), 1, + ACTIONS(5592), 1, sym_identifier, - STATE(4292), 1, - sym_qualified_name, - STATE(3672), 2, - sym_comment, - sym_include, - [149228] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5563), 1, - sym__terminator, - ACTIONS(5565), 1, - aux_sym_interface_statement_token1, + ACTIONS(5594), 1, + sym__integer_literal, STATE(3673), 2, sym_comment, sym_include, - [149248] = 6, + [146446] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, + ACTIONS(5224), 1, aux_sym__block_terminator_token1, - STATE(1336), 1, + STATE(1456), 1, sym__block_terminator, STATE(3674), 2, sym_comment, sym_include, - [149268] = 6, - ACTIONS(59), 1, + [146466] = 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(5567), 1, - sym__terminator, - ACTIONS(5569), 1, - aux_sym_interface_statement_token1, + ACTIONS(5596), 1, + sym_identifier, + STATE(285), 1, + sym_qualified_name, STATE(3675), 2, sym_comment, sym_include, - [149288] = 6, + [146486] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2496), 1, - sym_query_fields, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3410), 1, + sym__block_terminator, STATE(3676), 2, sym_comment, sym_include, - [149308] = 6, + [146506] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2649), 1, - sym_query_fields, + ACTIONS(5598), 1, + sym__terminator, + ACTIONS(5600), 1, + aux_sym_primitive_type_token19, STATE(3677), 2, sym_comment, sym_include, - [149328] = 6, - ACTIONS(3), 1, + [146526] = 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(5571), 1, - sym_identifier, - STATE(2652), 1, - sym_qualified_name, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1465), 1, + sym__block_terminator, STATE(3678), 2, sym_comment, sym_include, - [149348] = 6, - ACTIONS(3), 1, + [146546] = 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(5573), 1, - sym_identifier, - STATE(4206), 1, - sym_qualified_name, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2450), 1, + sym_query_fields, STATE(3679), 2, sym_comment, sym_include, - [149368] = 6, + [146566] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, - aux_sym__block_terminator_token1, - STATE(3467), 1, - sym__block_terminator, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2660), 1, + sym_query_fields, STATE(3680), 2, sym_comment, sym_include, - [149388] = 6, + [146586] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5575), 1, + ACTIONS(5602), 1, sym_identifier, - ACTIONS(5577), 1, - sym__terminator, + STATE(2649), 1, + sym_qualified_name, STATE(3681), 2, sym_comment, sym_include, - [149408] = 6, - ACTIONS(59), 1, + [146606] = 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(5215), 1, - aux_sym__block_terminator_token1, - STATE(3466), 1, - sym__block_terminator, + ACTIONS(5604), 1, + sym_identifier, + STATE(4501), 1, + sym_qualified_name, STATE(3682), 2, sym_comment, sym_include, - [149428] = 6, + [146626] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, - aux_sym__block_terminator_token1, - STATE(3465), 1, - sym__block_terminator, + ACTIONS(5606), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, STATE(3683), 2, sym_comment, sym_include, - [149448] = 6, + [146644] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5579), 1, - aux_sym_using_statement_token2, - ACTIONS(5581), 1, - aux_sym_input_close_statement_token2, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3411), 1, + sym__block_terminator, STATE(3684), 2, sym_comment, sym_include, - [149468] = 6, - ACTIONS(59), 1, + [146664] = 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(5215), 1, - aux_sym__block_terminator_token1, - STATE(3463), 1, - sym__block_terminator, + ACTIONS(5608), 1, + sym_identifier, + ACTIONS(5610), 1, + sym__integer_literal, STATE(3685), 2, sym_comment, sym_include, - [149488] = 6, - ACTIONS(59), 1, + [146684] = 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(5579), 1, - aux_sym_using_statement_token2, - ACTIONS(5583), 1, - aux_sym_input_close_statement_token2, + ACTIONS(5612), 1, + sym_identifier, + ACTIONS(5614), 1, + anon_sym_STAR, STATE(3686), 2, sym_comment, sym_include, - [149508] = 6, + [146704] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2568), 1, - sym_query_fields, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(860), 1, + sym__block_terminator, STATE(3687), 2, sym_comment, sym_include, - [149528] = 5, + [146724] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5585), 2, + ACTIONS(5616), 1, sym__terminator, - anon_sym_COLON, + ACTIONS(5618), 1, + aux_sym_primitive_type_token19, STATE(3688), 2, sym_comment, sym_include, - [149546] = 6, - ACTIONS(59), 1, + [146744] = 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(5215), 1, - aux_sym__block_terminator_token1, - STATE(3461), 1, - sym__block_terminator, + ACTIONS(5620), 1, + sym_identifier, + ACTIONS(5622), 1, + anon_sym_COMMA, STATE(3689), 2, sym_comment, sym_include, - [149566] = 5, + [146764] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2570), 2, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(861), 1, + sym__block_terminator, STATE(3690), 2, sym_comment, sym_include, - [149584] = 6, + [146784] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5587), 1, + ACTIONS(5624), 2, sym__terminator, - ACTIONS(5589), 1, - aux_sym_constructor_definition_token1, + anon_sym_COLON, STATE(3691), 2, sym_comment, sym_include, - [149604] = 6, + [146802] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(1038), 1, + STATE(3413), 1, sym__block_terminator, STATE(3692), 2, sym_comment, sym_include, - [149624] = 6, + [146822] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5591), 1, - sym__terminator, - ACTIONS(5593), 1, - anon_sym_COLON, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(862), 1, + sym__block_terminator, STATE(3693), 2, sym_comment, sym_include, - [149644] = 6, + [146842] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5206), 1, aux_sym__block_terminator_token1, - STATE(3459), 1, + STATE(1043), 1, sym__block_terminator, STATE(3694), 2, sym_comment, sym_include, - [149664] = 6, + [146862] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, + ACTIONS(5222), 1, aux_sym__block_terminator_token1, - STATE(1258), 1, + STATE(878), 1, sym__block_terminator, STATE(3695), 2, sym_comment, sym_include, - [149684] = 6, + [146882] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(3458), 1, + STATE(3417), 1, sym__block_terminator, STATE(3696), 2, sym_comment, sym_include, - [149704] = 6, + [146902] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5222), 1, aux_sym__block_terminator_token1, - STATE(1586), 1, + STATE(903), 1, sym__block_terminator, STATE(3697), 2, sym_comment, sym_include, - [149724] = 6, + [146922] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(3455), 1, + STATE(3425), 1, sym__block_terminator, STATE(3698), 2, sym_comment, sym_include, - [149744] = 6, + [146942] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, + ACTIONS(5206), 1, aux_sym__block_terminator_token1, - STATE(1039), 1, + STATE(1046), 1, sym__block_terminator, STATE(3699), 2, sym_comment, sym_include, - [149764] = 6, + [146962] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5595), 1, - aux_sym_variable_definition_token5, - ACTIONS(5597), 1, - aux_sym_variable_definition_token6, + ACTIONS(5626), 1, + sym__terminator, + ACTIONS(5628), 1, + aux_sym_interface_statement_token1, STATE(3700), 2, sym_comment, sym_include, - [149784] = 6, + [146982] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(3454), 1, + STATE(3428), 1, sym__block_terminator, STATE(3701), 2, sym_comment, sym_include, - [149804] = 6, + [147002] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5599), 1, - aux_sym_primitive_type_token1, - ACTIONS(5601), 1, - aux_sym_event_definition_token2, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(863), 1, + sym__block_terminator, STATE(3702), 2, sym_comment, sym_include, - [149824] = 6, + [147022] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2487), 1, - sym_query_fields, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1287), 1, + sym__block_terminator, STATE(3703), 2, sym_comment, sym_include, - [149844] = 6, + [147042] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2664), 1, - sym_query_fields, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3430), 1, + sym__block_terminator, STATE(3704), 2, sym_comment, sym_include, - [149864] = 6, + [147062] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5603), 1, - sym__terminator, - ACTIONS(5605), 1, - aux_sym_finally_statement_token1, + ACTIONS(5630), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3705), 2, sym_comment, sym_include, - [149884] = 6, + [147080] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, + ACTIONS(5226), 1, anon_sym_LPAREN, - STATE(2581), 1, + STATE(2357), 1, sym_query_fields, STATE(3706), 2, sym_comment, sym_include, - [149904] = 6, + [147100] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, - aux_sym__block_terminator_token1, - STATE(3453), 1, - sym__block_terminator, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2634), 1, + sym_query_fields, STATE(3707), 2, sym_comment, sym_include, - [149924] = 6, + [147120] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5607), 1, - sym__terminator, - ACTIONS(5609), 1, - anon_sym_COLON, + ACTIONS(117), 2, + sym__namecolon, + anon_sym_LPAREN, STATE(3708), 2, sym_comment, sym_include, - [149944] = 6, + [147138] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(3452), 1, + STATE(3434), 1, sym__block_terminator, STATE(3709), 2, sym_comment, sym_include, - [149964] = 6, - ACTIONS(3), 1, + [147158] = 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(5611), 1, - sym_identifier, - ACTIONS(5613), 1, - aux_sym_input_expression_token2, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1215), 1, + sym__block_terminator, STATE(3710), 2, sym_comment, sym_include, - [149984] = 6, + [147178] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5607), 1, - sym__terminator, - ACTIONS(5615), 1, - anon_sym_METHOD, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1453), 1, + sym__block_terminator, STATE(3711), 2, sym_comment, sym_include, - [150004] = 6, + [147198] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5224), 1, aux_sym__block_terminator_token1, - STATE(3448), 1, + STATE(1451), 1, sym__block_terminator, STATE(3712), 2, sym_comment, sym_include, - [150024] = 6, - ACTIONS(3), 1, + [147218] = 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(5617), 1, - sym_identifier, - STATE(1690), 1, - sym_qualified_name, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1450), 1, + sym__block_terminator, STATE(3713), 2, sym_comment, sym_include, - [150044] = 6, + [147238] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, - aux_sym__block_terminator_token1, - STATE(3446), 1, - sym__block_terminator, + ACTIONS(5632), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(3714), 2, sym_comment, sym_include, - [150064] = 6, - ACTIONS(59), 1, + [147256] = 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(5619), 1, - sym__terminator, - ACTIONS(5621), 1, - aux_sym_primitive_type_token19, + ACTIONS(5634), 1, + sym_identifier, + ACTIONS(5636), 1, + sym__integer_literal, STATE(3715), 2, sym_comment, sym_include, - [150084] = 6, + [147276] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5206), 1, aux_sym__block_terminator_token1, - STATE(3445), 1, + STATE(1054), 1, sym__block_terminator, STATE(3716), 2, sym_comment, sym_include, - [150104] = 6, - ACTIONS(3), 1, + [147296] = 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(2343), 1, - anon_sym_RPAREN, - ACTIONS(5623), 1, - anon_sym_, + ACTIONS(4814), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(5077), 1, + aux_sym_on_quit_phrase_token1, STATE(3717), 2, sym_comment, sym_include, - [150124] = 6, - ACTIONS(59), 1, + [147316] = 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(5229), 1, - aux_sym__block_terminator_token1, - STATE(1042), 1, - sym__block_terminator, + ACTIONS(5638), 1, + sym_identifier, + ACTIONS(5640), 1, + anon_sym_STAR, STATE(3718), 2, sym_comment, sym_include, - [150144] = 6, + [147336] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2589), 1, - sym_query_fields, + ACTIONS(5642), 1, + sym__terminator, + ACTIONS(5644), 1, + aux_sym_interface_statement_token1, STATE(3719), 2, sym_comment, sym_include, - [150164] = 6, + [147356] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2449), 1, - sym_query_fields, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3479), 1, + sym__block_terminator, STATE(3720), 2, sym_comment, sym_include, - [150184] = 6, + [147376] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, + ACTIONS(5216), 1, aux_sym__block_terminator_token1, - STATE(1046), 1, + STATE(1452), 1, sym__block_terminator, STATE(3721), 2, sym_comment, sym_include, - [150204] = 6, + [147396] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5625), 1, - sym__terminator, - ACTIONS(5627), 1, - aux_sym_finally_statement_token1, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2638), 1, + sym_query_fields, STATE(3722), 2, sym_comment, sym_include, - [150224] = 6, + [147416] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2670), 1, - sym_query_fields, + ACTIONS(5646), 1, + sym__terminator, + ACTIONS(5648), 1, + anon_sym_METHOD, STATE(3723), 2, sym_comment, sym_include, - [150244] = 6, + [147436] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5629), 1, - anon_sym_DOT, - ACTIONS(5631), 1, - aux_sym__procedure_terminator_token1, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1288), 1, + sym__block_terminator, STATE(3724), 2, sym_comment, sym_include, - [150264] = 6, + [147456] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, - aux_sym__block_terminator_token1, - STATE(1605), 1, - sym__block_terminator, + ACTIONS(173), 1, + sym__terminator, + ACTIONS(5650), 1, + anon_sym_NO_DASHERROR, STATE(3725), 2, sym_comment, sym_include, - [150284] = 6, + [147476] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, - aux_sym__block_terminator_token1, - STATE(1451), 1, - sym__block_terminator, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2628), 1, + sym_query_fields, STATE(3726), 2, sym_comment, sym_include, - [150304] = 5, + [147496] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5130), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3403), 1, + sym__block_terminator, STATE(3727), 2, sym_comment, sym_include, - [150322] = 6, + [147516] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5633), 1, - sym__terminator, - ACTIONS(5635), 1, - aux_sym_interface_statement_token1, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1270), 1, + sym__block_terminator, STATE(3728), 2, sym_comment, sym_include, - [150342] = 6, + [147536] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(3439), 1, + STATE(3491), 1, sym__block_terminator, STATE(3729), 2, sym_comment, sym_include, - [150362] = 6, + [147556] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, - aux_sym__block_terminator_token1, - STATE(3438), 1, - sym__block_terminator, + ACTIONS(5652), 2, + sym__terminator, + anon_sym_COLON, STATE(3730), 2, sym_comment, sym_include, - [150382] = 6, + [147574] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5222), 1, aux_sym__block_terminator_token1, - STATE(1596), 1, + STATE(870), 1, sym__block_terminator, STATE(3731), 2, sym_comment, sym_include, - [150402] = 6, + [147594] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5629), 1, - anon_sym_DOT, - ACTIONS(5637), 1, - aux_sym__case_terminator_token1, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3486), 1, + sym__block_terminator, STATE(3732), 2, sym_comment, sym_include, - [150422] = 6, + [147614] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(3435), 1, + STATE(3480), 1, sym__block_terminator, STATE(3733), 2, sym_comment, sym_include, - [150442] = 6, + [147634] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5639), 1, - sym__terminator, - ACTIONS(5641), 1, - aux_sym_primitive_type_token19, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(908), 1, + sym__block_terminator, STATE(3734), 2, sym_comment, sym_include, - [150462] = 6, + [147654] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2675), 1, - sym_query_fields, + ACTIONS(5654), 1, + sym__terminator, + ACTIONS(5656), 1, + aux_sym_primitive_type_token19, STATE(3735), 2, sym_comment, sym_include, - [150482] = 6, - ACTIONS(59), 1, + [147674] = 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(5643), 1, - aux_sym_variable_definition_token5, - ACTIONS(5645), 1, - aux_sym_variable_definition_token6, + ACTIONS(5658), 1, + sym_identifier, + STATE(557), 1, + sym_qualified_name, STATE(3736), 2, sym_comment, sym_include, - [150502] = 6, + [147694] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5224), 1, aux_sym__block_terminator_token1, - STATE(3430), 1, + STATE(1484), 1, sym__block_terminator, STATE(3737), 2, sym_comment, sym_include, - [150522] = 6, + [147714] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5647), 1, - aux_sym_variable_definition_token5, - ACTIONS(5649), 1, - aux_sym_variable_definition_token6, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2624), 1, + sym_query_fields, STATE(3738), 2, sym_comment, sym_include, - [150542] = 6, - ACTIONS(3), 1, + [147734] = 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(5651), 1, - sym_identifier, - STATE(4277), 1, - sym_qualified_name, + ACTIONS(5660), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3739), 2, sym_comment, sym_include, - [150562] = 6, - ACTIONS(3), 1, + [147752] = 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(5653), 1, - sym_identifier, - STATE(2611), 1, - sym_qualified_name, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3475), 1, + sym__block_terminator, STATE(3740), 2, sym_comment, sym_include, - [150582] = 6, + [147772] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5655), 1, - sym__terminator, - ACTIONS(5657), 1, - aux_sym_interface_statement_token1, + ACTIONS(893), 1, + sym__namedot, + STATE(333), 1, + aux_sym_qualified_name_repeat1, STATE(3741), 2, sym_comment, sym_include, - [150602] = 6, + [147792] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, + ACTIONS(5226), 1, anon_sym_LPAREN, - STATE(2621), 1, + STATE(2653), 1, sym_query_fields, STATE(3742), 2, sym_comment, sym_include, - [150622] = 6, + [147812] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2488), 1, - sym_query_fields, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3463), 1, + sym__block_terminator, STATE(3743), 2, sym_comment, sym_include, - [150642] = 6, - ACTIONS(3), 1, + [147832] = 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(5659), 1, - sym_identifier, - STATE(3023), 1, - sym_qualified_name, + ACTIONS(5662), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, STATE(3744), 2, sym_comment, sym_include, - [150662] = 6, - ACTIONS(3), 1, + [147850] = 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(4406), 1, - anon_sym_COLON, - ACTIONS(5661), 1, - sym_identifier, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(910), 1, + sym__block_terminator, STATE(3745), 2, sym_comment, sym_include, - [150682] = 6, - ACTIONS(59), 1, + [147870] = 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(5229), 1, - aux_sym__block_terminator_token1, - STATE(1049), 1, - sym__block_terminator, + ACTIONS(5664), 1, + sym_identifier, + STATE(3214), 1, + sym_qualified_name, STATE(3746), 2, sym_comment, sym_include, - [150702] = 6, + [147890] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5222), 1, aux_sym__block_terminator_token1, - STATE(3429), 1, + STATE(924), 1, sym__block_terminator, STATE(3747), 2, sym_comment, sym_include, - [150722] = 6, + [147910] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(1576), 1, + STATE(3495), 1, sym__block_terminator, STATE(3748), 2, sym_comment, sym_include, - [150742] = 6, + [147930] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, + ACTIONS(5216), 1, aux_sym__block_terminator_token1, - STATE(1051), 1, + STATE(1447), 1, sym__block_terminator, STATE(3749), 2, sym_comment, sym_include, - [150762] = 6, - ACTIONS(59), 1, + [147950] = 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(5215), 1, - aux_sym__block_terminator_token1, - STATE(3424), 1, - sym__block_terminator, + ACTIONS(5666), 1, + sym_identifier, + STATE(4527), 1, + sym_qualified_name, STATE(3750), 2, sym_comment, sym_include, - [150782] = 6, + [147970] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, + ACTIONS(5222), 1, aux_sym__block_terminator_token1, - STATE(1288), 1, + STATE(876), 1, sym__block_terminator, STATE(3751), 2, sym_comment, sym_include, - [150802] = 6, + [147990] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, - aux_sym__block_terminator_token1, - STATE(1287), 1, - sym__block_terminator, + ACTIONS(5668), 1, + aux_sym_variable_definition_token5, + ACTIONS(5670), 1, + aux_sym_function_parameter_token2, STATE(3752), 2, sym_comment, sym_include, - [150822] = 6, + [148010] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5663), 1, + ACTIONS(5672), 1, sym__terminator, - ACTIONS(5665), 1, - aux_sym_primitive_type_token19, + ACTIONS(5674), 1, + aux_sym_interface_statement_token1, STATE(3753), 2, sym_comment, sym_include, - [150842] = 6, + [148030] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1275), 1, - sym__block_terminator, + ACTIONS(5676), 1, + sym__terminator, + ACTIONS(5678), 1, + aux_sym_primitive_type_token19, STATE(3754), 2, sym_comment, sym_include, - [150862] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5215), 1, - aux_sym__block_terminator_token1, - STATE(3419), 1, - sym__block_terminator, - STATE(3755), 2, - sym_comment, - sym_include, - [150882] = 6, + [148050] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4657), 1, + ACTIONS(4717), 1, anon_sym_COLON, - ACTIONS(5667), 1, + ACTIONS(5680), 1, sym_identifier, - STATE(3756), 2, + STATE(3755), 2, sym_comment, sym_include, - [150902] = 6, + [148070] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5224), 1, aux_sym__block_terminator_token1, - STATE(3418), 1, + STATE(1365), 1, sym__block_terminator, - STATE(3757), 2, + STATE(3756), 2, sym_comment, sym_include, - [150922] = 6, + [148090] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(1328), 1, + STATE(3399), 1, sym__block_terminator, + STATE(3757), 2, + sym_comment, + sym_include, + [148110] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5682), 1, + sym_identifier, + STATE(4177), 1, + sym_qualified_name, STATE(3758), 2, sym_comment, sym_include, - [150942] = 6, + [148130] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1277), 1, - sym__block_terminator, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2658), 1, + sym_query_fields, STATE(3759), 2, sym_comment, sym_include, - [150962] = 6, + [148150] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5669), 1, - sym__terminator, - ACTIONS(5671), 1, - aux_sym_primitive_type_token19, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2457), 1, + sym_query_fields, STATE(3760), 2, sym_comment, sym_include, - [150982] = 6, - ACTIONS(3), 1, + [148170] = 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(4607), 1, - anon_sym_COLON, - ACTIONS(5673), 1, - sym_identifier, + ACTIONS(5684), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, STATE(3761), 2, sym_comment, sym_include, - [151002] = 6, + [148188] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1020), 1, - sym__block_terminator, + ACTIONS(5686), 1, + sym__terminator, + ACTIONS(5688), 1, + aux_sym_catch_statement_token1, STATE(3762), 2, sym_comment, sym_include, - [151022] = 6, + [148208] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(1524), 1, + STATE(3369), 1, sym__block_terminator, STATE(3763), 2, sym_comment, sym_include, - [151042] = 6, - ACTIONS(3), 1, + [148228] = 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(5675), 1, - sym_identifier, - STATE(2653), 1, - sym_qualified_name, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1444), 1, + sym__block_terminator, STATE(3764), 2, sym_comment, sym_include, - [151062] = 6, + [148248] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym_identifier, - STATE(4204), 1, + STATE(4160), 1, sym_qualified_name, STATE(3765), 2, sym_comment, sym_include, - [151082] = 6, + [148268] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5679), 1, + ACTIONS(5692), 1, sym__terminator, - ACTIONS(5681), 1, + ACTIONS(5694), 1, aux_sym_finally_statement_token1, STATE(3766), 2, sym_comment, sym_include, - [151102] = 6, + [148288] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1067), 1, - sym__block_terminator, + ACTIONS(5696), 1, + anon_sym_DOT, + ACTIONS(5698), 1, + aux_sym__case_terminator_token1, STATE(3767), 2, sym_comment, sym_include, - [151122] = 6, + [148308] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, - aux_sym__block_terminator_token1, - STATE(3410), 1, - sym__block_terminator, + ACTIONS(5700), 1, + sym__terminator, + ACTIONS(5702), 1, + aux_sym_interface_statement_token1, STATE(3768), 2, sym_comment, sym_include, - [151142] = 6, + [148328] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1280), 1, - sym__block_terminator, + ACTIONS(5264), 1, + aux_sym_on_error_phrase_token1, + STATE(4028), 1, + sym_on_error_phrase, STATE(3769), 2, sym_comment, sym_include, - [151162] = 6, - ACTIONS(59), 1, + [148348] = 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(5405), 1, - aux_sym_scope_tuning_token1, - STATE(4171), 1, - sym_new_expression, + ACTIONS(5704), 1, + sym_identifier, + STATE(4163), 1, + sym_qualified_name, STATE(3770), 2, sym_comment, sym_include, - [151182] = 6, + [148368] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5289), 1, - aux_sym_on_error_phrase_token1, - STATE(4110), 1, - sym_on_error_phrase, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(1099), 1, + sym__block_terminator, STATE(3771), 2, sym_comment, sym_include, - [151202] = 5, - ACTIONS(59), 1, + [148388] = 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(5683), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, + ACTIONS(5706), 1, + sym_identifier, + ACTIONS(5708), 1, + sym__terminator, STATE(3772), 2, sym_comment, sym_include, - [151220] = 5, + [148408] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5685), 2, - anon_sym_RPAREN, + ACTIONS(5710), 2, anon_sym_COMMA, + anon_sym_COLON, STATE(3773), 2, sym_comment, sym_include, - [151238] = 6, + [148426] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5687), 1, - sym__terminator, - ACTIONS(5689), 1, - aux_sym_interface_statement_token1, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(973), 1, + sym__block_terminator, STATE(3774), 2, sym_comment, sym_include, - [151258] = 6, + [148446] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5691), 1, - sym__terminator, - ACTIONS(5693), 1, - aux_sym_interface_statement_token1, + ACTIONS(5712), 1, + anon_sym_COMMA, + ACTIONS(5714), 1, + aux_sym_on_error_phrase_token3, STATE(3775), 2, sym_comment, sym_include, - [151278] = 6, + [148466] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(1468), 1, + STATE(3352), 1, sym__block_terminator, STATE(3776), 2, sym_comment, sym_include, - [151298] = 6, - ACTIONS(3), 1, + [148486] = 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(5695), 1, - sym_identifier, - STATE(1900), 1, - sym_qualified_name, + ACTIONS(5716), 1, + sym__terminator, + ACTIONS(5718), 1, + aux_sym_primitive_type_token19, STATE(3777), 2, sym_comment, sym_include, - [151318] = 5, + [148506] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2572), 2, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(5720), 1, + sym__terminator, + ACTIONS(5722), 1, + aux_sym_interface_statement_token1, STATE(3778), 2, sym_comment, sym_include, - [151336] = 6, - ACTIONS(59), 1, + [148526] = 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(5219), 1, - aux_sym__block_terminator_token1, - STATE(1520), 1, - sym__block_terminator, + ACTIONS(5724), 1, + sym_identifier, + STATE(4337), 1, + sym_qualified_name, STATE(3779), 2, sym_comment, sym_include, - [151356] = 6, - ACTIONS(59), 1, + [148546] = 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(5217), 1, - anon_sym_LPAREN, - STATE(2537), 1, - sym_query_fields, + ACTIONS(5726), 1, + sym_identifier, + STATE(2555), 1, + sym_qualified_name, STATE(3780), 2, sym_comment, sym_include, - [151376] = 6, + [148566] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(1193), 1, + STATE(3335), 1, sym__block_terminator, STATE(3781), 2, sym_comment, sym_include, - [151396] = 6, - ACTIONS(3), 1, + [148586] = 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(5697), 1, - sym_identifier, - STATE(2673), 1, - sym_qualified_name, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2663), 1, + sym_query_fields, STATE(3782), 2, sym_comment, sym_include, - [151416] = 6, + [148606] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5699), 1, - sym__terminator, - ACTIONS(5701), 1, - aux_sym_primitive_type_token19, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2480), 1, + sym_query_fields, STATE(3783), 2, sym_comment, sym_include, - [151436] = 6, + [148626] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1072), 1, - sym__block_terminator, + ACTIONS(5728), 2, + sym__terminator, + anon_sym_COLON, STATE(3784), 2, sym_comment, sym_include, - [151456] = 6, + [148644] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5216), 1, aux_sym__block_terminator_token1, - STATE(3391), 1, + STATE(1440), 1, sym__block_terminator, STATE(3785), 2, sym_comment, sym_include, - [151476] = 6, + [148664] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, + ACTIONS(5206), 1, aux_sym__block_terminator_token1, - STATE(1074), 1, + STATE(1023), 1, sym__block_terminator, STATE(3786), 2, sym_comment, sym_include, - [151496] = 6, - ACTIONS(59), 1, + [148684] = 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(5703), 1, - sym__terminator, - ACTIONS(5705), 1, - aux_sym_interface_statement_token1, + ACTIONS(5730), 1, + sym_identifier, + STATE(2523), 1, + sym_qualified_name, STATE(3787), 2, sym_comment, sym_include, - [151516] = 6, + [148704] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5224), 1, aux_sym__block_terminator_token1, - STATE(1506), 1, + STATE(1398), 1, sym__block_terminator, STATE(3788), 2, sym_comment, sym_include, - [151536] = 6, + [148724] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5707), 1, + ACTIONS(5732), 1, sym_identifier, - STATE(287), 1, + STATE(1906), 1, sym_qualified_name, STATE(3789), 2, sym_comment, sym_include, - [151556] = 6, + [148744] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5709), 1, - sym__terminator, - ACTIONS(5711), 1, - aux_sym_constructor_definition_token1, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1199), 1, + sym__block_terminator, STATE(3790), 2, sym_comment, sym_include, - [151576] = 6, + [148764] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(875), 1, + sym__block_terminator, + STATE(3791), 2, + sym_comment, + sym_include, + [148784] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5713), 1, + ACTIONS(5734), 1, sym_identifier, - STATE(1906), 1, - sym_qualified_name, - STATE(3791), 2, + ACTIONS(5736), 1, + sym__integer_literal, + STATE(3792), 2, sym_comment, sym_include, - [151596] = 6, + [148804] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5715), 1, - sym__terminator, - ACTIONS(5717), 1, - aux_sym_catch_statement_token1, - STATE(3792), 2, + ACTIONS(4900), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3793), 2, sym_comment, sym_include, - [151616] = 6, + [148822] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5719), 1, - sym__terminator, - ACTIONS(5721), 1, - aux_sym_interface_statement_token1, - STATE(3793), 2, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(936), 1, + sym__block_terminator, + STATE(3794), 2, sym_comment, sym_include, - [151636] = 6, + [148842] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5723), 1, + ACTIONS(5738), 1, sym_identifier, - ACTIONS(5725), 1, - sym__integer_literal, - STATE(3794), 2, - sym_comment, - sym_include, - [151656] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5727), 1, - sym__terminator, - ACTIONS(5729), 1, - anon_sym_COLON, + STATE(1678), 1, + sym_qualified_name, STATE(3795), 2, sym_comment, sym_include, - [151676] = 6, - ACTIONS(59), 1, + [148862] = 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(5731), 1, - sym__terminator, - ACTIONS(5733), 1, - aux_sym_primitive_type_token19, + ACTIONS(5740), 1, + sym_identifier, + ACTIONS(5742), 1, + aux_sym_input_expression_token2, STATE(3796), 2, sym_comment, sym_include, - [151696] = 6, + [148882] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5735), 1, - sym__terminator, - ACTIONS(5737), 1, - anon_sym_COLON, + ACTIONS(5744), 1, + aux_sym_using_statement_token2, + ACTIONS(5746), 1, + aux_sym_input_close_statement_token2, STATE(3797), 2, sym_comment, sym_include, - [151716] = 6, + [148902] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5405), 1, - aux_sym_scope_tuning_token1, - STATE(4139), 1, - sym_new_expression, + ACTIONS(5744), 1, + aux_sym_using_statement_token2, + ACTIONS(5748), 1, + aux_sym_input_close_statement_token2, STATE(3798), 2, sym_comment, sym_include, - [151736] = 6, - ACTIONS(59), 1, + [148922] = 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(5739), 1, - aux_sym_using_statement_token2, - ACTIONS(5741), 1, - aux_sym_input_close_statement_token2, + ACTIONS(5750), 1, + sym_identifier, + ACTIONS(5752), 1, + aux_sym_input_expression_token2, STATE(3799), 2, sym_comment, sym_include, - [151756] = 6, + [148942] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5739), 1, - aux_sym_using_statement_token2, - ACTIONS(5743), 1, - aux_sym_input_close_statement_token2, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(865), 1, + sym__block_terminator, STATE(3800), 2, sym_comment, sym_include, - [151776] = 6, + [148962] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5224), 1, aux_sym__block_terminator_token1, - STATE(3387), 1, + STATE(1438), 1, sym__block_terminator, STATE(3801), 2, sym_comment, sym_include, - [151796] = 5, + [148982] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5745), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1436), 1, + sym__block_terminator, STATE(3802), 2, sym_comment, sym_include, - [151814] = 6, + [149002] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5747), 1, - aux_sym_variable_definition_token5, - ACTIONS(5749), 1, - aux_sym_variable_definition_token6, + ACTIONS(5754), 1, + aux_sym_input_close_statement_token2, + ACTIONS(5756), 1, + aux_sym_output_stream_statement_token1, STATE(3803), 2, sym_comment, sym_include, - [151834] = 6, + [149022] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5751), 1, - aux_sym_access_tuning_token1, - ACTIONS(5753), 1, - anon_sym_COLON, + ACTIONS(5756), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(5758), 1, + aux_sym_input_close_statement_token2, STATE(3804), 2, sym_comment, sym_include, - [151854] = 6, + [149042] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5755), 1, - aux_sym_input_close_statement_token2, - ACTIONS(5757), 1, - aux_sym_output_stream_statement_token1, + ACTIONS(5522), 1, + anon_sym_DOT, + ACTIONS(5760), 1, + aux_sym__procedure_terminator_token1, STATE(3805), 2, sym_comment, sym_include, - [151874] = 6, + [149062] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5757), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(5759), 1, - aux_sym_input_close_statement_token2, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1431), 1, + sym__block_terminator, STATE(3806), 2, sym_comment, sym_include, - [151894] = 6, + [149082] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, - aux_sym__block_terminator_token1, - STATE(3385), 1, - sym__block_terminator, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2535), 1, + sym_query_fields, STATE(3807), 2, sym_comment, sym_include, - [151914] = 6, - ACTIONS(3), 1, + [149102] = 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(5761), 1, - sym_identifier, - STATE(1708), 1, - sym_qualified_name, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1388), 1, + sym__block_terminator, STATE(3808), 2, sym_comment, sym_include, - [151934] = 6, + [149122] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, - aux_sym__block_terminator_token1, - STATE(1498), 1, - sym__block_terminator, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2452), 1, + sym_query_fields, STATE(3809), 2, sym_comment, sym_include, - [151954] = 6, + [149142] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5763), 1, + ACTIONS(5762), 1, sym_identifier, - STATE(2910), 1, + STATE(2655), 1, sym_qualified_name, STATE(3810), 2, sym_comment, sym_include, - [151974] = 6, + [149162] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5765), 1, + ACTIONS(5764), 1, sym_identifier, - STATE(4389), 1, + STATE(4270), 1, sym_qualified_name, STATE(3811), 2, sym_comment, sym_include, - [151994] = 6, + [149182] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5767), 1, - aux_sym_input_close_statement_token2, - ACTIONS(5769), 1, - aux_sym_output_stream_statement_token1, + ACTIONS(5766), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, STATE(3812), 2, sym_comment, sym_include, - [152014] = 6, + [149200] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5769), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(5771), 1, - aux_sym_input_close_statement_token2, + ACTIONS(5398), 1, + aux_sym_scope_tuning_token1, + STATE(4215), 1, + sym_new_expression, STATE(3813), 2, sym_comment, sym_include, - [152034] = 5, - ACTIONS(59), 1, + [149220] = 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(5773), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, + ACTIONS(5768), 1, + sym_identifier, + STATE(279), 1, + sym_qualified_name, STATE(3814), 2, sym_comment, sym_include, - [152052] = 6, + [149240] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5405), 1, - aux_sym_scope_tuning_token1, - STATE(4188), 1, - sym_new_expression, + ACTIONS(5770), 1, + sym__terminator, + ACTIONS(5772), 1, + aux_sym_catch_statement_token1, STATE(3815), 2, sym_comment, sym_include, - [152072] = 6, + [149260] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5775), 1, - aux_sym_using_statement_token2, - ACTIONS(5777), 1, - aux_sym_input_close_statement_token2, + ACTIONS(4402), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(3816), 2, sym_comment, sym_include, - [152092] = 6, + [149278] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5775), 1, - aux_sym_using_statement_token2, - ACTIONS(5779), 1, - aux_sym_input_close_statement_token2, + ACTIONS(5774), 1, + sym__terminator, + ACTIONS(5776), 1, + aux_sym_constructor_definition_token1, STATE(3817), 2, sym_comment, sym_include, - [152112] = 6, + [149298] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1087), 1, - sym__block_terminator, + ACTIONS(5778), 1, + aux_sym_variable_definition_token5, + ACTIONS(5780), 1, + aux_sym_variable_definition_token6, STATE(3818), 2, sym_comment, sym_include, - [152132] = 6, + [149318] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5222), 1, aux_sym__block_terminator_token1, - STATE(1474), 1, + STATE(864), 1, sym__block_terminator, STATE(3819), 2, sym_comment, sym_include, - [152152] = 6, + [149338] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1158), 1, - sym__block_terminator, + ACTIONS(5782), 1, + sym__terminator, + ACTIONS(5784), 1, + anon_sym_COLON, STATE(3820), 2, sym_comment, sym_include, - [152172] = 6, - ACTIONS(59), 1, + [149358] = 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(5219), 1, - aux_sym__block_terminator_token1, - STATE(1471), 1, - sym__block_terminator, + ACTIONS(5786), 1, + sym_identifier, + STATE(277), 1, + sym_qualified_name, STATE(3821), 2, sym_comment, sym_include, - [152192] = 5, + [149378] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5781), 2, + ACTIONS(5788), 1, sym__terminator, - anon_sym_COLON, + ACTIONS(5790), 1, + aux_sym_finally_statement_token1, STATE(3822), 2, sym_comment, sym_include, - [152210] = 6, - ACTIONS(3), 1, + [149398] = 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(5783), 1, - sym_identifier, - STATE(281), 1, - sym_qualified_name, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1429), 1, + sym__block_terminator, STATE(3823), 2, sym_comment, sym_include, - [152230] = 6, - ACTIONS(3), 1, + [149418] = 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(5785), 1, - sym_identifier, - ACTIONS(5787), 1, - sym__integer_literal, + ACTIONS(5398), 1, + aux_sym_scope_tuning_token1, + STATE(4202), 1, + sym_new_expression, STATE(3824), 2, sym_comment, sym_include, - [152250] = 6, - ACTIONS(3), 1, + [149438] = 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(5789), 1, - sym_identifier, - STATE(1913), 1, - sym_qualified_name, + ACTIONS(5792), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, STATE(3825), 2, sym_comment, sym_include, - [152270] = 6, + [149456] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5791), 1, - sym__terminator, - ACTIONS(5793), 1, - aux_sym_primitive_type_token19, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1196), 1, + sym__block_terminator, STATE(3826), 2, sym_comment, sym_include, - [152290] = 6, + [149476] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1157), 1, - sym__block_terminator, + ACTIONS(5794), 1, + sym__terminator, + ACTIONS(5796), 1, + aux_sym_primitive_type_token19, STATE(3827), 2, sym_comment, sym_include, - [152310] = 6, + [149496] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5795), 1, - aux_sym_getter_token1, - ACTIONS(5797), 1, - aux_sym_setter_token1, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(853), 1, + sym__block_terminator, STATE(3828), 2, sym_comment, sym_include, - [152330] = 6, + [149516] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5629), 1, - anon_sym_DOT, - ACTIONS(5799), 1, - aux_sym__function_terminator_token1, + ACTIONS(5798), 1, + sym__terminator, + ACTIONS(5800), 1, + anon_sym_COLON, STATE(3829), 2, sym_comment, sym_include, - [152350] = 6, - ACTIONS(3), 1, + [149536] = 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(5801), 1, - sym_identifier, - STATE(2573), 1, - sym_qualified_name, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(838), 1, + sym__block_terminator, STATE(3830), 2, sym_comment, sym_include, - [152370] = 6, + [149556] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5803), 1, + ACTIONS(5802), 1, sym_identifier, - STATE(2810), 1, + STATE(1687), 1, sym_qualified_name, STATE(3831), 2, sym_comment, sym_include, - [152390] = 6, + [149576] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5224), 1, aux_sym__block_terminator_token1, - STATE(1455), 1, + STATE(1304), 1, sym__block_terminator, STATE(3832), 2, sym_comment, sym_include, - [152410] = 6, + [149596] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5805), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(5807), 1, - aux_sym_function_statement_token1, + ACTIONS(5804), 1, + sym__terminator, + ACTIONS(5806), 1, + anon_sym_METHOD, STATE(3833), 2, sym_comment, sym_include, - [152430] = 6, + [149616] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5809), 1, - sym__terminator, - ACTIONS(5811), 1, - aux_sym_catch_statement_token1, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1426), 1, + sym__block_terminator, STATE(3834), 2, sym_comment, sym_include, - [152450] = 6, + [149636] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5813), 1, + ACTIONS(5808), 1, sym__terminator, - ACTIONS(5815), 1, - aux_sym_catch_statement_token1, + ACTIONS(5810), 1, + aux_sym_constructor_definition_token1, STATE(3835), 2, sym_comment, sym_include, - [152470] = 6, - ACTIONS(3), 1, + [149656] = 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(5817), 1, - sym_identifier, - ACTIONS(5819), 1, + ACTIONS(5812), 1, sym__terminator, + ACTIONS(5814), 1, + anon_sym_METHOD, STATE(3836), 2, sym_comment, sym_include, - [152490] = 6, + [149676] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5206), 1, aux_sym__block_terminator_token1, - STATE(1445), 1, + STATE(839), 1, sym__block_terminator, STATE(3837), 2, sym_comment, sym_include, - [152510] = 6, + [149696] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, - aux_sym__block_terminator_token1, - STATE(1435), 1, - sym__block_terminator, + ACTIONS(2005), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3838), 2, sym_comment, sym_include, - [152530] = 6, - ACTIONS(59), 1, + [149714] = 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(5219), 1, - aux_sym__block_terminator_token1, - STATE(1433), 1, - sym__block_terminator, + ACTIONS(5816), 1, + sym_identifier, + STATE(2645), 1, + sym_qualified_name, STATE(3839), 2, sym_comment, sym_include, - [152550] = 6, - ACTIONS(59), 1, + [149734] = 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(5821), 1, - sym__terminator, - ACTIONS(5823), 1, - aux_sym_interface_statement_token1, + ACTIONS(5818), 1, + sym_identifier, + STATE(282), 1, + sym_qualified_name, STATE(3840), 2, sym_comment, sym_include, - [152570] = 6, + [149754] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, - aux_sym__block_terminator_token1, - STATE(1429), 1, - sym__block_terminator, + ACTIONS(2557), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(3841), 2, sym_comment, sym_include, - [152590] = 6, + [149772] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5289), 1, - aux_sym_on_error_phrase_token1, - STATE(4042), 1, - sym_on_error_phrase, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(846), 1, + sym__block_terminator, STATE(3842), 2, sym_comment, sym_include, - [152610] = 6, + [149792] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1192), 1, - sym__namedot, - STATE(621), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1423), 1, + sym__block_terminator, STATE(3843), 2, sym_comment, sym_include, - [152630] = 6, + [149812] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, + ACTIONS(5222), 1, aux_sym__block_terminator_token1, - STATE(1556), 1, + STATE(918), 1, sym__block_terminator, STATE(3844), 2, sym_comment, sym_include, - [152650] = 6, - ACTIONS(59), 1, + [149832] = 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(5825), 1, - sym__terminator, - ACTIONS(5827), 1, - aux_sym_catch_statement_token1, + ACTIONS(4665), 1, + anon_sym_COLON, + ACTIONS(5820), 1, + sym_identifier, STATE(3845), 2, sym_comment, sym_include, - [152670] = 6, + [149852] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, - aux_sym__block_terminator_token1, - STATE(3375), 1, - sym__block_terminator, + ACTIONS(5822), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, STATE(3846), 2, sym_comment, sym_include, - [152690] = 6, + [149870] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1145), 1, - sym__block_terminator, + ACTIONS(5398), 1, + aux_sym_scope_tuning_token1, + STATE(4360), 1, + sym_new_expression, STATE(3847), 2, sym_comment, sym_include, - [152710] = 5, + [149890] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5829), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1421), 1, + sym__block_terminator, STATE(3848), 2, sym_comment, sym_include, - [152728] = 6, + [149910] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5405), 1, + ACTIONS(5398), 1, aux_sym_scope_tuning_token1, - STATE(4249), 1, + STATE(4111), 1, sym_new_expression, STATE(3849), 2, sym_comment, sym_include, - [152748] = 6, + [149930] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1093), 1, - sym__block_terminator, + ACTIONS(5824), 1, + aux_sym_primitive_type_token1, + ACTIONS(5826), 1, + aux_sym_event_definition_token2, STATE(3850), 2, sym_comment, sym_include, - [152768] = 6, + [149950] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1143), 1, - sym__block_terminator, + ACTIONS(5828), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, STATE(3851), 2, sym_comment, sym_include, - [152788] = 6, + [149968] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, - aux_sym__block_terminator_token1, - STATE(1497), 1, - sym__block_terminator, + ACTIONS(5830), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, STATE(3852), 2, sym_comment, sym_include, - [152808] = 6, + [149986] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5831), 1, - sym__terminator, - ACTIONS(5833), 1, - aux_sym_catch_statement_token1, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1336), 1, + sym__block_terminator, STATE(3853), 2, sym_comment, sym_include, - [152828] = 6, + [150006] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5216), 1, aux_sym__block_terminator_token1, - STATE(1422), 1, + STATE(1420), 1, sym__block_terminator, STATE(3854), 2, sym_comment, sym_include, - [152848] = 6, - ACTIONS(59), 1, + [150026] = 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(5219), 1, - aux_sym__block_terminator_token1, - STATE(1415), 1, - sym__block_terminator, + ACTIONS(5832), 1, + sym_identifier, + ACTIONS(5834), 1, + sym__terminator, STATE(3855), 2, sym_comment, sym_include, - [152868] = 6, + [150046] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5835), 1, - sym__terminator, - ACTIONS(5837), 1, - aux_sym_interface_statement_token1, + ACTIONS(5398), 1, + aux_sym_scope_tuning_token1, + STATE(4142), 1, + sym_new_expression, STATE(3856), 2, sym_comment, sym_include, - [152888] = 6, - ACTIONS(59), 1, + [150066] = 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(5839), 1, - sym__terminator, - ACTIONS(5841), 1, - aux_sym_primitive_type_token19, + ACTIONS(5836), 1, + sym_identifier, + STATE(4457), 1, + sym_qualified_name, STATE(3857), 2, sym_comment, sym_include, - [152908] = 6, - ACTIONS(59), 1, + [150086] = 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(5267), 1, - aux_sym__block_terminator_token1, - STATE(1129), 1, - sym__block_terminator, + ACTIONS(5838), 1, + sym_identifier, + STATE(2540), 1, + sym_qualified_name, STATE(3858), 2, sym_comment, sym_include, - [152928] = 6, - ACTIONS(3), 1, + [150106] = 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(5843), 1, - sym_identifier, - STATE(4287), 1, - sym_qualified_name, + ACTIONS(5840), 1, + aux_sym_variable_definition_token5, + ACTIONS(5842), 1, + aux_sym_variable_definition_token6, STATE(3859), 2, sym_comment, sym_include, - [152948] = 6, - ACTIONS(3), 1, + [150126] = 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(5845), 1, - sym_identifier, - STATE(2546), 1, - sym_qualified_name, + ACTIONS(5844), 1, + aux_sym_input_close_statement_token2, + ACTIONS(5846), 1, + aux_sym_output_stream_statement_token1, STATE(3860), 2, sym_comment, sym_include, - [152968] = 6, + [150146] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5847), 1, - aux_sym_input_close_statement_token2, - ACTIONS(5849), 1, + ACTIONS(5846), 1, aux_sym_output_stream_statement_token1, + ACTIONS(5848), 1, + aux_sym_input_close_statement_token2, STATE(3861), 2, sym_comment, sym_include, - [152988] = 6, + [150166] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1128), 1, - sym__block_terminator, + ACTIONS(5850), 1, + sym__terminator, + ACTIONS(5852), 1, + aux_sym_catch_statement_token1, STATE(3862), 2, sym_comment, sym_include, - [153008] = 6, + [150186] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5206), 1, aux_sym__block_terminator_token1, - STATE(3369), 1, + STATE(849), 1, sym__block_terminator, STATE(3863), 2, sym_comment, sym_include, - [153028] = 5, + [150206] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5851), 2, + ACTIONS(5854), 1, sym__terminator, - anon_sym_COLON, + ACTIONS(5856), 1, + aux_sym_interface_statement_token1, STATE(3864), 2, sym_comment, sym_include, - [153046] = 6, + [150226] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5849), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(5853), 1, - aux_sym_input_close_statement_token2, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3261), 1, + sym__block_terminator, STATE(3865), 2, sym_comment, sym_include, - [153066] = 6, - ACTIONS(3), 1, + [150246] = 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(5855), 1, - sym_identifier, - STATE(25), 1, - sym_qualified_name, + ACTIONS(5858), 1, + aux_sym_using_statement_token2, + ACTIONS(5860), 1, + aux_sym_input_close_statement_token2, STATE(3866), 2, sym_comment, sym_include, - [153086] = 6, + [150266] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, - aux_sym__block_terminator_token1, - STATE(3365), 1, - sym__block_terminator, + ACTIONS(5858), 1, + aux_sym_using_statement_token2, + ACTIONS(5862), 1, + aux_sym_input_close_statement_token2, STATE(3867), 2, sym_comment, sym_include, - [153106] = 6, + [150286] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5857), 1, - anon_sym_DOT, - ACTIONS(5859), 1, - aux_sym__case_terminator_token1, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1419), 1, + sym__block_terminator, STATE(3868), 2, sym_comment, sym_include, - [153126] = 6, + [150306] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, + ACTIONS(5222), 1, aux_sym__block_terminator_token1, - STATE(1029), 1, + STATE(866), 1, sym__block_terminator, STATE(3869), 2, sym_comment, sym_include, - [153146] = 6, + [150326] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, - aux_sym__block_terminator_token1, - STATE(1400), 1, - sym__block_terminator, + ACTIONS(5864), 1, + sym__terminator, + ACTIONS(5866), 1, + aux_sym_finally_statement_token1, STATE(3870), 2, sym_comment, sym_include, - [153166] = 6, - ACTIONS(59), 1, + [150346] = 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(5219), 1, - aux_sym__block_terminator_token1, - STATE(1399), 1, - sym__block_terminator, + ACTIONS(5868), 1, + sym_identifier, + ACTIONS(5870), 1, + sym__integer_literal, STATE(3871), 2, sym_comment, sym_include, - [153186] = 6, + [150366] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5222), 1, aux_sym__block_terminator_token1, - STATE(1398), 1, + STATE(874), 1, sym__block_terminator, STATE(3872), 2, sym_comment, sym_include, - [153206] = 5, - ACTIONS(59), 1, + [150386] = 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(4966), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(93), 2, + sym__namedot, + sym_identifier, STATE(3873), 2, sym_comment, sym_include, - [153224] = 6, + [150404] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, - aux_sym__block_terminator_token1, - STATE(1393), 1, - sym__block_terminator, + ACTIONS(5872), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3874), 2, sym_comment, sym_include, - [153244] = 6, - ACTIONS(59), 1, + [150422] = 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(5861), 1, - aux_sym_variable_definition_token5, - ACTIONS(5863), 1, - aux_sym_function_parameter_token2, + ACTIONS(5874), 1, + sym_identifier, + STATE(1909), 1, + sym_qualified_name, STATE(3875), 2, sym_comment, sym_include, - [153264] = 6, + [150442] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, + ACTIONS(5216), 1, aux_sym__block_terminator_token1, - STATE(1125), 1, + STATE(1418), 1, sym__block_terminator, STATE(3876), 2, sym_comment, sym_include, - [153284] = 6, - ACTIONS(3), 1, + [150462] = 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(5865), 1, - sym_identifier, - STATE(1823), 1, - sym_qualified_name, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1412), 1, + sym__block_terminator, STATE(3877), 2, sym_comment, sym_include, - [153304] = 6, + [150482] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5867), 1, - anon_sym_DOT, - ACTIONS(5869), 1, - aux_sym__function_terminator_token1, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(913), 1, + sym__block_terminator, STATE(3878), 2, sym_comment, sym_include, - [153324] = 6, + [150502] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, - aux_sym__block_terminator_token1, - STATE(1391), 1, - sym__block_terminator, + ACTIONS(5876), 1, + sym__terminator, + ACTIONS(5878), 1, + aux_sym_interface_statement_token1, STATE(3879), 2, sym_comment, sym_include, - [153344] = 6, + [150522] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5216), 1, aux_sym__block_terminator_token1, - STATE(1386), 1, + STATE(1125), 1, sym__block_terminator, STATE(3880), 2, sym_comment, sym_include, - [153364] = 6, + [150542] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5871), 1, - sym__terminator, - ACTIONS(5873), 1, - aux_sym_primitive_type_token19, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1188), 1, + sym__block_terminator, STATE(3881), 2, sym_comment, sym_include, - [153384] = 6, - ACTIONS(3), 1, + [150562] = 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(5875), 1, - sym_identifier, - ACTIONS(5877), 1, - sym__terminator, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1411), 1, + sym__block_terminator, STATE(3882), 2, sym_comment, sym_include, - [153404] = 6, + [150582] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2679), 1, - sym_query_fields, + ACTIONS(5880), 1, + sym__terminator, + ACTIONS(5882), 1, + aux_sym_interface_statement_token1, STATE(3883), 2, sym_comment, sym_include, - [153424] = 6, + [150602] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2453), 1, - sym_query_fields, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1417), 1, + sym__block_terminator, STATE(3884), 2, sym_comment, sym_include, - [153444] = 6, + [150622] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - aux_sym__block_terminator_token1, - STATE(1114), 1, - sym__block_terminator, + ACTIONS(5884), 1, + aux_sym_input_close_statement_token2, + ACTIONS(5886), 1, + aux_sym_output_stream_statement_token1, STATE(3885), 2, sym_comment, sym_include, - [153464] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5879), 1, - sym_identifier, - STATE(2682), 1, - sym_qualified_name, - STATE(3886), 2, - sym_comment, - sym_include, - [153484] = 6, + [150642] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2620), 1, - sym_query_fields, - STATE(3887), 2, - sym_comment, - sym_include, - [153504] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5881), 1, - sym_identifier, - STATE(4029), 1, - sym_qualified_name, - STATE(3888), 2, + ACTIONS(5264), 1, + aux_sym_on_error_phrase_token1, + STATE(4081), 1, + sym_on_error_phrase, + STATE(3886), 2, sym_comment, sym_include, - [153524] = 6, + [150662] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(1344), 1, + STATE(3230), 1, sym__block_terminator, - STATE(3889), 2, + STATE(3887), 2, sym_comment, sym_include, - [153544] = 5, + [150682] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5883), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3890), 2, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(926), 1, + sym__block_terminator, + STATE(3888), 2, sym_comment, sym_include, - [153562] = 6, + [150702] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5224), 1, aux_sym__block_terminator_token1, - STATE(1385), 1, + STATE(1414), 1, sym__block_terminator, - STATE(3891), 2, + STATE(3889), 2, sym_comment, sym_include, - [153582] = 6, + [150722] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, + ACTIONS(5226), 1, anon_sym_LPAREN, - STATE(2458), 1, + STATE(2484), 1, sym_query_fields, - STATE(3892), 2, + STATE(3890), 2, sym_comment, sym_include, - [153602] = 6, + [150742] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, + ACTIONS(5226), 1, anon_sym_LPAREN, - STATE(2533), 1, + STATE(2527), 1, sym_query_fields, - STATE(3893), 2, + STATE(3891), 2, sym_comment, sym_include, - [153622] = 6, + [150762] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5885), 1, + ACTIONS(5888), 1, sym_identifier, - STATE(2530), 1, + STATE(2525), 1, sym_qualified_name, - STATE(3894), 2, + STATE(3892), 2, sym_comment, sym_include, - [153642] = 6, + [150782] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5887), 1, + ACTIONS(5890), 1, sym_identifier, - STATE(4329), 1, + STATE(4475), 1, sym_qualified_name, - STATE(3895), 2, + STATE(3893), 2, sym_comment, sym_include, - [153662] = 6, + [150802] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, - aux_sym__block_terminator_token1, - STATE(1384), 1, - sym__block_terminator, - STATE(3896), 2, + ACTIONS(5246), 1, + anon_sym_DOT, + ACTIONS(5892), 1, + aux_sym__function_terminator_token1, + STATE(3894), 2, sym_comment, sym_include, - [153682] = 6, + [150822] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, + ACTIONS(5224), 1, aux_sym__block_terminator_token1, - STATE(1339), 1, + STATE(1375), 1, sym__block_terminator, - STATE(3897), 2, + STATE(3895), 2, + sym_comment, + sym_include, + [150842] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5894), 1, + sym__terminator, + ACTIONS(5896), 1, + aux_sym_primitive_type_token19, + STATE(3896), 2, sym_comment, sym_include, - [153702] = 6, + [150862] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, + ACTIONS(5224), 1, aux_sym__block_terminator_token1, - STATE(1105), 1, + STATE(1343), 1, sym__block_terminator, - STATE(3898), 2, + STATE(3897), 2, sym_comment, sym_include, - [153722] = 6, + [150882] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5889), 1, + ACTIONS(5898), 1, sym_identifier, - ACTIONS(5891), 1, - sym__terminator, - STATE(3899), 2, + ACTIONS(5900), 1, + anon_sym_COMMA, + STATE(3898), 2, sym_comment, sym_include, - [153742] = 6, + [150902] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5216), 1, aux_sym__block_terminator_token1, - STATE(1378), 1, + STATE(1410), 1, sym__block_terminator, - STATE(3900), 2, + STATE(3899), 2, sym_comment, sym_include, - [153762] = 6, + [150922] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, - aux_sym__block_terminator_token1, - STATE(1373), 1, - sym__block_terminator, + ACTIONS(4283), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3900), 2, + sym_comment, + sym_include, + [150940] = 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, + STATE(2092), 1, + sym_qualified_name, STATE(3901), 2, sym_comment, sym_include, - [153782] = 6, + [150960] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5206), 1, aux_sym__block_terminator_token1, - STATE(1370), 1, + STATE(951), 1, sym__block_terminator, STATE(3902), 2, sym_comment, sym_include, - [153802] = 6, + [150980] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(1116), 1, + STATE(3219), 1, sym__block_terminator, STATE(3903), 2, sym_comment, sym_include, - [153822] = 5, + [151000] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5893), 2, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(5904), 1, + sym__terminator, + ACTIONS(5906), 1, + aux_sym_primitive_type_token19, STATE(3904), 2, sym_comment, sym_include, - [153840] = 6, - ACTIONS(59), 1, + [151020] = 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(5219), 1, - aux_sym__block_terminator_token1, - STATE(1366), 1, - sym__block_terminator, + ACTIONS(5908), 1, + sym_identifier, + ACTIONS(5910), 1, + sym__terminator, STATE(3905), 2, sym_comment, sym_include, - [153860] = 6, + [151040] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5206), 1, aux_sym__block_terminator_token1, - STATE(1363), 1, + STATE(957), 1, sym__block_terminator, STATE(3906), 2, sym_comment, sym_include, - [153880] = 6, + [151060] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, - aux_sym__block_terminator_token1, - STATE(1362), 1, - sym__block_terminator, + ACTIONS(5886), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(5912), 1, + aux_sym_input_close_statement_token2, STATE(3907), 2, sym_comment, sym_include, - [153900] = 6, + [151080] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5895), 1, - anon_sym_COMMA, - ACTIONS(5897), 1, - aux_sym_on_error_phrase_token3, + ACTIONS(5914), 1, + sym__terminator, + ACTIONS(5916), 1, + aux_sym_constructor_definition_token1, STATE(3908), 2, sym_comment, sym_include, - [153920] = 6, + [151100] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, + ACTIONS(5216), 1, aux_sym__block_terminator_token1, - STATE(3355), 1, + STATE(1409), 1, sym__block_terminator, STATE(3909), 2, sym_comment, sym_include, - [153940] = 6, + [151120] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, + ACTIONS(5222), 1, aux_sym__block_terminator_token1, - STATE(1442), 1, + STATE(867), 1, sym__block_terminator, STATE(3910), 2, sym_comment, sym_include, - [153960] = 5, + [151140] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5899), 2, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(960), 1, + sym__block_terminator, STATE(3911), 2, sym_comment, sym_include, - [153978] = 6, + [151160] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5901), 1, - anon_sym_DOT, - ACTIONS(5903), 1, - aux_sym__case_terminator_token1, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(974), 1, + sym__block_terminator, STATE(3912), 2, sym_comment, sym_include, - [153998] = 6, - ACTIONS(3), 1, + [151180] = 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(5905), 1, - sym_identifier, - ACTIONS(5907), 1, - sym__terminator, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2479), 1, + sym_query_fields, STATE(3913), 2, sym_comment, sym_include, - [154018] = 6, - ACTIONS(3), 1, + [151200] = 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(5909), 1, - sym_identifier, - STATE(2035), 1, - sym_qualified_name, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2519), 1, + sym_query_fields, STATE(3914), 2, sym_comment, sym_include, - [154038] = 6, + [151220] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2475), 1, - sym_query_fields, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1408), 1, + sym__block_terminator, STATE(3915), 2, sym_comment, sym_include, - [154058] = 6, + [151240] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2525), 1, - sym_query_fields, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(975), 1, + sym__block_terminator, STATE(3916), 2, sym_comment, sym_include, - [154078] = 6, + [151260] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5867), 1, - anon_sym_DOT, - ACTIONS(5911), 1, - aux_sym__case_terminator_token1, + ACTIONS(5918), 1, + sym__terminator, + ACTIONS(5920), 1, + aux_sym_primitive_type_token19, STATE(3917), 2, sym_comment, sym_include, - [154098] = 6, + [151280] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5913), 1, - sym__terminator, - ACTIONS(5915), 1, - aux_sym_interface_statement_token1, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(976), 1, + sym__block_terminator, STATE(3918), 2, sym_comment, sym_include, - [154118] = 6, + [151300] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1079), 1, - sym__block_terminator, + ACTIONS(5922), 1, + sym__terminator, + ACTIONS(5924), 1, + aux_sym_primitive_type_token19, STATE(3919), 2, sym_comment, sym_include, - [154138] = 6, + [151320] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, - aux_sym__block_terminator_token1, - STATE(3347), 1, - sym__block_terminator, + ACTIONS(5926), 1, + sym__terminator, + ACTIONS(5928), 1, + anon_sym_METHOD, STATE(3920), 2, sym_comment, sym_include, - [154158] = 6, + [151340] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2610), 1, - sym_query_fields, + ACTIONS(5930), 1, + sym__terminator, + ACTIONS(5932), 1, + aux_sym_primitive_type_token19, STATE(3921), 2, sym_comment, sym_include, - [154178] = 6, + [151360] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, + ACTIONS(5206), 1, aux_sym__block_terminator_token1, - STATE(1078), 1, + STATE(987), 1, sym__block_terminator, STATE(3922), 2, sym_comment, sym_include, - [154198] = 6, - ACTIONS(59), 1, + [151380] = 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(5235), 1, - aux_sym__block_terminator_token1, - STATE(1327), 1, - sym__block_terminator, + ACTIONS(5934), 1, + sym_identifier, + STATE(2995), 1, + sym_qualified_name, STATE(3923), 2, sym_comment, sym_include, - [154218] = 6, + [151400] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, + ACTIONS(5206), 1, aux_sym__block_terminator_token1, - STATE(1302), 1, + STATE(988), 1, sym__block_terminator, STATE(3924), 2, sym_comment, sym_include, - [154238] = 5, + [151420] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5917), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2606), 1, + sym_query_fields, STATE(3925), 2, sym_comment, sym_include, - [154256] = 5, + [151440] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2459), 2, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(994), 1, + sym__block_terminator, STATE(3926), 2, sym_comment, sym_include, - [154274] = 6, + [151460] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2582), 1, - sym_query_fields, + ACTIONS(5782), 1, + sym__terminator, + ACTIONS(5936), 1, + anon_sym_METHOD, STATE(3927), 2, sym_comment, sym_include, - [154294] = 6, + [151480] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5919), 1, - sym__terminator, - ACTIONS(5921), 1, - aux_sym_primitive_type_token19, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(996), 1, + sym__block_terminator, STATE(3928), 2, sym_comment, sym_include, - [154314] = 5, + [151500] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5923), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1430), 1, + sym__block_terminator, STATE(3929), 2, sym_comment, sym_include, - [154332] = 6, + [151520] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1023), 1, - sym__block_terminator, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2518), 1, + sym_query_fields, STATE(3930), 2, sym_comment, sym_include, - [154352] = 6, - ACTIONS(3), 1, + [151540] = 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(5925), 1, - sym_identifier, - ACTIONS(5927), 1, - anon_sym_RPAREN, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(997), 1, + sym__block_terminator, STATE(3931), 2, sym_comment, sym_include, - [154372] = 6, + [151560] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, + ACTIONS(5226), 1, anon_sym_LPAREN, - STATE(2522), 1, + STATE(2381), 1, sym_query_fields, STATE(3932), 2, sym_comment, sym_include, - [154392] = 6, + [151580] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1197), 1, - sym__block_terminator, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2599), 1, + sym_query_fields, STATE(3933), 2, sym_comment, sym_include, - [154412] = 6, + [151600] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5929), 1, + ACTIONS(5938), 1, sym_identifier, - ACTIONS(5931), 1, - anon_sym_STAR, + STATE(2613), 1, + sym_qualified_name, STATE(3934), 2, sym_comment, sym_include, - [154432] = 6, + [151620] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, - aux_sym__block_terminator_token1, - STATE(1477), 1, - sym__block_terminator, + ACTIONS(5940), 1, + sym__terminator, + ACTIONS(5942), 1, + anon_sym_METHOD, STATE(3935), 2, sym_comment, sym_include, - [154452] = 6, + [151640] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5405), 1, - aux_sym_scope_tuning_token1, - STATE(4419), 1, - sym_new_expression, + ACTIONS(5944), 1, + aux_sym_variable_definition_token5, + ACTIONS(5946), 1, + aux_sym_variable_definition_token6, STATE(3936), 2, sym_comment, sym_include, - [154472] = 6, + [151660] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, + ACTIONS(5206), 1, aux_sym__block_terminator_token1, - STATE(1058), 1, + STATE(1000), 1, sym__block_terminator, STATE(3937), 2, sym_comment, sym_include, - [154492] = 6, - ACTIONS(59), 1, + [151680] = 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(4833), 1, - aux_sym_on_stop_phrase_token1, - ACTIONS(4855), 1, - aux_sym_on_quit_phrase_token1, + ACTIONS(5948), 1, + sym_identifier, + STATE(1371), 1, + sym_qualified_name, STATE(3938), 2, sym_comment, sym_include, - [154512] = 6, + [151700] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2598), 1, - sym_query_fields, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(872), 1, + sym__block_terminator, STATE(3939), 2, sym_comment, sym_include, - [154532] = 6, + [151720] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, + ACTIONS(5206), 1, aux_sym__block_terminator_token1, - STATE(1322), 1, + STATE(1001), 1, sym__block_terminator, STATE(3940), 2, sym_comment, sym_include, - [154552] = 6, + [151740] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5933), 1, - aux_sym_variable_definition_token5, - ACTIONS(5935), 1, - aux_sym_function_parameter_token2, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(1007), 1, + sym__block_terminator, STATE(3941), 2, sym_comment, sym_include, - [154572] = 5, + [151760] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5937), 2, - sym__terminator, - anon_sym_COLON, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2515), 1, + sym_query_fields, STATE(3942), 2, sym_comment, sym_include, - [154590] = 5, - ACTIONS(3), 1, + [151780] = 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(5939), 2, - sym_identifier, - aux_sym_function_parameter_token1, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(1010), 1, + sym__block_terminator, STATE(3943), 2, sym_comment, sym_include, - [154608] = 6, + [151800] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2519), 1, - sym_query_fields, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1245), 1, + sym__block_terminator, STATE(3944), 2, sym_comment, sym_include, - [154628] = 6, - ACTIONS(3), 1, + [151820] = 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(5941), 1, - sym_identifier, - STATE(985), 1, - sym_qualified_name, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2595), 1, + sym_query_fields, STATE(3945), 2, sym_comment, sym_include, - [154648] = 6, + [151840] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, + ACTIONS(5226), 1, anon_sym_LPAREN, - STATE(2380), 1, + STATE(2412), 1, sym_query_fields, STATE(3946), 2, sym_comment, sym_include, - [154668] = 6, + [151860] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1064), 1, - sym__block_terminator, + ACTIONS(5073), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(3947), 2, sym_comment, sym_include, - [154688] = 6, - ACTIONS(3), 1, + [151878] = 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(5943), 1, - sym_identifier, - ACTIONS(5945), 1, - aux_sym_function_parameter_token1, + ACTIONS(5950), 1, + aux_sym_primitive_type_token1, + ACTIONS(5952), 1, + aux_sym_event_definition_token2, STATE(3948), 2, sym_comment, sym_include, - [154708] = 6, + [151898] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5947), 1, - sym__terminator, - ACTIONS(5949), 1, - anon_sym_COLON, + ACTIONS(5206), 1, + aux_sym__block_terminator_token1, + STATE(1011), 1, + sym__block_terminator, STATE(3949), 2, sym_comment, sym_include, - [154728] = 5, + [151918] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5951), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(871), 1, + sym__block_terminator, STATE(3950), 2, sym_comment, sym_include, - [154746] = 6, + [151938] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5953), 1, - aux_sym_primitive_type_token1, - ACTIONS(5955), 1, - aux_sym_event_definition_token2, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3148), 1, + sym__block_terminator, STATE(3951), 2, sym_comment, sym_include, - [154766] = 6, + [151958] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5957), 1, + ACTIONS(5954), 1, aux_sym_variable_definition_token5, - ACTIONS(5959), 1, + ACTIONS(5956), 1, aux_sym_variable_definition_token6, STATE(3952), 2, sym_comment, sym_include, - [154786] = 6, + [151978] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5961), 1, - sym__terminator, - ACTIONS(5963), 1, - aux_sym_interface_statement_token1, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(868), 1, + sym__block_terminator, STATE(3953), 2, sym_comment, sym_include, - [154806] = 6, + [151998] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, + ACTIONS(5216), 1, aux_sym__block_terminator_token1, - STATE(1065), 1, + STATE(1157), 1, sym__block_terminator, STATE(3954), 2, sym_comment, sym_include, - [154826] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5965), 1, - sym_identifier, - STATE(1691), 1, - sym_qualified_name, - STATE(3955), 2, - sym_comment, - sym_include, - [154846] = 6, - ACTIONS(59), 1, + [152018] = 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(5235), 1, - aux_sym__block_terminator_token1, - STATE(1500), 1, - sym__block_terminator, - STATE(3956), 2, + ACTIONS(5958), 1, + sym_identifier, + ACTIONS(5960), 1, + sym__terminator, + STATE(3955), 2, sym_comment, sym_include, - [154866] = 6, + [152038] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5967), 1, + ACTIONS(5962), 1, sym__terminator, - ACTIONS(5969), 1, + ACTIONS(5964), 1, aux_sym_interface_statement_token1, - STATE(3957), 2, + STATE(3956), 2, sym_comment, sym_include, - [154886] = 6, + [152058] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5971), 1, + ACTIONS(5966), 1, sym_identifier, - STATE(2914), 1, - sym_qualified_name, - STATE(3958), 2, + ACTIONS(5968), 1, + anon_sym_COMMA, + STATE(3957), 2, sym_comment, sym_include, - [154906] = 6, + [152078] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, + ACTIONS(5514), 1, aux_sym__block_terminator_token1, - STATE(1080), 1, + STATE(3115), 1, sym__block_terminator, - STATE(3959), 2, + STATE(3958), 2, sym_comment, sym_include, - [154926] = 6, + [152098] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5973), 1, + ACTIONS(5970), 1, sym_identifier, - STATE(1625), 1, + STATE(1607), 1, sym_qualified_name, + STATE(3959), 2, + sym_comment, + sym_include, + [152118] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(455), 1, + sym__terminator, + ACTIONS(5972), 1, + anon_sym_NO_DASHERROR, STATE(3960), 2, sym_comment, sym_include, - [154946] = 6, + [152138] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5975), 1, + ACTIONS(5974), 1, sym_identifier, - STATE(4207), 1, + STATE(4127), 1, sym_qualified_name, STATE(3961), 2, sym_comment, sym_include, - [154966] = 6, + [152158] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, - aux_sym__block_terminator_token1, - STATE(3325), 1, - sym__block_terminator, + ACTIONS(5976), 1, + aux_sym_using_statement_token2, + ACTIONS(5978), 1, + aux_sym_input_close_statement_token2, STATE(3962), 2, sym_comment, sym_include, - [154986] = 6, + [152178] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5977), 1, + ACTIONS(5980), 1, sym_identifier, - ACTIONS(5979), 1, - sym__terminator, + STATE(2583), 1, + sym_qualified_name, STATE(3963), 2, sym_comment, sym_include, - [155006] = 6, - ACTIONS(3), 1, + [152198] = 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(5981), 1, - sym_identifier, - STATE(2585), 1, - sym_qualified_name, + ACTIONS(5226), 1, + anon_sym_LPAREN, + STATE(2569), 1, + sym_query_fields, STATE(3964), 2, sym_comment, sym_include, - [155026] = 6, + [152218] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, + ACTIONS(5226), 1, anon_sym_LPAREN, - STATE(2583), 1, + STATE(2428), 1, sym_query_fields, STATE(3965), 2, sym_comment, sym_include, - [155046] = 6, + [152238] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, - aux_sym__block_terminator_token1, - STATE(3323), 1, - sym__block_terminator, + ACTIONS(5982), 1, + sym__terminator, + ACTIONS(5984), 1, + aux_sym_primitive_type_token19, STATE(3966), 2, sym_comment, sym_include, - [155066] = 6, + [152258] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2402), 1, - sym_query_fields, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1374), 1, + sym__block_terminator, STATE(3967), 2, sym_comment, sym_include, - [155086] = 6, + [152278] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - sym__namedot, - STATE(2), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(5986), 1, + sym__terminator, + ACTIONS(5988), 1, + aux_sym_catch_statement_token1, STATE(3968), 2, sym_comment, sym_include, - [155106] = 6, + [152298] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1081), 1, - sym__block_terminator, + ACTIONS(5990), 1, + sym__terminator, + ACTIONS(5992), 1, + aux_sym_catch_statement_token1, STATE(3969), 2, sym_comment, sym_include, - [155126] = 6, + [152318] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5983), 1, + ACTIONS(5994), 1, sym__terminator, - ACTIONS(5985), 1, - aux_sym_catch_statement_token1, + ACTIONS(5996), 1, + anon_sym_METHOD, STATE(3970), 2, sym_comment, sym_include, - [155146] = 6, - ACTIONS(3), 1, + [152338] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5987), 1, - sym_identifier, - ACTIONS(5989), 1, - anon_sym_COMMA, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(942), 1, + sym__block_terminator, STATE(3971), 2, sym_comment, sym_include, - [155166] = 6, - ACTIONS(3), 1, + [152358] = 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(5045), 1, - anon_sym_RPAREN, - ACTIONS(5991), 1, - anon_sym_, + ACTIONS(5998), 1, + sym__terminator, + ACTIONS(6000), 1, + aux_sym_catch_statement_token1, STATE(3972), 2, sym_comment, sym_include, - [155186] = 6, + [152378] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1082), 1, - sym__block_terminator, + ACTIONS(5264), 1, + aux_sym_on_error_phrase_token1, + STATE(4590), 1, + sym_on_error_phrase, STATE(3973), 2, sym_comment, sym_include, - [155206] = 6, + [152398] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5867), 1, - anon_sym_DOT, - ACTIONS(5993), 1, - aux_sym__procedure_terminator_token1, + ACTIONS(5976), 1, + aux_sym_using_statement_token2, + ACTIONS(6002), 1, + aux_sym_input_close_statement_token2, STATE(3974), 2, sym_comment, sym_include, - [155226] = 6, + [152418] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5289), 1, - aux_sym_on_error_phrase_token1, - STATE(4505), 1, - sym_on_error_phrase, + ACTIONS(6004), 1, + sym__terminator, + ACTIONS(6006), 1, + anon_sym_METHOD, STATE(3975), 2, sym_comment, sym_include, - [155246] = 6, - ACTIONS(59), 1, + [152438] = 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(5235), 1, - aux_sym__block_terminator_token1, - STATE(1297), 1, - sym__block_terminator, + ACTIONS(6008), 1, + sym_identifier, + ACTIONS(6010), 1, + anon_sym_STAR, STATE(3976), 2, sym_comment, sym_include, - [155266] = 6, + [152458] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, - aux_sym__block_terminator_token1, - STATE(1530), 1, - sym__block_terminator, + ACTIONS(4605), 1, + sym__terminator, + ACTIONS(4607), 1, + aux_sym_using_statement_token2, STATE(3977), 2, sym_comment, sym_include, - [155286] = 6, - ACTIONS(59), 1, + [152478] = 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(5235), 1, - aux_sym__block_terminator_token1, - STATE(1467), 1, - sym__block_terminator, + ACTIONS(6012), 1, + sym_identifier, + STATE(2556), 1, + sym_qualified_name, STATE(3978), 2, sym_comment, sym_include, - [155306] = 6, - ACTIONS(59), 1, + [152498] = 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(5995), 1, - sym__terminator, - ACTIONS(5997), 1, - aux_sym_catch_statement_token1, + ACTIONS(6014), 1, + sym_identifier, + STATE(4324), 1, + sym_qualified_name, STATE(3979), 2, sym_comment, sym_include, - [155326] = 6, - ACTIONS(59), 1, + [152518] = 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(5267), 1, - aux_sym__block_terminator_token1, - STATE(1102), 1, - sym__block_terminator, + ACTIONS(6016), 1, + sym_identifier, + ACTIONS(6018), 1, + sym__terminator, STATE(3980), 2, sym_comment, sym_include, - [155346] = 6, + [152538] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5999), 1, + ACTIONS(6004), 1, sym__terminator, - ACTIONS(6001), 1, - aux_sym_catch_statement_token1, + ACTIONS(6020), 1, + anon_sym_COLON, STATE(3981), 2, sym_comment, sym_include, - [155366] = 6, + [152558] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1104), 1, - sym__block_terminator, + ACTIONS(6022), 1, + sym__terminator, + ACTIONS(6024), 1, + aux_sym_interface_statement_token1, STATE(3982), 2, sym_comment, sym_include, - [155386] = 6, + [152578] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5405), 1, - aux_sym_scope_tuning_token1, - STATE(4130), 1, - sym_new_expression, + ACTIONS(6026), 1, + sym__terminator, + ACTIONS(6028), 1, + aux_sym_constructor_definition_token1, STATE(3983), 2, sym_comment, sym_include, - [155406] = 6, - ACTIONS(59), 1, + [152598] = 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(5267), 1, - aux_sym__block_terminator_token1, - STATE(1106), 1, - sym__block_terminator, + ACTIONS(6030), 1, + sym_identifier, + STATE(737), 1, + sym_qualified_name, STATE(3984), 2, sym_comment, sym_include, - [155426] = 6, - ACTIONS(3), 1, + [152618] = 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(6003), 1, - sym_identifier, - ACTIONS(6005), 1, - anon_sym_STAR, + ACTIONS(5222), 1, + aux_sym__block_terminator_token1, + STATE(944), 1, + sym__block_terminator, STATE(3985), 2, sym_comment, sym_include, - [155446] = 6, + [152638] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, - aux_sym__block_terminator_token1, - STATE(1549), 1, - sym__block_terminator, + ACTIONS(5398), 1, + aux_sym_scope_tuning_token1, + STATE(4356), 1, + sym_new_expression, STATE(3986), 2, sym_comment, sym_include, - [155466] = 6, - ACTIONS(3), 1, + [152658] = 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(6007), 1, - sym_identifier, - ACTIONS(6009), 1, - sym__terminator, + ACTIONS(6032), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, STATE(3987), 2, sym_comment, sym_include, - [155486] = 6, - ACTIONS(3), 1, + [152676] = 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(6011), 1, - sym_identifier, - STATE(3000), 1, - sym_qualified_name, + ACTIONS(6034), 1, + aux_sym_variable_definition_token5, + ACTIONS(6036), 1, + aux_sym_variable_definition_token6, STATE(3988), 2, sym_comment, sym_include, - [155506] = 5, + [152696] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6013), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, + ACTIONS(3295), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(3989), 2, sym_comment, sym_include, - [155524] = 6, - ACTIONS(3), 1, + [152714] = 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(6015), 1, - sym_identifier, - STATE(1725), 1, - sym_qualified_name, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1383), 1, + sym__block_terminator, STATE(3990), 2, sym_comment, sym_include, - [155544] = 6, - ACTIONS(3), 1, + [152734] = 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(6017), 1, - sym_identifier, - ACTIONS(6019), 1, - anon_sym_COMMA, + ACTIONS(6038), 1, + sym__terminator, + ACTIONS(6040), 1, + aux_sym_primitive_type_token19, STATE(3991), 2, sym_comment, sym_include, - [155564] = 6, + [152754] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6021), 1, + ACTIONS(6042), 1, sym_identifier, - STATE(2548), 1, + STATE(1884), 1, sym_qualified_name, STATE(3992), 2, sym_comment, sym_include, - [155584] = 6, - ACTIONS(3), 1, + [152774] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6023), 1, - sym_identifier, - STATE(4294), 1, - sym_qualified_name, + ACTIONS(5216), 1, + aux_sym__block_terminator_token1, + STATE(1151), 1, + sym__block_terminator, STATE(3993), 2, sym_comment, sym_include, - [155604] = 6, - ACTIONS(3), 1, + [152794] = 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(6025), 1, - sym_identifier, - STATE(1902), 1, - sym_qualified_name, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3025), 1, + sym__block_terminator, STATE(3994), 2, sym_comment, sym_include, - [155624] = 5, - ACTIONS(59), 1, + [152814] = 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(6027), 2, - sym__terminator, - anon_sym_COLON, + ACTIONS(6044), 1, + sym_identifier, + ACTIONS(6046), 1, + sym__integer_literal, STATE(3995), 2, sym_comment, sym_include, - [155642] = 6, - ACTIONS(59), 1, + [152834] = 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(6029), 1, - aux_sym_variable_definition_token5, - ACTIONS(6031), 1, - aux_sym_function_parameter_token2, + ACTIONS(6048), 1, + sym_identifier, + STATE(2584), 1, + sym_qualified_name, STATE(3996), 2, sym_comment, sym_include, - [155662] = 6, + [152854] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6033), 1, + ACTIONS(6050), 1, sym_identifier, - ACTIONS(6035), 1, - sym__integer_literal, + STATE(2499), 1, + sym_qualified_name, STATE(3997), 2, sym_comment, sym_include, - [155682] = 5, - ACTIONS(59), 1, + [152874] = 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(6037), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6052), 1, + sym_identifier, + ACTIONS(6054), 1, + sym__terminator, STATE(3998), 2, sym_comment, sym_include, - [155700] = 6, - ACTIONS(59), 1, + [152894] = 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(5235), 1, - aux_sym__block_terminator_token1, - STATE(1307), 1, - sym__block_terminator, + ACTIONS(4925), 1, + anon_sym_RPAREN, + ACTIONS(6056), 1, + anon_sym_, STATE(3999), 2, sym_comment, sym_include, - [155720] = 6, + [152914] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5405), 1, - aux_sym_scope_tuning_token1, - STATE(4344), 1, - sym_new_expression, + ACTIONS(6058), 1, + aux_sym_using_statement_token2, + ACTIONS(6060), 1, + aux_sym_input_close_statement_token2, STATE(4000), 2, sym_comment, sym_include, - [155740] = 5, + [152934] = 6, 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, + ACTIONS(6058), 1, + aux_sym_using_statement_token2, + ACTIONS(6062), 1, + aux_sym_input_close_statement_token2, STATE(4001), 2, sym_comment, sym_include, - [155758] = 6, + [152954] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6041), 1, - aux_sym_using_statement_token2, - ACTIONS(6043), 1, - aux_sym_input_close_statement_token2, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1387), 1, + sym__block_terminator, STATE(4002), 2, sym_comment, sym_include, - [155778] = 6, + [152974] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6041), 1, - aux_sym_using_statement_token2, - ACTIONS(6045), 1, - aux_sym_input_close_statement_token2, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1192), 1, + sym__block_terminator, STATE(4003), 2, sym_comment, sym_include, - [155798] = 6, - ACTIONS(59), 1, + [152994] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6047), 1, - aux_sym_variable_definition_token5, - ACTIONS(6049), 1, - aux_sym_variable_definition_token6, + ACTIONS(6064), 1, + sym_identifier, + STATE(2384), 1, + sym_qualified_name, STATE(4004), 2, sym_comment, sym_include, - [155818] = 5, + [153014] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6051), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, + ACTIONS(5224), 1, + aux_sym__block_terminator_token1, + STATE(1255), 1, + sym__block_terminator, STATE(4005), 2, sym_comment, sym_include, - [155836] = 6, + [153034] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6053), 1, - aux_sym_primitive_type_token1, - ACTIONS(6055), 1, - aux_sym_event_definition_token2, + ACTIONS(6066), 1, + aux_sym_input_close_statement_token2, + ACTIONS(6068), 1, + aux_sym_output_stream_statement_token1, STATE(4006), 2, sym_comment, sym_include, - [155856] = 5, + [153054] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6057), 2, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(6068), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(6070), 1, + aux_sym_input_close_statement_token2, STATE(4007), 2, sym_comment, sym_include, - [155874] = 6, - ACTIONS(59), 1, + [153074] = 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(6059), 1, - aux_sym_input_close_statement_token2, - ACTIONS(6061), 1, - aux_sym_output_stream_statement_token1, + ACTIONS(6072), 1, + sym_identifier, + STATE(281), 1, + sym_qualified_name, STATE(4008), 2, sym_comment, sym_include, - [155894] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(6061), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(6063), 1, - aux_sym_input_close_statement_token2, - STATE(4009), 2, - sym_comment, - sym_include, - [155914] = 6, + [153094] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6065), 1, + ACTIONS(6074), 1, sym_identifier, - ACTIONS(6067), 1, - anon_sym_COMMA, - STATE(4010), 2, + STATE(1583), 1, + sym_qualified_name, + STATE(4009), 2, sym_comment, sym_include, - [155934] = 6, + [153114] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4601), 1, - sym__terminator, - ACTIONS(4603), 1, - aux_sym_using_statement_token2, + ACTIONS(5514), 1, + aux_sym__block_terminator_token1, + STATE(3029), 1, + sym__block_terminator, + STATE(4010), 2, + sym_comment, + sym_include, + [153134] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6076), 1, + sym_identifier, + ACTIONS(6078), 1, + anon_sym_STAR, STATE(4011), 2, sym_comment, sym_include, - [155954] = 6, + [153154] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - aux_sym__block_terminator_token1, - STATE(1083), 1, - sym__block_terminator, + ACTIONS(6080), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, STATE(4012), 2, sym_comment, sym_include, - [155974] = 5, + [153172] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6069), 2, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(5398), 1, + aux_sym_scope_tuning_token1, + STATE(4418), 1, + sym_new_expression, STATE(4013), 2, sym_comment, sym_include, - [155992] = 5, + [153192] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6071), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, + ACTIONS(6082), 1, + sym__terminator, STATE(4014), 2, sym_comment, sym_include, - [156010] = 6, + [153209] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6073), 1, - anon_sym_DOT, - ACTIONS(6075), 1, - aux_sym__case_terminator_token1, + ACTIONS(6084), 1, + sym__terminator, STATE(4015), 2, sym_comment, sym_include, - [156030] = 5, - ACTIONS(59), 1, + [153226] = 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(6077), 2, - sym__terminator, - anon_sym_COLON, + ACTIONS(6086), 1, + sym_identifier, STATE(4016), 2, sym_comment, sym_include, - [156048] = 5, + [153243] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6079), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, + ACTIONS(2986), 1, + anon_sym_COLON, STATE(4017), 2, sym_comment, sym_include, - [156066] = 6, + [153260] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5405), 1, - aux_sym_scope_tuning_token1, - STATE(4440), 1, - sym_new_expression, + ACTIONS(6088), 1, + anon_sym_RBRACE, STATE(4018), 2, sym_comment, sym_include, - [156086] = 5, + [153277] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6081), 2, - aux_sym_using_statement_token3, - aux_sym_using_statement_token4, + ACTIONS(6090), 1, + anon_sym_DOT, STATE(4019), 2, sym_comment, sym_include, - [156104] = 6, - ACTIONS(3), 1, + [153294] = 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(6083), 1, - sym_identifier, - STATE(2523), 1, - sym_qualified_name, + ACTIONS(6038), 1, + sym__terminator, STATE(4020), 2, sym_comment, sym_include, - [156124] = 6, + [153311] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, - aux_sym__block_terminator_token1, - STATE(1309), 1, - sym__block_terminator, + ACTIONS(6092), 1, + sym__integer_literal, STATE(4021), 2, sym_comment, sym_include, - [156144] = 5, + [153328] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2421), 2, - anon_sym_COMMA, + ACTIONS(6094), 1, anon_sym_COLON, STATE(4022), 2, sym_comment, sym_include, - [156162] = 6, + [153345] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6085), 1, + ACTIONS(6096), 1, sym_identifier, - STATE(283), 1, - sym_qualified_name, STATE(4023), 2, sym_comment, sym_include, - [156182] = 6, + [153362] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_LPAREN, - STATE(2419), 1, - sym_query_fields, + ACTIONS(3812), 1, + anon_sym_COLON, STATE(4024), 2, sym_comment, sym_include, - [156202] = 5, - ACTIONS(3), 1, + [153379] = 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(6087), 1, - sym_identifier, + ACTIONS(6098), 1, + anon_sym_RPAREN, STATE(4025), 2, sym_comment, sym_include, - [156219] = 5, - ACTIONS(3), 1, + [153396] = 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(6089), 1, - sym_identifier, + ACTIONS(2569), 1, + aux_sym__block_terminator_token1, STATE(4026), 2, sym_comment, sym_include, - [156236] = 5, - ACTIONS(59), 1, + [153413] = 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(6091), 1, - anon_sym_COMMA, + ACTIONS(6100), 1, + sym_identifier, STATE(4027), 2, sym_comment, sym_include, - [156253] = 5, + [153430] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, - aux_sym__block_terminator_token1, + ACTIONS(6102), 1, + sym__terminator, STATE(4028), 2, sym_comment, sym_include, - [156270] = 5, - ACTIONS(59), 1, + [153447] = 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(5031), 1, - sym__terminator, + ACTIONS(6104), 1, + sym_identifier, STATE(4029), 2, sym_comment, sym_include, - [156287] = 5, + [153464] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6093), 1, + ACTIONS(6106), 1, sym__terminator, STATE(4030), 2, sym_comment, sym_include, - [156304] = 5, - ACTIONS(3), 1, + [153481] = 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(6095), 1, - sym_identifier, + ACTIONS(5011), 1, + anon_sym_LPAREN, STATE(4031), 2, sym_comment, sym_include, - [156321] = 5, - ACTIONS(59), 1, + [153498] = 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(6097), 1, - sym__terminator, + ACTIONS(6108), 1, + sym_identifier, STATE(4032), 2, sym_comment, sym_include, - [156338] = 5, - ACTIONS(59), 1, + [153515] = 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(6099), 1, - sym__terminator, + ACTIONS(6110), 1, + sym_identifier, STATE(4033), 2, sym_comment, sym_include, - [156355] = 5, + [153532] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6101), 1, + ACTIONS(6112), 1, sym_identifier, STATE(4034), 2, sym_comment, sym_include, - [156372] = 5, - ACTIONS(3), 1, + [153549] = 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(6103), 1, - sym_identifier, + ACTIONS(5278), 1, + anon_sym_DOT, STATE(4035), 2, sym_comment, sym_include, - [156389] = 5, + [153566] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6105), 1, - sym__terminator, + ACTIONS(6114), 1, + aux_sym__block_terminator_token1, STATE(4036), 2, sym_comment, sym_include, - [156406] = 5, + [153583] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4448), 1, - aux_sym_of_token1, + ACTIONS(6116), 1, + sym__terminator, STATE(4037), 2, sym_comment, sym_include, - [156423] = 5, + [153600] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(6118), 1, anon_sym_COLON, STATE(4038), 2, sym_comment, sym_include, - [156440] = 5, + [153617] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6107), 1, - anon_sym_COLON, + ACTIONS(6120), 1, + sym__terminator, STATE(4039), 2, sym_comment, sym_include, - [156457] = 5, + [153634] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6109), 1, - anon_sym_LPAREN, + ACTIONS(6022), 1, + sym__terminator, STATE(4040), 2, sym_comment, sym_include, - [156474] = 5, + [153651] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6111), 1, + ACTIONS(6122), 1, sym__terminator, STATE(4041), 2, sym_comment, sym_include, - [156491] = 5, + [153668] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6113), 1, + ACTIONS(6124), 1, sym__terminator, STATE(4042), 2, sym_comment, sym_include, - [156508] = 5, + [153685] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6115), 1, - sym__terminator, + ACTIONS(4207), 1, + anon_sym_COLON, STATE(4043), 2, sym_comment, sym_include, - [156525] = 5, + [153702] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6117), 1, - aux_sym_property_definition_token1, + ACTIONS(5422), 1, + aux_sym_primitive_type_token1, STATE(4044), 2, sym_comment, sym_include, - [156542] = 5, - ACTIONS(59), 1, + [153719] = 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(4166), 1, - anon_sym_COLON, + ACTIONS(6126), 1, + sym_identifier, STATE(4045), 2, sym_comment, sym_include, - [156559] = 5, + [153736] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3743), 1, - anon_sym_COLON, + ACTIONS(3170), 1, + aux_sym__block_terminator_token1, STATE(4046), 2, sym_comment, sym_include, - [156576] = 5, - ACTIONS(3), 1, + [153753] = 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(6119), 1, - sym_identifier, + ACTIONS(6128), 1, + sym__terminator, STATE(4047), 2, sym_comment, sym_include, - [156593] = 5, + [153770] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3170), 1, + ACTIONS(6130), 1, aux_sym__block_terminator_token1, STATE(4048), 2, sym_comment, sym_include, - [156610] = 5, - ACTIONS(3), 1, + [153787] = 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(6121), 1, - sym_identifier, + ACTIONS(5584), 1, + anon_sym_DOT, STATE(4049), 2, sym_comment, sym_include, - [156627] = 5, + [153804] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6123), 1, - sym__terminator, + ACTIONS(3037), 1, + anon_sym_COLON, STATE(4050), 2, sym_comment, sym_include, - [156644] = 5, - ACTIONS(3), 1, + [153821] = 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(6125), 1, - sym_identifier, + ACTIONS(3259), 1, + anon_sym_COLON, STATE(4051), 2, sym_comment, sym_include, - [156661] = 5, - ACTIONS(3), 1, + [153838] = 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(6127), 1, - sym_identifier, + ACTIONS(6132), 1, + aux_sym_property_definition_token1, STATE(4052), 2, sym_comment, sym_include, - [156678] = 5, + [153855] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_COLON, + ACTIONS(6134), 1, + anon_sym_RBRACE, STATE(4053), 2, sym_comment, sym_include, - [156695] = 5, + [153872] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6129), 1, - sym__terminator, + ACTIONS(6136), 1, + anon_sym_RPAREN, STATE(4054), 2, sym_comment, sym_include, - [156712] = 5, + [153889] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5035), 1, - anon_sym_LPAREN, + ACTIONS(6026), 1, + sym__terminator, STATE(4055), 2, sym_comment, sym_include, - [156729] = 5, + [153906] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6131), 1, + ACTIONS(6138), 1, sym_identifier, STATE(4056), 2, sym_comment, sym_include, - [156746] = 5, + [153923] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6133), 1, - anon_sym_RBRACE, + ACTIONS(6140), 1, + anon_sym_COLON, STATE(4057), 2, sym_comment, sym_include, - [156763] = 5, - ACTIONS(3), 1, + [153940] = 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(6135), 1, - sym_identifier, + ACTIONS(3802), 1, + anon_sym_COLON, STATE(4058), 2, sym_comment, sym_include, - [156780] = 5, - ACTIONS(3), 1, + [153957] = 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(6137), 1, - sym_identifier, + ACTIONS(6142), 1, + aux_sym__block_terminator_token1, STATE(4059), 2, sym_comment, sym_include, - [156797] = 5, + [153974] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6139), 1, - aux_sym_buffer_definition_token2, + ACTIONS(2577), 1, + aux_sym__block_terminator_token1, STATE(4060), 2, sym_comment, sym_include, - [156814] = 5, - ACTIONS(59), 1, + [153991] = 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(6141), 1, - aux_sym__block_terminator_token1, + ACTIONS(6144), 1, + sym_identifier, STATE(4061), 2, sym_comment, sym_include, - [156831] = 5, + [154008] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6143), 1, - aux_sym_buffer_definition_token2, + ACTIONS(6146), 1, + sym__terminator, STATE(4062), 2, sym_comment, sym_include, - [156848] = 5, - ACTIONS(59), 1, + [154025] = 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(6145), 1, - anon_sym_COLON, + ACTIONS(6148), 1, + sym_identifier, STATE(4063), 2, sym_comment, sym_include, - [156865] = 5, + [154042] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6147), 1, + ACTIONS(6150), 1, sym__terminator, STATE(4064), 2, sym_comment, sym_include, - [156882] = 5, + [154059] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6149), 1, + ACTIONS(6152), 1, sym_identifier, STATE(4065), 2, sym_comment, sym_include, - [156899] = 5, + [154076] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6151), 1, - sym__terminator, + ACTIONS(6154), 1, + sym__integer_literal, STATE(4066), 2, sym_comment, sym_include, - [156916] = 5, + [154093] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, + sym__terminator, + STATE(4067), 2, + sym_comment, + sym_include, + [154110] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6153), 1, + ACTIONS(6158), 1, sym_identifier, - STATE(4067), 2, + STATE(4068), 2, sym_comment, sym_include, - [156933] = 5, + [154127] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6053), 1, - aux_sym_primitive_type_token1, - STATE(4068), 2, + ACTIONS(6160), 1, + anon_sym_RBRACE, + STATE(4069), 2, sym_comment, sym_include, - [156950] = 5, + [154144] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6155), 1, + ACTIONS(6162), 1, sym__terminator, - STATE(4069), 2, + STATE(4070), 2, sym_comment, sym_include, - [156967] = 5, + [154161] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6157), 1, - anon_sym_LPAREN, - STATE(4070), 2, + ACTIONS(6164), 1, + aux_sym__block_terminator_token1, + STATE(4071), 2, sym_comment, sym_include, - [156984] = 5, + [154178] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6159), 1, + ACTIONS(6166), 1, sym_identifier, - STATE(4071), 2, + STATE(4072), 2, sym_comment, sym_include, - [157001] = 5, + [154195] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3038), 1, - anon_sym_COLON, - STATE(4072), 2, - sym_comment, - sym_include, - [157018] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6161), 1, - sym_identifier, + ACTIONS(6168), 1, + aux_sym_input_expression_token2, STATE(4073), 2, sym_comment, sym_include, - [157035] = 5, - ACTIONS(3), 1, + [154212] = 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(6163), 1, - sym_identifier, + ACTIONS(4472), 1, + anon_sym_COLON, STATE(4074), 2, sym_comment, sym_include, - [157052] = 5, + [154229] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5999), 1, + ACTIONS(4961), 1, sym__terminator, STATE(4075), 2, sym_comment, sym_include, - [157069] = 5, + [154246] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4438), 1, - anon_sym_COLON, + ACTIONS(6170), 1, + aux_sym__block_terminator_token1, STATE(4076), 2, sym_comment, sym_include, - [157086] = 5, + [154263] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3790), 1, - anon_sym_COLON, + ACTIONS(4802), 1, + aux_sym_do_block_token1, STATE(4077), 2, sym_comment, sym_include, - [157103] = 5, + [154280] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6165), 1, + ACTIONS(6172), 1, aux_sym__block_terminator_token1, STATE(4078), 2, sym_comment, sym_include, - [157120] = 5, + [154297] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4823), 1, - aux_sym_do_block_token1, + ACTIONS(3271), 1, + anon_sym_COLON, STATE(4079), 2, sym_comment, sym_include, - [157137] = 5, + [154314] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6167), 1, - sym__integer_literal, + ACTIONS(6174), 1, + sym__terminator, STATE(4080), 2, sym_comment, sym_include, - [157154] = 5, + [154331] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3288), 1, - anon_sym_COLON, + ACTIONS(6176), 1, + sym__terminator, STATE(4081), 2, sym_comment, sym_include, - [157171] = 5, + [154348] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4304), 1, + ACTIONS(4892), 1, anon_sym_COLON, STATE(4082), 2, sym_comment, sym_include, - [157188] = 5, + [154365] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6169), 1, - anon_sym_RPAREN, + ACTIONS(6178), 1, + sym__terminator, STATE(4083), 2, sym_comment, sym_include, - [157205] = 5, - ACTIONS(59), 1, + [154382] = 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(3049), 1, - anon_sym_COLON, + ACTIONS(6180), 1, + sym_identifier, STATE(4084), 2, sym_comment, sym_include, - [157222] = 5, - ACTIONS(3), 1, + [154399] = 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(6171), 1, - sym_identifier, + ACTIONS(6182), 1, + anon_sym_COLON, STATE(4085), 2, sym_comment, sym_include, - [157239] = 5, + [154416] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6173), 1, - aux_sym__block_terminator_token1, + ACTIONS(5994), 1, + sym__terminator, STATE(4086), 2, sym_comment, sym_include, - [157256] = 5, - ACTIONS(3), 1, + [154433] = 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(6175), 1, - sym_identifier, + ACTIONS(5998), 1, + sym__terminator, STATE(4087), 2, sym_comment, sym_include, - [157273] = 5, + [154450] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6177), 1, - anon_sym_COLON, + ACTIONS(6184), 1, + sym__terminator, STATE(4088), 2, sym_comment, sym_include, - [157290] = 5, + [154467] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6186), 1, + sym_identifier, + STATE(4089), 2, + sym_comment, + sym_include, + [154484] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6179), 1, + ACTIONS(6188), 1, sym__terminator, - STATE(4089), 2, + STATE(4090), 2, sym_comment, sym_include, - [157307] = 5, + [154501] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6181), 1, - anon_sym_COLON, - STATE(4090), 2, + ACTIONS(6190), 1, + sym__terminator, + STATE(4091), 2, sym_comment, sym_include, - [157324] = 5, + [154518] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6183), 1, + ACTIONS(6192), 1, anon_sym_COLON, - STATE(4091), 2, + STATE(4092), 2, sym_comment, sym_include, - [157341] = 5, + [154535] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6185), 1, - aux_sym__block_terminator_token1, - STATE(4092), 2, + ACTIONS(6194), 1, + sym__terminator, + STATE(4093), 2, sym_comment, sym_include, - [157358] = 5, + [154552] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6187), 1, + ACTIONS(2156), 1, sym_identifier, - STATE(4093), 2, + STATE(4094), 2, sym_comment, sym_include, - [157375] = 5, - ACTIONS(59), 1, + [154569] = 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(6189), 1, - anon_sym_LPAREN, - STATE(4094), 2, + ACTIONS(6196), 1, + sym_identifier, + STATE(4095), 2, sym_comment, sym_include, - [157392] = 5, - ACTIONS(59), 1, + [154586] = 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(6191), 1, - sym__terminator, - STATE(4095), 2, + ACTIONS(6198), 1, + sym_identifier, + STATE(4096), 2, sym_comment, sym_include, - [157409] = 5, + [154603] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5857), 1, - anon_sym_DOT, - STATE(4096), 2, + ACTIONS(6200), 1, + sym__terminator, + STATE(4097), 2, sym_comment, sym_include, - [157426] = 5, + [154620] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6193), 1, - aux_sym__block_terminator_token1, - STATE(4097), 2, + ACTIONS(6202), 1, + sym__terminator, + STATE(4098), 2, sym_comment, sym_include, - [157443] = 5, + [154637] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6195), 1, + ACTIONS(6204), 1, sym_identifier, - STATE(4098), 2, + STATE(4099), 2, sym_comment, sym_include, - [157460] = 5, - ACTIONS(59), 1, + [154654] = 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(3074), 1, - anon_sym_COLON, - STATE(4099), 2, + ACTIONS(6206), 1, + sym_identifier, + STATE(4100), 2, sym_comment, sym_include, - [157477] = 5, + [154671] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6197), 1, - anon_sym_COLON, - STATE(4100), 2, - sym_comment, - sym_include, - [157494] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6199), 1, - sym_identifier, + ACTIONS(6208), 1, + sym__terminator, STATE(4101), 2, sym_comment, sym_include, - [157511] = 5, + [154688] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6201), 1, + ACTIONS(6210), 1, sym__terminator, STATE(4102), 2, sym_comment, sym_include, - [157528] = 5, + [154705] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4066), 1, - anon_sym_COLON, + ACTIONS(6212), 1, + sym__terminator, STATE(4103), 2, sym_comment, sym_include, - [157545] = 5, + [154722] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6203), 1, - aux_sym_buffer_definition_token2, + ACTIONS(4963), 1, + anon_sym_COLON, STATE(4104), 2, sym_comment, sym_include, - [157562] = 5, + [154739] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6205), 1, - anon_sym_LPAREN, + ACTIONS(4175), 1, + anon_sym_COLON, STATE(4105), 2, sym_comment, sym_include, - [157579] = 5, + [154756] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4995), 1, - anon_sym_COLON, + ACTIONS(6214), 1, + sym__terminator, STATE(4106), 2, sym_comment, sym_include, - [157596] = 5, - ACTIONS(59), 1, + [154773] = 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(4260), 1, - anon_sym_COLON, + ACTIONS(6216), 1, + sym_identifier, STATE(4107), 2, sym_comment, sym_include, - [157613] = 5, + [154790] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3195), 1, - aux_sym__block_terminator_token1, + ACTIONS(6218), 1, + sym__terminator, STATE(4108), 2, sym_comment, sym_include, - [157630] = 5, - ACTIONS(59), 1, + [154807] = 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(5953), 1, - aux_sym_primitive_type_token1, + ACTIONS(6220), 1, + sym_identifier, STATE(4109), 2, sym_comment, sym_include, - [157647] = 5, + [154824] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6207), 1, + ACTIONS(6222), 1, sym__terminator, STATE(4110), 2, sym_comment, sym_include, - [157664] = 5, + [154841] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6209), 1, - aux_sym_buffer_definition_token2, + ACTIONS(6224), 1, + sym__terminator, STATE(4111), 2, sym_comment, sym_include, - [157681] = 5, + [154858] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6211), 1, - sym__terminator, + ACTIONS(6226), 1, + aux_sym_variable_definition_token5, STATE(4112), 2, sym_comment, sym_include, - [157698] = 5, - ACTIONS(3), 1, + [154875] = 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(6213), 1, - sym_identifier, + ACTIONS(6228), 1, + sym__terminator, STATE(4113), 2, sym_comment, sym_include, - [157715] = 5, + [154892] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5961), 1, - sym__terminator, + ACTIONS(6230), 1, + aux_sym_buffer_definition_token2, STATE(4114), 2, sym_comment, sym_include, - [157732] = 5, + [154909] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6215), 1, - aux_sym_of_token1, + ACTIONS(6232), 1, + sym__terminator, STATE(4115), 2, sym_comment, sym_include, - [157749] = 5, + [154926] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6217), 1, - sym__terminator, + ACTIONS(6234), 1, + anon_sym_LPAREN, STATE(4116), 2, sym_comment, sym_include, - [157766] = 5, + [154943] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6219), 1, - anon_sym_RBRACE, + ACTIONS(3644), 1, + aux_sym_property_definition_token1, STATE(4117), 2, sym_comment, sym_include, - [157783] = 5, - ACTIONS(3), 1, + [154960] = 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(6221), 1, - sym_identifier, + ACTIONS(6236), 1, + sym__terminator, STATE(4118), 2, sym_comment, sym_include, - [157800] = 5, + [154977] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6223), 1, - anon_sym_RBRACE, + ACTIONS(6238), 1, + anon_sym_LPAREN, STATE(4119), 2, sym_comment, sym_include, - [157817] = 5, - ACTIONS(59), 1, + [154994] = 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(4833), 1, - aux_sym_on_stop_phrase_token1, + ACTIONS(6240), 1, + sym_identifier, STATE(4120), 2, sym_comment, sym_include, - [157834] = 5, + [155011] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5037), 1, - anon_sym_COLON, + ACTIONS(6242), 1, + anon_sym_RBRACE, STATE(4121), 2, sym_comment, sym_include, - [157851] = 5, + [155028] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6225), 1, - anon_sym_COLON, + ACTIONS(6244), 1, + sym__terminator, STATE(4122), 2, sym_comment, sym_include, - [157868] = 5, + [155045] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6227), 1, - sym__integer_literal, + ACTIONS(6246), 1, + aux_sym_buffer_definition_token2, STATE(4123), 2, sym_comment, sym_include, - [157885] = 5, + [155062] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6229), 1, + ACTIONS(5940), 1, sym__terminator, STATE(4124), 2, sym_comment, sym_include, - [157902] = 5, + [155079] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6231), 1, + ACTIONS(6248), 1, sym__terminator, STATE(4125), 2, sym_comment, sym_include, - [157919] = 5, + [155096] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6233), 1, - anon_sym_RPAREN, + ACTIONS(6250), 1, + aux_sym_data_source_definition_token1, STATE(4126), 2, sym_comment, sym_include, - [157936] = 5, + [155113] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6235), 1, - anon_sym_COLON, + ACTIONS(4915), 1, + sym__terminator, STATE(4127), 2, sym_comment, sym_include, - [157953] = 5, + [155130] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6237), 1, + ACTIONS(6252), 1, sym__terminator, STATE(4128), 2, sym_comment, sym_include, - [157970] = 5, - ACTIONS(59), 1, + [155147] = 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(6239), 1, - anon_sym_COLON, + ACTIONS(6254), 1, + sym_identifier, STATE(4129), 2, sym_comment, sym_include, - [157987] = 5, + [155164] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6241), 1, - sym__terminator, + ACTIONS(6256), 1, + anon_sym_RPAREN, STATE(4130), 2, sym_comment, sym_include, - [158004] = 5, + [155181] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6243), 1, - sym__terminator, + ACTIONS(6258), 1, + anon_sym_COLON, STATE(4131), 2, sym_comment, sym_include, - [158021] = 5, + [155198] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6245), 1, - sym__terminator, + ACTIONS(6260), 1, + anon_sym_COLON, STATE(4132), 2, sym_comment, sym_include, - [158038] = 5, + [155215] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6247), 1, - anon_sym_COLON, + ACTIONS(6262), 1, + aux_sym_do_block_token1, STATE(4133), 2, sym_comment, sym_include, - [158055] = 5, + [155232] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6249), 1, - anon_sym_COLON, + ACTIONS(5040), 1, + sym__terminator, STATE(4134), 2, sym_comment, sym_include, - [158072] = 5, - ACTIONS(59), 1, + [155249] = 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(6251), 1, - sym__terminator, + ACTIONS(6264), 1, + sym_identifier, STATE(4135), 2, sym_comment, sym_include, - [158089] = 5, - ACTIONS(59), 1, + [155266] = 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(3342), 1, - anon_sym_COLON, + ACTIONS(6266), 1, + sym_identifier, STATE(4136), 2, sym_comment, sym_include, - [158106] = 5, + [155283] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5901), 1, - anon_sym_DOT, + ACTIONS(5058), 1, + anon_sym_LPAREN, STATE(4137), 2, sym_comment, sym_include, - [158123] = 5, + [155300] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3776), 1, + ACTIONS(6268), 1, anon_sym_COLON, STATE(4138), 2, sym_comment, sym_include, - [158140] = 5, + [155317] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6253), 1, - sym__terminator, + ACTIONS(6270), 1, + aux_sym__block_terminator_token1, STATE(4139), 2, sym_comment, sym_include, - [158157] = 5, + [155334] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6255), 1, - aux_sym_on_error_phrase_token3, + ACTIONS(6272), 1, + aux_sym__block_terminator_token1, STATE(4140), 2, sym_comment, sym_include, - [158174] = 5, - ACTIONS(59), 1, + [155351] = 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(6257), 1, - sym__terminator, + ACTIONS(6274), 1, + sym_identifier, STATE(4141), 2, sym_comment, sym_include, - [158191] = 5, + [155368] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4064), 1, - anon_sym_COLON, + ACTIONS(6276), 1, + sym__terminator, STATE(4142), 2, sym_comment, sym_include, - [158208] = 5, - ACTIONS(59), 1, + [155385] = 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(5072), 1, - anon_sym_COLON, + ACTIONS(6278), 1, + sym_identifier, STATE(4143), 2, sym_comment, sym_include, - [158225] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(6259), 1, - anon_sym_RPAREN, - STATE(4144), 2, - sym_comment, - sym_include, - [158242] = 5, + [155402] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6280), 1, sym_identifier, - STATE(4145), 2, + STATE(4144), 2, sym_comment, sym_include, - [158259] = 5, + [155419] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6263), 1, - aux_sym_on_error_phrase_token3, - STATE(4146), 2, + ACTIONS(6282), 1, + anon_sym_LPAREN, + STATE(4145), 2, sym_comment, sym_include, - [158276] = 5, + [155436] = 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(5926), 1, sym__terminator, + STATE(4146), 2, + sym_comment, + sym_include, + [155453] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6284), 1, + sym_identifier, STATE(4147), 2, sym_comment, sym_include, - [158293] = 5, + [155470] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5867), 1, - anon_sym_DOT, + ACTIONS(6286), 1, + sym__terminator, STATE(4148), 2, sym_comment, sym_include, - [158310] = 5, + [155487] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6265), 1, + ACTIONS(6288), 1, sym__terminator, STATE(4149), 2, sym_comment, sym_include, - [158327] = 5, + [155504] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6267), 1, + ACTIONS(6290), 1, sym_identifier, STATE(4150), 2, sym_comment, sym_include, - [158344] = 5, - ACTIONS(3), 1, + [155521] = 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(6269), 1, - sym_identifier, + ACTIONS(5930), 1, + sym__terminator, STATE(4151), 2, sym_comment, sym_include, - [158361] = 5, - ACTIONS(59), 1, + [155538] = 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(3340), 1, - anon_sym_COLON, + ACTIONS(6292), 1, + sym_identifier, STATE(4152), 2, sym_comment, sym_include, - [158378] = 5, + [155555] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6271), 1, - anon_sym_RBRACE, + ACTIONS(6294), 1, + aux_sym__block_terminator_token1, STATE(4153), 2, sym_comment, sym_include, - [158395] = 5, + [155572] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5078), 1, + ACTIONS(4866), 1, sym__terminator, STATE(4154), 2, sym_comment, sym_include, - [158412] = 5, + [155589] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - aux_sym_do_block_token1, + ACTIONS(6296), 1, + anon_sym_COLON, STATE(4155), 2, sym_comment, sym_include, - [158429] = 5, - ACTIONS(59), 1, + [155606] = 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(6273), 1, - aux_sym__block_terminator_token1, + ACTIONS(6298), 1, + sym_identifier, STATE(4156), 2, sym_comment, sym_include, - [158446] = 5, - ACTIONS(59), 1, + [155623] = 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(4725), 1, - anon_sym_COLON, + ACTIONS(6300), 1, + sym_identifier, STATE(4157), 2, sym_comment, sym_include, - [158463] = 5, - ACTIONS(59), 1, + [155640] = 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(6275), 1, - sym__terminator, + ACTIONS(6302), 1, + sym_identifier, STATE(4158), 2, sym_comment, sym_include, - [158480] = 5, + [155657] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6277), 1, - sym__terminator, + ACTIONS(6304), 1, + anon_sym_LPAREN, STATE(4159), 2, sym_comment, sym_include, - [158497] = 5, - ACTIONS(3), 1, + [155674] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6279), 1, - sym_identifier, + ACTIONS(4951), 1, + sym__terminator, STATE(4160), 2, sym_comment, sym_include, - [158514] = 5, + [155691] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6281), 1, + ACTIONS(6306), 1, sym__terminator, STATE(4161), 2, sym_comment, sym_include, - [158531] = 5, + [155708] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6283), 1, + ACTIONS(6308), 1, sym_identifier, STATE(4162), 2, sym_comment, sym_include, - [158548] = 5, + [155725] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6285), 1, - aux_sym_input_expression_token2, + ACTIONS(5125), 1, + sym__terminator, STATE(4163), 2, sym_comment, sym_include, - [158565] = 5, + [155742] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6287), 1, + ACTIONS(5044), 1, sym__terminator, STATE(4164), 2, sym_comment, sym_include, - [158582] = 5, - ACTIONS(59), 1, + [155759] = 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(6289), 1, - aux_sym__block_terminator_token1, + ACTIONS(6310), 1, + sym_identifier, STATE(4165), 2, sym_comment, sym_include, - [158599] = 5, + [155776] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6291), 1, + ACTIONS(6312), 1, sym__terminator, STATE(4166), 2, sym_comment, sym_include, - [158616] = 5, + [155793] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6293), 1, + ACTIONS(5914), 1, sym__terminator, STATE(4167), 2, sym_comment, sym_include, - [158633] = 5, + [155810] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5835), 1, - sym__terminator, + ACTIONS(6314), 1, + aux_sym__block_terminator_token1, STATE(4168), 2, sym_comment, sym_include, - [158650] = 5, + [155827] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6295), 1, - sym__terminator, + ACTIONS(6316), 1, + aux_sym_function_parameter_token1, STATE(4169), 2, sym_comment, sym_include, - [158667] = 5, + [155844] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5831), 1, - sym__terminator, + ACTIONS(4273), 1, + anon_sym_COLON, STATE(4170), 2, sym_comment, sym_include, - [158684] = 5, + [155861] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6297), 1, - sym__terminator, + ACTIONS(5042), 1, + anon_sym_COLON, STATE(4171), 2, sym_comment, sym_include, - [158701] = 5, + [155878] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3364), 1, - anon_sym_COLON, + ACTIONS(6318), 1, + aux_sym_buffer_definition_token2, STATE(4172), 2, sym_comment, sym_include, - [158718] = 5, + [155895] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6299), 1, + ACTIONS(5850), 1, sym__terminator, STATE(4173), 2, sym_comment, sym_include, - [158735] = 5, + [155912] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5825), 1, + ACTIONS(5918), 1, sym__terminator, STATE(4174), 2, sym_comment, sym_include, - [158752] = 5, + [155929] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6301), 1, - sym__terminator, + ACTIONS(6320), 1, + aux_sym__block_terminator_token1, STATE(4175), 2, sym_comment, sym_include, - [158769] = 5, + [155946] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3148), 1, - aux_sym__block_terminator_token1, + ACTIONS(6322), 1, + sym__terminator, STATE(4176), 2, sym_comment, sym_include, - [158786] = 5, + [155963] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6303), 1, - sym__terminator, + ACTIONS(5046), 1, + anon_sym_COLON, STATE(4177), 2, sym_comment, sym_include, - [158803] = 5, + [155980] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6305), 1, - sym__terminator, + ACTIONS(6324), 1, + aux_sym_procedure_parameter_definition_token2, STATE(4178), 2, sym_comment, sym_include, - [158820] = 5, - ACTIONS(59), 1, + [155997] = 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(4023), 1, - anon_sym_COLON, + ACTIONS(6326), 1, + sym_identifier, STATE(4179), 2, sym_comment, sym_include, - [158837] = 5, - ACTIONS(59), 1, + [156014] = 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(6307), 1, - sym__terminator, + ACTIONS(6328), 1, + sym_identifier, STATE(4180), 2, sym_comment, sym_include, - [158854] = 5, + [156031] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6309), 1, + ACTIONS(6330), 1, sym_identifier, STATE(4181), 2, sym_comment, sym_include, - [158871] = 5, + [156048] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6311), 1, + ACTIONS(6332), 1, sym_identifier, STATE(4182), 2, sym_comment, sym_include, - [158888] = 5, + [156065] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6313), 1, - sym__terminator, + ACTIONS(3762), 1, + anon_sym_COLON, STATE(4183), 2, sym_comment, sym_include, - [158905] = 5, + [156082] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5809), 1, + ACTIONS(6334), 1, sym__terminator, STATE(4184), 2, sym_comment, sym_include, - [158922] = 5, + [156099] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6315), 1, - sym__terminator, + ACTIONS(3782), 1, + anon_sym_COLON, STATE(4185), 2, sym_comment, sym_include, - [158939] = 5, + [156116] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6317), 1, - aux_sym_buffer_definition_token2, + ACTIONS(5876), 1, + sym__terminator, STATE(4186), 2, sym_comment, sym_include, - [158956] = 5, - ACTIONS(59), 1, + [156133] = 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(3673), 1, - anon_sym_COLON, + ACTIONS(6336), 1, + sym_identifier, STATE(4187), 2, sym_comment, sym_include, - [158973] = 5, - ACTIONS(59), 1, + [156150] = 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(6319), 1, - sym__terminator, + ACTIONS(6338), 1, + sym_identifier, STATE(4188), 2, sym_comment, sym_include, - [158990] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(6321), 1, - sym__terminator, - STATE(4189), 2, - sym_comment, - sym_include, - [159007] = 5, + [156167] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6323), 1, + ACTIONS(6340), 1, sym_identifier, - STATE(4190), 2, + STATE(4189), 2, sym_comment, sym_include, - [159024] = 5, + [156184] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6325), 1, - sym__terminator, + ACTIONS(3123), 1, + anon_sym_COLON, + STATE(4190), 2, + sym_comment, + sym_include, + [156201] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6342), 1, + sym_identifier, STATE(4191), 2, sym_comment, sym_include, - [159041] = 5, + [156218] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3004), 1, - anon_sym_COLON, + ACTIONS(6344), 1, + anon_sym_LPAREN, STATE(4192), 2, sym_comment, sym_include, - [159058] = 5, - ACTIONS(59), 1, + [156235] = 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(6327), 1, - sym__terminator, + ACTIONS(6346), 1, + sym_identifier, STATE(4193), 2, sym_comment, sym_include, - [159075] = 5, + [156252] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6329), 1, - sym__terminator, + ACTIONS(6348), 1, + anon_sym_COLON, STATE(4194), 2, sym_comment, sym_include, - [159092] = 5, - ACTIONS(3), 1, + [156269] = 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(6331), 1, - sym_identifier, + ACTIONS(3307), 1, + anon_sym_COLON, STATE(4195), 2, sym_comment, sym_include, - [159109] = 5, + [156286] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6333), 1, - anon_sym_COLON, + ACTIONS(6350), 1, + anon_sym_EQ, STATE(4196), 2, sym_comment, sym_include, - [159126] = 5, + [156303] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5791), 1, - sym__terminator, + ACTIONS(4987), 1, + aux_sym_do_block_token1, STATE(4197), 2, sym_comment, sym_include, - [159143] = 5, + [156320] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6335), 1, - sym__terminator, + ACTIONS(6352), 1, + aux_sym__block_terminator_token1, STATE(4198), 2, sym_comment, sym_include, - [159160] = 5, - ACTIONS(59), 1, + [156337] = 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(6337), 1, - sym__terminator, + ACTIONS(6354), 1, + sym_identifier, STATE(4199), 2, sym_comment, sym_include, - [159177] = 5, + [156354] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, - aux_sym__block_terminator_token1, + ACTIONS(4406), 1, + anon_sym_COLON, STATE(4200), 2, sym_comment, sym_include, - [159194] = 5, - ACTIONS(3), 1, + [156371] = 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(6339), 1, - sym_identifier, + ACTIONS(4923), 1, + anon_sym_LPAREN, STATE(4201), 2, sym_comment, sym_include, - [159211] = 5, + [156388] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6341), 1, - anon_sym_COLON, + ACTIONS(6356), 1, + sym__terminator, STATE(4202), 2, sym_comment, sym_include, - [159228] = 5, + [156405] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4948), 1, + ACTIONS(6358), 1, anon_sym_LPAREN, STATE(4203), 2, sym_comment, sym_include, - [159245] = 5, + [156422] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5092), 1, + ACTIONS(6360), 1, sym__terminator, STATE(4204), 2, sym_comment, sym_include, - [159262] = 5, + [156439] = 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(6362), 1, sym__terminator, STATE(4205), 2, sym_comment, sym_include, - [159279] = 5, - ACTIONS(59), 1, + [156456] = 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(5098), 1, - sym__terminator, + ACTIONS(6364), 1, + sym_identifier, STATE(4206), 2, sym_comment, sym_include, - [159296] = 5, - ACTIONS(59), 1, + [156473] = 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(4946), 1, - sym__terminator, + ACTIONS(6366), 1, + sym_identifier, STATE(4207), 2, sym_comment, sym_include, - [159313] = 5, + [156490] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6343), 1, + ACTIONS(6368), 1, sym_identifier, STATE(4208), 2, sym_comment, sym_include, - [159330] = 5, + [156507] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6345), 1, + ACTIONS(6370), 1, sym_identifier, STATE(4209), 2, sym_comment, sym_include, - [159347] = 5, + [156524] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6347), 1, - anon_sym_RPAREN, + ACTIONS(6372), 1, + sym__terminator, STATE(4210), 2, sym_comment, sym_include, - [159364] = 5, - ACTIONS(59), 1, + [156541] = 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(3026), 1, - anon_sym_COLON, + ACTIONS(6374), 1, + sym_identifier, STATE(4211), 2, sym_comment, sym_include, - [159381] = 5, + [156558] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6349), 1, - sym__terminator, + ACTIONS(3774), 1, + anon_sym_COLON, STATE(4212), 2, sym_comment, sym_include, - [159398] = 5, - ACTIONS(3), 1, + [156575] = 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(6351), 1, - sym_identifier, + ACTIONS(6376), 1, + sym__terminator, STATE(4213), 2, sym_comment, sym_include, - [159415] = 5, + [156592] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3685), 1, - anon_sym_COLON, + ACTIONS(6378), 1, + aux_sym__block_terminator_token1, STATE(4214), 2, sym_comment, sym_include, - [159432] = 5, + [156609] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5731), 1, + ACTIONS(6380), 1, sym__terminator, STATE(4215), 2, sym_comment, sym_include, - [159449] = 5, - ACTIONS(59), 1, + [156626] = 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(6353), 1, - anon_sym_LPAREN, + ACTIONS(6382), 1, + sym_identifier, STATE(4216), 2, sym_comment, sym_include, - [159466] = 5, + [156643] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5100), 1, + ACTIONS(6384), 1, sym__terminator, STATE(4217), 2, sym_comment, sym_include, - [159483] = 5, + [156660] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3816), 1, - anon_sym_COLON, + ACTIONS(6386), 1, + sym__terminator, STATE(4218), 2, sym_comment, sym_include, - [159500] = 5, - ACTIONS(3), 1, + [156677] = 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(6355), 1, - sym_identifier, + ACTIONS(6388), 1, + aux_sym__block_terminator_token1, STATE(4219), 2, sym_comment, sym_include, - [159517] = 5, + [156694] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5619), 1, - sym__terminator, + ACTIONS(3091), 1, + anon_sym_COLON, STATE(4220), 2, sym_comment, sym_include, - [159534] = 5, - ACTIONS(3), 1, + [156711] = 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(6357), 1, - sym_identifier, + ACTIONS(6390), 1, + sym__terminator, STATE(4221), 2, sym_comment, sym_include, - [159551] = 5, + [156728] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, - anon_sym_COLON, + ACTIONS(6392), 1, + aux_sym_buffer_definition_token2, STATE(4222), 2, sym_comment, sym_include, - [159568] = 5, + [156745] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6359), 1, - aux_sym_primitive_type_token1, + ACTIONS(3243), 1, + anon_sym_COLON, STATE(4223), 2, sym_comment, sym_include, - [159585] = 5, - ACTIONS(3), 1, + [156762] = 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(6361), 1, - sym_identifier, + ACTIONS(3192), 1, + aux_sym__block_terminator_token1, STATE(4224), 2, sym_comment, sym_include, - [159602] = 5, + [156779] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5102), 1, - anon_sym_LPAREN, + ACTIONS(4064), 1, + anon_sym_COLON, STATE(4225), 2, sym_comment, sym_include, - [159619] = 5, - ACTIONS(59), 1, + [156796] = 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(5719), 1, - sym__terminator, + ACTIONS(6394), 1, + sym_identifier, STATE(4226), 2, sym_comment, sym_include, - [159636] = 5, + [156813] = 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(6396), 1, sym__terminator, STATE(4227), 2, sym_comment, sym_include, - [159653] = 5, + [156830] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6363), 1, - anon_sym_RPAREN, + ACTIONS(6398), 1, + sym__terminator, STATE(4228), 2, sym_comment, sym_include, - [159670] = 5, + [156847] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6365), 1, - anon_sym_COLON, + ACTIONS(2589), 1, + aux_sym__block_terminator_token1, STATE(4229), 2, sym_comment, sym_include, - [159687] = 5, - ACTIONS(59), 1, + [156864] = 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(5094), 1, - anon_sym_COLON, + ACTIONS(6400), 1, + sym_identifier, STATE(4230), 2, sym_comment, sym_include, - [159704] = 5, + [156881] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, - aux_sym__block_terminator_token1, + ACTIONS(6402), 1, + anon_sym_COLON, STATE(4231), 2, sym_comment, sym_include, - [159721] = 5, - ACTIONS(59), 1, + [156898] = 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(6367), 1, - aux_sym__block_terminator_token1, + ACTIONS(6404), 1, + sym_identifier, STATE(4232), 2, sym_comment, sym_include, - [159738] = 5, + [156915] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6369), 1, + ACTIONS(6406), 1, sym__terminator, STATE(4233), 2, sym_comment, sym_include, - [159755] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6371), 1, - sym_identifier, - STATE(4234), 2, - sym_comment, - sym_include, - [159772] = 5, + [156932] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3070), 1, + ACTIONS(4305), 1, anon_sym_COLON, - STATE(4235), 2, + STATE(4234), 2, sym_comment, sym_include, - [159789] = 5, + [156949] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6373), 1, + ACTIONS(6408), 1, sym_identifier, + STATE(4235), 2, + sym_comment, + sym_include, + [156966] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5522), 1, + anon_sym_DOT, STATE(4236), 2, sym_comment, sym_include, - [159806] = 5, - ACTIONS(3), 1, + [156983] = 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(6375), 1, - sym_identifier, + ACTIONS(6410), 1, + aux_sym_output_stream_statement_token1, STATE(4237), 2, sym_comment, sym_include, - [159823] = 5, + [157000] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5691), 1, - sym__terminator, + ACTIONS(6412), 1, + aux_sym_buffer_definition_token2, STATE(4238), 2, sym_comment, sym_include, - [159840] = 5, + [157017] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5703), 1, - sym__terminator, + ACTIONS(6414), 1, + aux_sym__block_terminator_token1, STATE(4239), 2, sym_comment, sym_include, - [159857] = 5, + [157034] = 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, + ACTIONS(5812), 1, + sym__terminator, STATE(4240), 2, sym_comment, sym_include, - [159874] = 5, + [157051] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5679), 1, + ACTIONS(5808), 1, sym__terminator, STATE(4241), 2, sym_comment, sym_include, - [159891] = 5, - ACTIONS(3), 1, + [157068] = 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(2245), 1, - sym_identifier, + ACTIONS(6416), 1, + aux_sym_buffer_definition_token2, STATE(4242), 2, sym_comment, sym_include, - [159908] = 5, + [157085] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5699), 1, + ACTIONS(5804), 1, sym__terminator, STATE(4243), 2, sym_comment, sym_include, - [159925] = 5, + [157102] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6377), 1, - sym__terminator, + ACTIONS(6418), 1, + aux_sym__block_terminator_token1, STATE(4244), 2, sym_comment, sym_include, - [159942] = 5, - ACTIONS(3), 1, + [157119] = 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(6379), 1, - sym_identifier, + ACTIONS(5794), 1, + sym__terminator, STATE(4245), 2, sym_comment, sym_include, - [159959] = 5, + [157136] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6381), 1, - aux_sym_sort_clause_token2, + ACTIONS(4111), 1, + anon_sym_COLON, STATE(4246), 2, sym_comment, sym_include, - [159976] = 5, + [157153] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3687), 1, - anon_sym_COLON, + ACTIONS(5922), 1, + sym__terminator, STATE(4247), 2, sym_comment, sym_include, - [159993] = 5, + [157170] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4310), 1, - anon_sym_COLON, + ACTIONS(6420), 1, + sym__terminator, STATE(4248), 2, sym_comment, sym_include, - [160010] = 5, + [157187] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6383), 1, - sym__terminator, + ACTIONS(3199), 1, + aux_sym__block_terminator_token1, STATE(4249), 2, sym_comment, sym_include, - [160027] = 5, + [157204] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6385), 1, + ACTIONS(6422), 1, sym_identifier, STATE(4250), 2, sym_comment, sym_include, - [160044] = 5, + [157221] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3258), 1, - aux_sym__block_terminator_token1, + ACTIONS(6424), 1, + sym__terminator, STATE(4251), 2, sym_comment, sym_include, - [160061] = 5, - ACTIONS(59), 1, + [157238] = 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(6387), 1, - sym__terminator, + ACTIONS(6426), 1, + sym_identifier, STATE(4252), 2, sym_comment, sym_include, - [160078] = 5, + [157255] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6389), 1, - anon_sym_LPAREN, + ACTIONS(6428), 1, + aux_sym__block_terminator_token1, STATE(4253), 2, sym_comment, sym_include, - [160095] = 5, + [157272] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6391), 1, - sym__terminator, + ACTIONS(3291), 1, + anon_sym_COLON, STATE(4254), 2, sym_comment, sym_include, - [160112] = 5, + [157289] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6393), 1, - anon_sym_LPAREN, + ACTIONS(6430), 1, + anon_sym_RPAREN, STATE(4255), 2, sym_comment, sym_include, - [160129] = 5, + [157306] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3268), 1, - anon_sym_COLON, + ACTIONS(2575), 1, + aux_sym__block_terminator_token1, STATE(4256), 2, sym_comment, sym_include, - [160146] = 5, + [157323] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, + ACTIONS(5788), 1, sym__terminator, STATE(4257), 2, sym_comment, sym_include, - [160163] = 5, + [157340] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6395), 1, - anon_sym_COLON, + ACTIONS(6432), 1, + anon_sym_EQ, STATE(4258), 2, sym_comment, sym_include, - [160180] = 5, + [157357] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6397), 1, + ACTIONS(5774), 1, sym__terminator, STATE(4259), 2, sym_comment, sym_include, - [160197] = 5, + [157374] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6399), 1, - anon_sym_LPAREN, + ACTIONS(6434), 1, + aux_sym_buffer_definition_token2, STATE(4260), 2, sym_comment, sym_include, - [160214] = 5, + [157391] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6401), 1, - aux_sym_input_expression_token2, + ACTIONS(6436), 1, + aux_sym__block_terminator_token1, STATE(4261), 2, sym_comment, sym_include, - [160231] = 5, + [157408] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6403), 1, - sym__terminator, + ACTIONS(6438), 1, + aux_sym__block_terminator_token1, STATE(4262), 2, sym_comment, sym_include, - [160248] = 5, + [157425] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6405), 1, - sym__terminator, + ACTIONS(2984), 1, + anon_sym_COLON, STATE(4263), 2, sym_comment, sym_include, - [160265] = 5, + [157442] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6407), 1, - aux_sym__block_terminator_token1, + ACTIONS(4011), 1, + anon_sym_COLON, STATE(4264), 2, sym_comment, sym_include, - [160282] = 5, - ACTIONS(3), 1, + [157459] = 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(6409), 1, - sym_identifier, + ACTIONS(193), 1, + sym__terminator, STATE(4265), 2, sym_comment, sym_include, - [160299] = 5, - ACTIONS(59), 1, + [157476] = 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(6411), 1, - sym__terminator, + ACTIONS(6440), 1, + sym_identifier, STATE(4266), 2, sym_comment, sym_include, - [160316] = 5, + [157493] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6413), 1, + ACTIONS(161), 1, sym__terminator, STATE(4267), 2, sym_comment, sym_include, - [160333] = 5, + [157510] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6415), 1, + ACTIONS(6442), 1, sym_identifier, STATE(4268), 2, sym_comment, sym_include, - [160350] = 5, + [157527] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5687), 1, - sym__terminator, + ACTIONS(6444), 1, + anon_sym_RPAREN, STATE(4269), 2, sym_comment, sym_include, - [160367] = 5, - ACTIONS(3), 1, + [157544] = 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(6417), 1, - sym_identifier, + ACTIONS(5091), 1, + sym__terminator, STATE(4270), 2, sym_comment, sym_include, - [160384] = 5, + [157561] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, - aux_sym_buffer_definition_token2, + ACTIONS(3766), 1, + anon_sym_COLON, STATE(4271), 2, sym_comment, sym_include, - [160401] = 5, - ACTIONS(59), 1, + [157578] = 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(6421), 1, - sym__terminator, + ACTIONS(6446), 1, + sym_identifier, STATE(4272), 2, sym_comment, sym_include, - [160418] = 5, + [157595] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, - sym__terminator, + ACTIONS(6448), 1, + anon_sym_LPAREN, STATE(4273), 2, sym_comment, sym_include, - [160435] = 5, + [157612] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6423), 1, - aux_sym_buffer_definition_token2, + ACTIONS(6450), 1, + sym__terminator, STATE(4274), 2, sym_comment, sym_include, - [160452] = 5, - ACTIONS(59), 1, + [157629] = 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(6425), 1, - sym__terminator, + ACTIONS(6452), 1, + sym_identifier, STATE(4275), 2, sym_comment, sym_include, - [160469] = 5, + [157646] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5669), 1, + ACTIONS(6454), 1, sym__terminator, STATE(4276), 2, sym_comment, sym_include, - [160486] = 5, + [157663] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, - sym__terminator, + ACTIONS(4597), 1, + anon_sym_COLON, STATE(4277), 2, sym_comment, sym_include, - [160503] = 5, + [157680] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6427), 1, - sym__terminator, + ACTIONS(6456), 1, + anon_sym_RPAREN, STATE(4278), 2, sym_comment, sym_include, - [160520] = 5, + [157697] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4436), 1, - anon_sym_COLON, + ACTIONS(6458), 1, + aux_sym__block_terminator_token1, STATE(4279), 2, sym_comment, sym_include, - [160537] = 5, + [157714] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5663), 1, - sym__terminator, + ACTIONS(4792), 1, + aux_sym_do_block_token1, STATE(4280), 2, sym_comment, sym_include, - [160554] = 5, - ACTIONS(59), 1, + [157731] = 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(6429), 1, - aux_sym__block_terminator_token1, + ACTIONS(6460), 1, + sym_identifier, STATE(4281), 2, sym_comment, sym_include, - [160571] = 5, + [157748] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4809), 1, - aux_sym_do_block_token1, + ACTIONS(3263), 1, + anon_sym_COLON, STATE(4282), 2, sym_comment, sym_include, - [160588] = 5, - ACTIONS(3), 1, + [157765] = 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(6431), 1, - sym_identifier, + ACTIONS(6462), 1, + sym__terminator, STATE(4283), 2, sym_comment, sym_include, - [160605] = 5, + [157782] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3296), 1, - anon_sym_COLON, + ACTIONS(5093), 1, + anon_sym_LPAREN, STATE(4284), 2, sym_comment, sym_include, - [160622] = 5, + [157799] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4909), 1, + ACTIONS(6464), 1, sym__terminator, STATE(4285), 2, sym_comment, sym_include, - [160639] = 5, - ACTIONS(59), 1, + [157816] = 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(5871), 1, - sym__terminator, + ACTIONS(6466), 1, + sym_identifier, STATE(4286), 2, sym_comment, sym_include, - [160656] = 5, - ACTIONS(59), 1, + [157833] = 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(4907), 1, - sym__terminator, + ACTIONS(6468), 1, + sym_identifier, STATE(4287), 2, sym_comment, sym_include, - [160673] = 5, + [157850] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4901), 1, + ACTIONS(6470), 1, sym__terminator, STATE(4288), 2, sym_comment, sym_include, - [160690] = 5, + [157867] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6433), 1, - sym__terminator, + ACTIONS(6472), 1, + anon_sym_COLON, STATE(4289), 2, sym_comment, sym_include, - [160707] = 5, + [157884] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6435), 1, - sym__terminator, + ACTIONS(6474), 1, + aux_sym_on_error_phrase_token3, STATE(4290), 2, sym_comment, sym_include, - [160724] = 5, - ACTIONS(3), 1, + [157901] = 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(6437), 1, - sym_identifier, + ACTIONS(6476), 1, + sym__terminator, STATE(4291), 2, sym_comment, sym_include, - [160741] = 5, - ACTIONS(3), 1, + [157918] = 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(6478), 1, + aux_sym_sort_clause_token2, STATE(4292), 2, sym_comment, sym_include, - [160758] = 5, + [157935] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6439), 1, - aux_sym_buffer_definition_token2, + ACTIONS(6480), 1, + aux_sym_on_error_phrase_token3, STATE(4293), 2, sym_comment, sym_include, - [160775] = 5, + [157952] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4897), 1, + ACTIONS(5097), 1, sym__terminator, STATE(4294), 2, sym_comment, sym_include, - [160792] = 5, + [157969] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6441), 1, - sym__terminator, + ACTIONS(6482), 1, + anon_sym_RBRACE, STATE(4295), 2, sym_comment, sym_include, - [160809] = 5, + [157986] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6443), 1, - aux_sym_buffer_definition_token2, + ACTIONS(2974), 1, + anon_sym_COLON, STATE(4296), 2, sym_comment, sym_include, - [160826] = 5, + [158003] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6445), 1, - sym__terminator, + ACTIONS(6484), 1, + anon_sym_COMMA, STATE(4297), 2, sym_comment, sym_include, - [160843] = 5, + [158020] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6447), 1, + ACTIONS(6486), 1, sym__terminator, STATE(4298), 2, sym_comment, sym_include, - [160860] = 5, + [158037] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3581), 1, - aux_sym_property_definition_token1, + ACTIONS(6488), 1, + aux_sym_buffer_definition_token2, STATE(4299), 2, sym_comment, sym_include, - [160877] = 5, + [158054] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6449), 1, - aux_sym_data_source_definition_token1, + ACTIONS(6490), 1, + sym__terminator, STATE(4300), 2, sym_comment, sym_include, - [160894] = 5, + [158071] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5655), 1, - sym__terminator, + ACTIONS(3764), 1, + anon_sym_COLON, STATE(4301), 2, sym_comment, sym_include, - [160911] = 5, - ACTIONS(3), 1, + [158088] = 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(6451), 1, - sym_identifier, + ACTIONS(5720), 1, + sym__terminator, STATE(4302), 2, sym_comment, sym_include, - [160928] = 5, - ACTIONS(3), 1, + [158105] = 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(6453), 1, - sym_identifier, + ACTIONS(5716), 1, + sym__terminator, STATE(4303), 2, sym_comment, sym_include, - [160945] = 5, + [158122] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6455), 1, - sym__terminator, + ACTIONS(6492), 1, + anon_sym_RPAREN, STATE(4304), 2, sym_comment, sym_include, - [160962] = 5, - ACTIONS(59), 1, + [158139] = 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(6457), 1, - sym__terminator, + ACTIONS(6494), 1, + sym_identifier, STATE(4305), 2, sym_comment, sym_include, - [160979] = 5, - ACTIONS(59), 1, + [158156] = 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(5639), 1, - sym__terminator, + ACTIONS(6496), 1, + sym_identifier, STATE(4306), 2, sym_comment, sym_include, - [160996] = 5, + [158173] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6459), 1, - aux_sym_function_parameter_token1, + ACTIONS(4882), 1, + anon_sym_COLON, STATE(4307), 2, sym_comment, sym_include, - [161013] = 5, + [158190] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6461), 1, - sym__terminator, + ACTIONS(4092), 1, + anon_sym_COLON, STATE(4308), 2, sym_comment, sym_include, - [161030] = 5, - ACTIONS(59), 1, + [158207] = 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(4891), 1, - anon_sym_COLON, + ACTIONS(6498), 1, + sym_identifier, STATE(4309), 2, sym_comment, sym_include, - [161047] = 5, + [158224] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4360), 1, - anon_sym_COLON, + ACTIONS(5700), 1, + sym__terminator, STATE(4310), 2, sym_comment, sym_include, - [161064] = 5, + [158241] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5633), 1, + ACTIONS(4890), 1, sym__terminator, STATE(4311), 2, sym_comment, sym_include, - [161081] = 5, - ACTIONS(3), 1, + [158258] = 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(2337), 1, - sym_identifier, + ACTIONS(6500), 1, + anon_sym_LPAREN, STATE(4312), 2, sym_comment, sym_include, - [161098] = 5, + [158275] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6463), 1, - anon_sym_DOT, + ACTIONS(6502), 1, + anon_sym_COMMA, STATE(4313), 2, sym_comment, sym_include, - [161115] = 5, - ACTIONS(3), 1, + [158292] = 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(6465), 1, - sym_identifier, + ACTIONS(6504), 1, + sym__terminator, STATE(4314), 2, sym_comment, sym_include, - [161132] = 5, - ACTIONS(59), 1, + [158309] = 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(6467), 1, - anon_sym_RPAREN, + ACTIONS(6506), 1, + sym_identifier, STATE(4315), 2, sym_comment, sym_include, - [161149] = 5, + [158326] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6469), 1, + ACTIONS(6508), 1, sym__terminator, STATE(4316), 2, sym_comment, sym_include, - [161166] = 5, + [158343] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6471), 1, - anon_sym_RBRACE, + ACTIONS(4894), 1, + sym__terminator, STATE(4317), 2, sym_comment, sym_include, - [161183] = 5, + [158360] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6473), 1, - anon_sym_COLON, + ACTIONS(5113), 1, + sym__terminator, STATE(4318), 2, sym_comment, sym_include, - [161200] = 5, - ACTIONS(3), 1, + [158377] = 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(6475), 1, - sym_identifier, + ACTIONS(6510), 1, + sym__terminator, STATE(4319), 2, sym_comment, sym_include, - [161217] = 5, + [158394] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6477), 1, + ACTIONS(6512), 1, sym__terminator, STATE(4320), 2, sym_comment, sym_include, - [161234] = 5, + [158411] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6479), 1, + ACTIONS(4878), 1, anon_sym_COLON, STATE(4321), 2, sym_comment, sym_include, - [161251] = 5, + [158428] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5135), 1, + ACTIONS(6514), 1, sym__terminator, STATE(4322), 2, sym_comment, sym_include, - [161268] = 5, + [158445] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6481), 1, + ACTIONS(5686), 1, sym__terminator, STATE(4323), 2, sym_comment, sym_include, - [161285] = 5, - ACTIONS(3), 1, + [158462] = 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(6483), 1, - sym_identifier, + ACTIONS(4880), 1, + sym__terminator, STATE(4324), 2, sym_comment, sym_include, - [161302] = 5, + [158479] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6485), 1, + ACTIONS(6516), 1, sym__terminator, STATE(4325), 2, sym_comment, sym_include, - [161319] = 5, + [158496] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6487), 1, + ACTIONS(6518), 1, sym__terminator, STATE(4326), 2, sym_comment, sym_include, - [161336] = 5, - ACTIONS(3), 1, + [158513] = 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(6489), 1, - sym_identifier, + ACTIONS(6520), 1, + sym__terminator, STATE(4327), 2, sym_comment, sym_include, - [161353] = 5, - ACTIONS(3), 1, + [158530] = 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(6491), 1, - sym_identifier, + ACTIONS(5676), 1, + sym__terminator, STATE(4328), 2, sym_comment, sym_include, - [161370] = 5, + [158547] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4881), 1, + ACTIONS(6522), 1, sym__terminator, STATE(4329), 2, sym_comment, sym_include, - [161387] = 5, + [158564] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6493), 1, + ACTIONS(6524), 1, sym__terminator, STATE(4330), 2, sym_comment, sym_include, - [161404] = 5, + [158581] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6495), 1, - aux_sym_buffer_definition_token2, + ACTIONS(6526), 1, + aux_sym__block_terminator_token1, STATE(4331), 2, sym_comment, sym_include, - [161421] = 5, + [158598] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6497), 1, - anon_sym_LPAREN, + ACTIONS(6528), 1, + anon_sym_COMMA, STATE(4332), 2, sym_comment, sym_include, - [161438] = 5, - ACTIONS(59), 1, + [158615] = 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(6499), 1, - aux_sym__block_terminator_token1, + ACTIONS(6530), 1, + sym_identifier, STATE(4333), 2, sym_comment, sym_include, - [161455] = 5, + [158632] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6501), 1, - aux_sym__block_terminator_token1, + ACTIONS(6532), 1, + anon_sym_COLON, STATE(4334), 2, sym_comment, sym_include, - [161472] = 5, + [158649] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4831), 1, - aux_sym_on_error_phrase_token2, + ACTIONS(6534), 1, + anon_sym_COLON, STATE(4335), 2, sym_comment, sym_include, - [161489] = 5, + [158666] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6503), 1, - anon_sym_COLON, + ACTIONS(6536), 1, + sym__terminator, STATE(4336), 2, sym_comment, sym_include, - [161506] = 5, + [158683] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6505), 1, - anon_sym_COLON, + ACTIONS(5127), 1, + sym__terminator, STATE(4337), 2, sym_comment, sym_include, - [161523] = 5, + [158700] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6507), 1, - sym__terminator, + ACTIONS(3734), 1, + anon_sym_COLON, STATE(4338), 2, sym_comment, sym_include, - [161540] = 5, + [158717] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6509), 1, - anon_sym_RPAREN, + ACTIONS(5654), 1, + sym__terminator, STATE(4339), 2, sym_comment, sym_include, - [161557] = 5, + [158734] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5603), 1, - sym__terminator, + ACTIONS(6538), 1, + anon_sym_RBRACE, STATE(4340), 2, sym_comment, sym_include, - [161574] = 5, + [158751] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6511), 1, + ACTIONS(6540), 1, sym__terminator, STATE(4341), 2, sym_comment, sym_include, - [161591] = 5, + [158768] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6513), 1, + ACTIONS(6542), 1, sym__terminator, STATE(4342), 2, sym_comment, sym_include, - [161608] = 5, + [158785] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5587), 1, + ACTIONS(6544), 1, sym__terminator, STATE(4343), 2, sym_comment, sym_include, - [161625] = 5, + [158802] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6515), 1, + ACTIONS(5646), 1, sym__terminator, STATE(4344), 2, sym_comment, sym_include, - [161642] = 5, + [158819] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6517), 1, - sym__terminator, + ACTIONS(6546), 1, + sym__integer_literal, STATE(4345), 2, sym_comment, sym_include, - [161659] = 5, + [158836] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6519), 1, + ACTIONS(173), 1, sym__terminator, STATE(4346), 2, sym_comment, sym_include, - [161676] = 5, + [158853] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6521), 1, - aux_sym__block_terminator_token1, + ACTIONS(6548), 1, + anon_sym_COLON, STATE(4347), 2, sym_comment, sym_include, - [161693] = 5, + [158870] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6523), 1, + ACTIONS(6550), 1, anon_sym_COLON, STATE(4348), 2, sym_comment, sym_include, - [161710] = 5, + [158887] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6525), 1, - aux_sym__block_terminator_token1, + ACTIONS(5692), 1, + sym__terminator, STATE(4349), 2, sym_comment, sym_include, - [161727] = 5, + [158904] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4302), 1, - anon_sym_COLON, + ACTIONS(6552), 1, + sym__terminator, STATE(4350), 2, sym_comment, sym_include, - [161744] = 5, + [158921] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6527), 1, + ACTIONS(5642), 1, sym__terminator, STATE(4351), 2, sym_comment, sym_include, - [161761] = 5, + [158938] = 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_COLON, + ACTIONS(6554), 1, + sym__terminator, STATE(4352), 2, sym_comment, sym_include, - [161778] = 5, - ACTIONS(3), 1, + [158955] = 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(6529), 1, - sym_identifier, + ACTIONS(6556), 1, + anon_sym_RBRACE, STATE(4353), 2, sym_comment, sym_include, - [161795] = 5, + [158972] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5567), 1, + ACTIONS(6558), 1, sym__terminator, STATE(4354), 2, sym_comment, sym_include, - [161812] = 5, + [158989] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6531), 1, - sym__terminator, + ACTIONS(6560), 1, + aux_sym__block_terminator_token1, STATE(4355), 2, sym_comment, sym_include, - [161829] = 5, + [159006] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6533), 1, - anon_sym_RBRACE, + ACTIONS(6562), 1, + sym__terminator, STATE(4356), 2, sym_comment, sym_include, - [161846] = 5, + [159023] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6535), 1, - sym__integer_literal, + ACTIONS(4585), 1, + anon_sym_COLON, STATE(4357), 2, sym_comment, sym_include, - [161863] = 5, + [159040] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6537), 1, - sym__terminator, + ACTIONS(4814), 1, + aux_sym_on_stop_phrase_token1, STATE(4358), 2, sym_comment, sym_include, - [161880] = 5, - ACTIONS(3), 1, + [159057] = 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(6539), 1, - sym_identifier, + ACTIONS(6564), 1, + sym__terminator, STATE(4359), 2, sym_comment, sym_include, - [161897] = 5, + [159074] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5293), 1, + ACTIONS(6566), 1, sym__terminator, STATE(4360), 2, sym_comment, sym_include, - [161914] = 5, - ACTIONS(3), 1, + [159091] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6541), 1, - sym_identifier, + ACTIONS(6568), 1, + sym__terminator, STATE(4361), 2, sym_comment, sym_include, - [161931] = 5, + [159108] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6543), 1, + ACTIONS(5626), 1, sym__terminator, STATE(4362), 2, sym_comment, sym_include, - [161948] = 5, - ACTIONS(3), 1, + [159125] = 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(6545), 1, - sym_identifier, + ACTIONS(4874), 1, + sym__terminator, STATE(4363), 2, sym_comment, sym_include, - [161965] = 5, + [159142] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6547), 1, - anon_sym_RPAREN, + ACTIONS(6570), 1, + sym__terminator, STATE(4364), 2, sym_comment, sym_include, - [161982] = 5, + [159159] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6549), 1, - sym__terminator, + ACTIONS(6572), 1, + anon_sym_COLON, STATE(4365), 2, sym_comment, sym_include, - [161999] = 5, + [159176] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6551), 1, + ACTIONS(5880), 1, sym__terminator, STATE(4366), 2, sym_comment, sym_include, - [162016] = 5, + [159193] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_COLON, + ACTIONS(6574), 1, + aux_sym__block_terminator_token1, STATE(4367), 2, sym_comment, sym_include, - [162033] = 5, + [159210] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6553), 1, - anon_sym_RBRACE, + ACTIONS(4355), 1, + anon_sym_COLON, STATE(4368), 2, sym_comment, sym_include, - [162050] = 5, + [159227] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4875), 1, - sym__terminator, + ACTIONS(5141), 1, + anon_sym_COLON, STATE(4369), 2, sym_comment, sym_include, - [162067] = 5, + [159244] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6555), 1, - aux_sym_do_block_token1, + ACTIONS(4864), 1, + sym__terminator, STATE(4370), 2, sym_comment, sym_include, - [162084] = 5, + [159261] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6557), 1, - aux_sym__block_terminator_token1, + ACTIONS(6576), 1, + sym__terminator, STATE(4371), 2, sym_comment, sym_include, - [162101] = 5, + [159278] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4454), 1, - anon_sym_COLON, + ACTIONS(157), 1, + sym__terminator, STATE(4372), 2, sym_comment, sym_include, - [162118] = 5, + [159295] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5541), 1, + ACTIONS(5616), 1, sym__terminator, STATE(4373), 2, sym_comment, sym_include, - [162135] = 5, + [159312] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6559), 1, - anon_sym_EQ, + ACTIONS(6578), 1, + sym__terminator, STATE(4374), 2, sym_comment, sym_include, - [162152] = 5, - ACTIONS(3), 1, + [159329] = 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(6561), 1, - sym_identifier, + ACTIONS(6580), 1, + anon_sym_COLON, STATE(4375), 2, sym_comment, sym_include, - [162169] = 5, + [159346] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6563), 1, - anon_sym_COMMA, + ACTIONS(6582), 1, + sym__terminator, STATE(4376), 2, sym_comment, sym_include, - [162186] = 5, - ACTIONS(59), 1, + [159363] = 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(6565), 1, - aux_sym_output_stream_statement_token1, + ACTIONS(6584), 1, + sym_identifier, STATE(4377), 2, sym_comment, sym_include, - [162203] = 5, + [159380] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6567), 1, - anon_sym_COMMA, + ACTIONS(6586), 1, + sym__terminator, STATE(4378), 2, sym_comment, sym_include, - [162220] = 5, - ACTIONS(3), 1, + [159397] = 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(6569), 1, - sym_identifier, + ACTIONS(4848), 1, + anon_sym_LPAREN, STATE(4379), 2, sym_comment, sym_include, - [162237] = 5, + [159414] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6571), 1, - sym__terminator, + ACTIONS(6588), 1, + aux_sym_buffer_definition_token2, STATE(4380), 2, sym_comment, sym_include, - [162254] = 5, + [159431] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4861), 1, - anon_sym_LPAREN, + ACTIONS(6590), 1, + sym__integer_literal, STATE(4381), 2, sym_comment, sym_include, - [162271] = 5, + [159448] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6573), 1, - anon_sym_RBRACE, + ACTIONS(6592), 1, + sym__terminator, STATE(4382), 2, sym_comment, sym_include, - [162288] = 5, + [159465] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6575), 1, - anon_sym_RPAREN, + ACTIONS(6594), 1, + sym__terminator, STATE(4383), 2, sym_comment, sym_include, - [162305] = 5, + [159482] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6577), 1, - aux_sym__block_terminator_token1, + ACTIONS(6596), 1, + sym__terminator, STATE(4384), 2, sym_comment, sym_include, - [162322] = 5, + [159499] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6579), 1, + ACTIONS(6598), 1, sym__terminator, STATE(4385), 2, sym_comment, sym_include, - [162339] = 5, - ACTIONS(59), 1, + [159516] = 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(6581), 1, - anon_sym_EQ, + ACTIONS(6600), 1, + sym_identifier, STATE(4386), 2, sym_comment, sym_include, - [162356] = 5, + [159533] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6583), 1, + ACTIONS(6602), 1, sym__terminator, STATE(4387), 2, sym_comment, sym_include, - [162373] = 5, - ACTIONS(3), 1, + [159550] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6585), 1, - sym_identifier, + ACTIONS(4840), 1, + anon_sym_LPAREN, STATE(4388), 2, sym_comment, sym_include, - [162390] = 5, + [159567] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5155), 1, - anon_sym_COLON, + ACTIONS(6604), 1, + sym__terminator, STATE(4389), 2, sym_comment, sym_include, - [162407] = 5, + [159584] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4845), 1, - anon_sym_LPAREN, + ACTIONS(6606), 1, + anon_sym_RPAREN, STATE(4390), 2, sym_comment, sym_include, - [162424] = 5, - ACTIONS(59), 1, + [159601] = 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(6587), 1, - sym__terminator, + ACTIONS(6608), 1, + sym_identifier, STATE(4391), 2, sym_comment, sym_include, - [162441] = 5, + [159618] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6589), 1, + ACTIONS(6610), 1, sym__terminator, STATE(4392), 2, sym_comment, sym_include, - [162458] = 5, - ACTIONS(3), 1, + [159635] = 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(6591), 1, - sym_identifier, + ACTIONS(3209), 1, + aux_sym__block_terminator_token1, STATE(4393), 2, sym_comment, sym_include, - [162475] = 5, + [159652] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6593), 1, - anon_sym_RPAREN, + ACTIONS(6612), 1, + sym__terminator, STATE(4394), 2, sym_comment, sym_include, - [162492] = 5, - ACTIONS(3), 1, + [159669] = 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(6595), 1, - sym_identifier, + ACTIONS(4820), 1, + anon_sym_LPAREN, STATE(4395), 2, sym_comment, sym_include, - [162509] = 5, - ACTIONS(3), 1, + [159686] = 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(6597), 1, - sym_identifier, + ACTIONS(6614), 1, + sym__terminator, STATE(4396), 2, sym_comment, sym_include, - [162526] = 5, - ACTIONS(3), 1, + [159703] = 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(6599), 1, - sym_identifier, + ACTIONS(4818), 1, + anon_sym_LPAREN, STATE(4397), 2, sym_comment, sym_include, - [162543] = 5, + [159720] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, - anon_sym_LPAREN, + ACTIONS(6616), 1, + aux_sym__block_terminator_token1, STATE(4398), 2, sym_comment, sym_include, - [162560] = 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(4399), 2, - sym_comment, - sym_include, - [162577] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6603), 1, - sym_identifier, - STATE(4400), 2, - sym_comment, - sym_include, - [162594] = 5, + [159737] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5168), 1, - anon_sym_LPAREN, - STATE(4401), 2, + ACTIONS(6618), 1, + aux_sym__block_terminator_token1, + STATE(4399), 2, sym_comment, sym_include, - [162611] = 5, + [159754] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6605), 1, + ACTIONS(6620), 1, sym_identifier, - STATE(4402), 2, + STATE(4400), 2, sym_comment, sym_include, - [162628] = 5, + [159771] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6607), 1, + ACTIONS(6622), 1, sym_identifier, - STATE(4403), 2, + STATE(4401), 2, sym_comment, sym_include, - [162645] = 5, + [159788] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6609), 1, - aux_sym__block_terminator_token1, - STATE(4404), 2, + ACTIONS(3249), 1, + anon_sym_COLON, + STATE(4402), 2, sym_comment, sym_include, - [162662] = 5, + [159805] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6611), 1, + ACTIONS(6624), 1, sym_identifier, - STATE(4405), 2, + STATE(4403), 2, sym_comment, sym_include, - [162679] = 5, + [159822] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6613), 1, + ACTIONS(6626), 1, anon_sym_COLON, - STATE(4406), 2, + STATE(4404), 2, sym_comment, sym_include, - [162696] = 5, + [159839] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6615), 1, - sym__terminator, - STATE(4407), 2, + ACTIONS(6628), 1, + aux_sym_do_block_token1, + STATE(4405), 2, sym_comment, sym_include, - [162713] = 5, + [159856] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6617), 1, + ACTIONS(6630), 1, anon_sym_LPAREN, - STATE(4408), 2, + STATE(4406), 2, sym_comment, sym_include, - [162730] = 5, + [159873] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6619), 1, + ACTIONS(6632), 1, sym_identifier, - STATE(4409), 2, + STATE(4407), 2, sym_comment, sym_include, - [162747] = 5, + [159890] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6621), 1, + ACTIONS(6634), 1, sym_identifier, - STATE(4410), 2, + STATE(4408), 2, sym_comment, sym_include, - [162764] = 5, + [159907] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6623), 1, + ACTIONS(6636), 1, sym__terminator, - STATE(4411), 2, + STATE(4409), 2, sym_comment, sym_include, - [162781] = 5, + [159924] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3284), 1, - anon_sym_COLON, - STATE(4412), 2, + ACTIONS(6638), 1, + aux_sym__block_terminator_token1, + STATE(4410), 2, sym_comment, sym_include, - [162798] = 5, + [159941] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5501), 1, - sym__terminator, - STATE(4413), 2, + ACTIONS(6640), 1, + aux_sym_input_expression_token2, + STATE(4411), 2, sym_comment, sym_include, - [162815] = 5, - ACTIONS(59), 1, + [159958] = 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(6625), 1, - sym__terminator, - STATE(4414), 2, + ACTIONS(6642), 1, + sym_identifier, + STATE(4412), 2, sym_comment, sym_include, - [162832] = 5, + [159975] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6627), 1, + ACTIONS(6644), 1, sym_identifier, - STATE(4415), 2, + STATE(4413), 2, sym_comment, sym_include, - [162849] = 5, + [159992] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6629), 1, + ACTIONS(6646), 1, sym_identifier, - STATE(4416), 2, + STATE(4414), 2, sym_comment, sym_include, - [162866] = 5, + [160009] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6631), 1, - sym__terminator, - STATE(4417), 2, + ACTIONS(4404), 1, + anon_sym_COLON, + STATE(4415), 2, sym_comment, sym_include, - [162883] = 5, + [160026] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6633), 1, - sym__terminator, - STATE(4418), 2, + ACTIONS(6648), 1, + anon_sym_COMMA, + STATE(4416), 2, sym_comment, sym_include, - [162900] = 5, + [160043] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6635), 1, + ACTIONS(6650), 1, sym__terminator, - STATE(4419), 2, + STATE(4417), 2, sym_comment, sym_include, - [162917] = 5, + [160060] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6637), 1, + ACTIONS(6652), 1, sym__terminator, - STATE(4420), 2, + STATE(4418), 2, sym_comment, sym_include, - [162934] = 5, + [160077] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6639), 1, + ACTIONS(6654), 1, anon_sym_COMMA, - STATE(4421), 2, + STATE(4419), 2, sym_comment, sym_include, - [162951] = 5, - ACTIONS(59), 1, + [160094] = 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(6641), 1, - sym__terminator, - STATE(4422), 2, + ACTIONS(6656), 1, + sym_identifier, + STATE(4420), 2, sym_comment, sym_include, - [162968] = 5, + [160111] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6643), 1, - aux_sym_variable_definition_token5, - STATE(4423), 2, + ACTIONS(5558), 1, + sym__terminator, + STATE(4421), 2, sym_comment, sym_include, - [162985] = 5, + [160128] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3338), 1, - anon_sym_COLON, - STATE(4424), 2, + ACTIONS(6658), 1, + anon_sym_COMMA, + STATE(4422), 2, sym_comment, sym_include, - [163002] = 5, + [160145] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6645), 1, + ACTIONS(6660), 1, aux_sym_buffer_definition_token2, - STATE(4425), 2, + STATE(4423), 2, sym_comment, sym_include, - [163019] = 5, + [160162] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6647), 1, + ACTIONS(6662), 1, aux_sym_buffer_definition_token2, - STATE(4426), 2, + STATE(4424), 2, sym_comment, sym_include, - [163036] = 5, + [160179] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6649), 1, + ACTIONS(6664), 1, aux_sym_on_error_phrase_token3, - STATE(4427), 2, + STATE(4425), 2, sym_comment, sym_include, - [163053] = 5, + [160196] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6651), 1, + ACTIONS(6666), 1, anon_sym_COLON, - STATE(4428), 2, + STATE(4426), 2, sym_comment, sym_include, - [163070] = 5, + [160213] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4568), 1, + ACTIONS(4633), 1, aux_sym_of_token1, - STATE(4429), 2, + STATE(4427), 2, sym_comment, sym_include, - [163087] = 5, + [160230] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6653), 1, - aux_sym_variable_definition_token5, - STATE(4430), 2, + ACTIONS(6668), 1, + sym__terminator, + STATE(4428), 2, sym_comment, sym_include, - [163104] = 5, - ACTIONS(59), 1, + [160247] = 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(6655), 1, - sym__terminator, - STATE(4431), 2, + ACTIONS(6670), 1, + sym_identifier, + STATE(4429), 2, sym_comment, sym_include, - [163121] = 5, + [160264] = 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_buffer_definition_token2, - STATE(4432), 2, + ACTIONS(4667), 1, + aux_sym_of_token1, + STATE(4430), 2, sym_comment, sym_include, - [163138] = 5, - ACTIONS(59), 1, + [160281] = 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(3213), 1, - aux_sym__block_terminator_token1, - STATE(4433), 2, + ACTIONS(6672), 1, + sym_identifier, + STATE(4431), 2, sym_comment, sym_include, - [163155] = 5, + [160298] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6659), 1, + ACTIONS(6674), 1, aux_sym_variable_definition_token5, - STATE(4434), 2, + STATE(4432), 2, sym_comment, sym_include, - [163172] = 5, + [160315] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6661), 1, + ACTIONS(6676), 1, sym_identifier, - STATE(4435), 2, + STATE(4433), 2, sym_comment, sym_include, - [163189] = 5, + [160332] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6663), 1, + ACTIONS(6678), 1, aux_sym_buffer_definition_token2, - STATE(4436), 2, + STATE(4434), 2, sym_comment, sym_include, - [163206] = 5, + [160349] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6665), 1, + ACTIONS(6680), 1, aux_sym_buffer_definition_token2, - STATE(4437), 2, + STATE(4435), 2, sym_comment, sym_include, - [163223] = 5, + [160366] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__terminator, - STATE(4438), 2, + ACTIONS(6682), 1, + aux_sym__block_terminator_token1, + STATE(4436), 2, sym_comment, sym_include, - [163240] = 5, + [160383] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6669), 1, + ACTIONS(6684), 1, aux_sym_of_token1, - STATE(4439), 2, + STATE(4437), 2, sym_comment, sym_include, - [163257] = 5, + [160400] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6671), 1, + ACTIONS(5510), 1, sym__terminator, - STATE(4440), 2, + STATE(4438), 2, sym_comment, sym_include, - [163274] = 5, + [160417] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4817), 1, + ACTIONS(4796), 1, anon_sym_COLON, - STATE(4441), 2, + STATE(4439), 2, sym_comment, sym_include, - [163291] = 5, - ACTIONS(3), 1, + [160434] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - sym_identifier, - STATE(4442), 2, + ACTIONS(6686), 1, + sym__terminator, + STATE(4440), 2, sym_comment, sym_include, - [163308] = 5, + [160451] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4371), 1, - anon_sym_COLON, - STATE(4443), 2, + ACTIONS(6688), 1, + sym__terminator, + STATE(4441), 2, sym_comment, sym_include, - [163325] = 5, + [160468] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4815), 1, + ACTIONS(4794), 1, anon_sym_COLON, - STATE(4444), 2, + STATE(4442), 2, sym_comment, sym_include, - [163342] = 5, - ACTIONS(59), 1, + [160485] = 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(6675), 1, - anon_sym_COLON, - STATE(4445), 2, + ACTIONS(6690), 1, + sym_identifier, + STATE(4443), 2, sym_comment, sym_include, - [163359] = 5, + [160502] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6677), 1, - aux_sym__block_terminator_token1, - STATE(4446), 2, + ACTIONS(6692), 1, + sym__terminator, + STATE(4444), 2, sym_comment, sym_include, - [163376] = 5, + [160519] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5463), 1, - sym__terminator, - STATE(4447), 2, + ACTIONS(3273), 1, + anon_sym_COLON, + STATE(4445), 2, sym_comment, sym_include, - [163393] = 5, + [160536] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6679), 1, + ACTIONS(6694), 1, sym_identifier, - STATE(4448), 2, + STATE(4446), 2, sym_comment, sym_include, - [163410] = 5, + [160553] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6681), 1, - anon_sym_DOT, - STATE(4449), 2, + ACTIONS(6696), 1, + sym__terminator, + STATE(4447), 2, sym_comment, sym_include, - [163427] = 5, + [160570] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6683), 1, + ACTIONS(6698), 1, anon_sym_LPAREN, - STATE(4450), 2, + STATE(4448), 2, sym_comment, sym_include, - [163444] = 5, + [160587] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6685), 1, + ACTIONS(6700), 1, sym_identifier, - STATE(4451), 2, + STATE(4449), 2, sym_comment, sym_include, - [163461] = 5, + [160604] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6687), 1, + ACTIONS(6702), 1, sym_identifier, - STATE(4452), 2, + STATE(4450), 2, sym_comment, sym_include, - [163478] = 5, + [160621] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6689), 1, - aux_sym__block_terminator_token1, - STATE(4453), 2, + ACTIONS(6704), 1, + anon_sym_COLON, + STATE(4451), 2, sym_comment, sym_include, - [163495] = 5, - ACTIONS(3), 1, + [160638] = 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(6691), 1, - sym_identifier, - STATE(4454), 2, + ACTIONS(4251), 1, + anon_sym_COLON, + STATE(4452), 2, sym_comment, sym_include, - [163512] = 5, + [160655] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5453), 1, + ACTIONS(6706), 1, sym__terminator, - STATE(4455), 2, + STATE(4453), 2, sym_comment, sym_include, - [163529] = 5, + [160672] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6693), 1, + ACTIONS(6708), 1, anon_sym_RBRACE, - STATE(4456), 2, + STATE(4454), 2, sym_comment, sym_include, - [163546] = 5, + [160689] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6695), 1, + ACTIONS(6710), 1, sym_identifier, - STATE(4457), 2, + STATE(4455), 2, sym_comment, sym_include, - [163563] = 5, + [160706] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6697), 1, + ACTIONS(6712), 1, sym_identifier, - STATE(4458), 2, + STATE(4456), 2, sym_comment, sym_include, - [163580] = 5, + [160723] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6699), 1, - aux_sym__block_terminator_token1, - STATE(4459), 2, + ACTIONS(5164), 1, + sym__terminator, + STATE(4457), 2, sym_comment, sym_include, - [163597] = 5, + [160740] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4424), 1, - anon_sym_COLON, - STATE(4460), 2, + ACTIONS(6714), 1, + sym__terminator, + STATE(4458), 2, sym_comment, sym_include, - [163614] = 5, - ACTIONS(3), 1, + [160757] = 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(6701), 1, - sym_identifier, - STATE(4461), 2, + ACTIONS(6716), 1, + anon_sym_LPAREN, + STATE(4459), 2, sym_comment, sym_include, - [163631] = 5, + [160774] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6703), 1, + ACTIONS(6718), 1, anon_sym_COMMA, - STATE(4462), 2, + STATE(4460), 2, sym_comment, sym_include, - [163648] = 5, + [160791] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6705), 1, + ACTIONS(6720), 1, sym_identifier, - STATE(4463), 2, + STATE(4461), 2, sym_comment, sym_include, - [163665] = 5, + [160808] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5439), 1, - sym__terminator, - STATE(4464), 2, + ACTIONS(6722), 1, + anon_sym_LPAREN, + STATE(4462), 2, sym_comment, sym_include, - [163682] = 5, + [160825] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6707), 1, - sym__terminator, - STATE(4465), 2, + ACTIONS(6724), 1, + anon_sym_RPAREN, + STATE(4463), 2, sym_comment, sym_include, - [163699] = 5, + [160842] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6709), 1, + ACTIONS(6726), 1, aux_sym_buffer_definition_token2, - STATE(4466), 2, + STATE(4464), 2, sym_comment, sym_include, - [163716] = 5, + [160859] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6711), 1, + ACTIONS(6728), 1, aux_sym_buffer_definition_token2, - STATE(4467), 2, + STATE(4465), 2, sym_comment, sym_include, - [163733] = 5, + [160876] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6713), 1, + ACTIONS(6730), 1, anon_sym_COLON, - STATE(4468), 2, + STATE(4466), 2, sym_comment, sym_include, - [163750] = 5, + [160893] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4586), 1, + ACTIONS(4637), 1, aux_sym_of_token1, - STATE(4469), 2, + STATE(4467), 2, sym_comment, sym_include, - [163767] = 5, - ACTIONS(3), 1, + [160910] = 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(6715), 1, - sym_identifier, - STATE(4470), 2, + ACTIONS(5950), 1, + aux_sym_primitive_type_token1, + STATE(4468), 2, sym_comment, sym_include, - [163784] = 5, + [160927] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6717), 1, + ACTIONS(6732), 1, sym_identifier, - STATE(4471), 2, + STATE(4469), 2, sym_comment, sym_include, - [163801] = 5, + [160944] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5431), 1, - sym__terminator, - STATE(4472), 2, + ACTIONS(6734), 1, + anon_sym_RPAREN, + STATE(4470), 2, sym_comment, sym_include, - [163818] = 5, + [160961] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2583), 1, aux_sym__block_terminator_token1, - STATE(4473), 2, + STATE(4471), 2, sym_comment, sym_include, - [163835] = 5, + [160978] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6719), 1, - anon_sym_COMMA, - STATE(4474), 2, + ACTIONS(6736), 1, + anon_sym_RBRACE, + STATE(4472), 2, sym_comment, sym_include, - [163852] = 5, + [160995] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6721), 1, + ACTIONS(6738), 1, aux_sym_buffer_definition_token2, - STATE(4475), 2, + STATE(4473), 2, sym_comment, sym_include, - [163869] = 5, + [161012] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6723), 1, + ACTIONS(6740), 1, aux_sym_buffer_definition_token2, - STATE(4476), 2, + STATE(4474), 2, sym_comment, sym_include, - [163886] = 5, + [161029] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - sym__integer_literal, - STATE(4477), 2, + ACTIONS(5182), 1, + sym__terminator, + STATE(4475), 2, sym_comment, sym_include, - [163903] = 5, + [161046] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6727), 1, + ACTIONS(6742), 1, aux_sym_of_token1, - STATE(4478), 2, + STATE(4476), 2, sym_comment, sym_include, - [163920] = 5, + [161063] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6729), 1, - anon_sym_COMMA, - STATE(4479), 2, + ACTIONS(6744), 1, + anon_sym_LPAREN, + STATE(4477), 2, sym_comment, sym_include, - [163937] = 5, + [161080] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6731), 1, - aux_sym__block_terminator_token1, - STATE(4480), 2, + ACTIONS(6746), 1, + anon_sym_RBRACE, + STATE(4478), 2, sym_comment, sym_include, - [163954] = 5, + [161097] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6733), 1, + ACTIONS(6748), 1, sym_identifier, - STATE(4481), 2, + STATE(4479), 2, sym_comment, sym_include, - [163971] = 5, + [161114] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6735), 1, - anon_sym_COMMA, - STATE(4482), 2, + ACTIONS(6750), 1, + aux_sym__block_terminator_token1, + STATE(4480), 2, sym_comment, sym_include, - [163988] = 5, + [161131] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6737), 1, + ACTIONS(6752), 1, anon_sym_LPAREN, - STATE(4483), 2, + STATE(4481), 2, sym_comment, sym_include, - [164005] = 5, + [161148] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6739), 1, + ACTIONS(6754), 1, sym_identifier, - STATE(4484), 2, + STATE(4482), 2, sym_comment, sym_include, - [164022] = 5, + [161165] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6741), 1, + ACTIONS(6756), 1, sym_identifier, - STATE(4485), 2, + STATE(4483), 2, sym_comment, sym_include, - [164039] = 5, + [161182] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6743), 1, - anon_sym_RBRACE, - STATE(4486), 2, + ACTIONS(2954), 1, + anon_sym_COLON, + STATE(4484), 2, sym_comment, sym_include, - [164056] = 5, + [161199] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6745), 1, + ACTIONS(6758), 1, sym__terminator, - STATE(4487), 2, + STATE(4485), 2, sym_comment, sym_include, - [164073] = 5, + [161216] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, - anon_sym_LPAREN, - STATE(4488), 2, + ACTIONS(6760), 1, + sym__terminator, + STATE(4486), 2, sym_comment, sym_include, - [164090] = 5, + [161233] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3110), 1, - anon_sym_COLON, - STATE(4489), 2, + ACTIONS(6762), 1, + anon_sym_COMMA, + STATE(4487), 2, sym_comment, sym_include, - [164107] = 5, + [161250] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6749), 1, + ACTIONS(6764), 1, sym_identifier, - STATE(4490), 2, + STATE(4488), 2, sym_comment, sym_include, - [164124] = 5, + [161267] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, + ACTIONS(6766), 1, sym_identifier, - STATE(4491), 2, + STATE(4489), 2, sym_comment, sym_include, - [164141] = 5, + [161284] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6753), 1, + ACTIONS(5544), 1, sym__terminator, - STATE(4492), 2, + STATE(4490), 2, sym_comment, sym_include, - [164158] = 5, + [161301] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6755), 1, + ACTIONS(6768), 1, sym__terminator, - STATE(4493), 2, + STATE(4491), 2, sym_comment, sym_include, - [164175] = 5, - ACTIONS(3), 1, + [161318] = 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(6757), 1, - sym_identifier, - STATE(4494), 2, + ACTIONS(6770), 1, + anon_sym_COLON, + STATE(4492), 2, sym_comment, sym_include, - [164192] = 5, + [161335] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6759), 1, + ACTIONS(6772), 1, anon_sym_COMMA, - STATE(4495), 2, + STATE(4493), 2, sym_comment, sym_include, - [164209] = 5, - ACTIONS(3), 1, + [161352] = 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(6761), 1, - sym_identifier, - STATE(4496), 2, + ACTIONS(6774), 1, + sym__terminator, + STATE(4494), 2, sym_comment, sym_include, - [164226] = 5, + [161369] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6763), 1, - sym__integer_literal, - STATE(4497), 2, + ACTIONS(3720), 1, + anon_sym_COLON, + STATE(4495), 2, sym_comment, sym_include, - [164243] = 5, - ACTIONS(3), 1, + [161386] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6765), 1, - sym_identifier, - STATE(4498), 2, + ACTIONS(5180), 1, + sym__terminator, + STATE(4496), 2, sym_comment, sym_include, - [164260] = 5, + [161403] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6767), 1, + ACTIONS(6776), 1, aux_sym_buffer_definition_token2, - STATE(4499), 2, + STATE(4497), 2, sym_comment, sym_include, - [164277] = 5, + [161420] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6769), 1, + ACTIONS(6778), 1, aux_sym_buffer_definition_token2, - STATE(4500), 2, + STATE(4498), 2, sym_comment, sym_include, - [164294] = 5, + [161437] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6771), 1, + ACTIONS(6780), 1, anon_sym_COLON, - STATE(4501), 2, + STATE(4499), 2, sym_comment, sym_include, - [164311] = 5, + [161454] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4645), 1, aux_sym_of_token1, - STATE(4502), 2, + STATE(4500), 2, sym_comment, sym_include, - [164328] = 5, + [161471] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6773), 1, - anon_sym_COLON, - STATE(4503), 2, + ACTIONS(4777), 1, + sym__terminator, + STATE(4501), 2, sym_comment, sym_include, - [164345] = 5, - ACTIONS(3), 1, + [161488] = 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(6775), 1, - sym_identifier, - STATE(4504), 2, + ACTIONS(6782), 1, + anon_sym_RPAREN, + STATE(4502), 2, sym_comment, sym_include, - [164362] = 5, - ACTIONS(59), 1, + [161505] = 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(6777), 1, - sym__terminator, - STATE(4505), 2, + ACTIONS(6784), 1, + sym_identifier, + STATE(4503), 2, sym_comment, sym_include, - [164379] = 5, + [161522] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3701), 1, - anon_sym_COLON, - STATE(4506), 2, + ACTIONS(5186), 1, + anon_sym_LPAREN, + STATE(4504), 2, sym_comment, sym_include, - [164396] = 5, + [161539] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6779), 1, - aux_sym_do_block_token1, - STATE(4507), 2, + ACTIONS(4812), 1, + aux_sym_on_error_phrase_token2, + STATE(4505), 2, sym_comment, sym_include, - [164413] = 5, + [161556] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6781), 1, + ACTIONS(6786), 1, aux_sym_buffer_definition_token2, - STATE(4508), 2, + STATE(4506), 2, sym_comment, sym_include, - [164430] = 5, + [161573] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6783), 1, + ACTIONS(6788), 1, aux_sym_buffer_definition_token2, - STATE(4509), 2, + STATE(4507), 2, sym_comment, sym_include, - [164447] = 5, + [161590] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6785), 1, + ACTIONS(6790), 1, aux_sym_of_token1, - STATE(4510), 2, + STATE(4508), 2, sym_comment, sym_include, - [164464] = 5, - ACTIONS(3), 1, + [161607] = 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(6787), 1, - sym_identifier, - STATE(4511), 2, + ACTIONS(6792), 1, + anon_sym_RBRACE, + STATE(4509), 2, sym_comment, sym_include, - [164481] = 5, + [161624] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6789), 1, + ACTIONS(6794), 1, sym_identifier, - STATE(4512), 2, + STATE(4510), 2, sym_comment, sym_include, - [164498] = 5, + [161641] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6791), 1, + ACTIONS(6796), 1, sym_identifier, - STATE(4513), 2, + STATE(4511), 2, sym_comment, sym_include, - [164515] = 5, - ACTIONS(3), 1, + [161658] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6793), 1, - sym_identifier, - STATE(4514), 2, + ACTIONS(6798), 1, + anon_sym_COLON, + STATE(4512), 2, sym_comment, sym_include, - [164532] = 5, + [161675] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6795), 1, + ACTIONS(6800), 1, anon_sym_LPAREN, - STATE(4515), 2, + STATE(4513), 2, sym_comment, sym_include, - [164549] = 5, + [161692] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6797), 1, + ACTIONS(6802), 1, sym_identifier, - STATE(4516), 2, + STATE(4514), 2, sym_comment, sym_include, - [164566] = 5, + [161709] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6799), 1, + ACTIONS(6804), 1, sym_identifier, - STATE(4517), 2, + STATE(4515), 2, sym_comment, sym_include, - [164583] = 5, + [161726] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6801), 1, - sym__terminator, - STATE(4518), 2, + ACTIONS(6806), 1, + aux_sym_variable_definition_token5, + STATE(4516), 2, sym_comment, sym_include, - [164600] = 5, - ACTIONS(3), 1, + [161743] = 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(6803), 1, - sym_identifier, - STATE(4519), 2, + ACTIONS(3275), 1, + anon_sym_COLON, + STATE(4517), 2, sym_comment, sym_include, - [164617] = 5, + [161760] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5191), 1, - anon_sym_LPAREN, - STATE(4520), 2, + ACTIONS(6808), 1, + anon_sym_COLON, + STATE(4518), 2, sym_comment, sym_include, - [164634] = 5, + [161777] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6805), 1, - anon_sym_RPAREN, - STATE(4521), 2, + ACTIONS(6810), 1, + anon_sym_RBRACE, + STATE(4519), 2, sym_comment, sym_include, - [164651] = 5, + [161794] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6807), 1, + ACTIONS(6812), 1, sym_identifier, - STATE(4522), 2, + STATE(4520), 2, sym_comment, sym_include, - [164668] = 5, + [161811] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6809), 1, + ACTIONS(6814), 1, sym_identifier, - STATE(4523), 2, + STATE(4521), 2, sym_comment, sym_include, - [164685] = 5, + [161828] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5629), 1, - anon_sym_DOT, - STATE(4524), 2, + ACTIONS(6816), 1, + sym__integer_literal, + STATE(4522), 2, sym_comment, sym_include, - [164702] = 5, + [161845] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, - sym__terminator, - STATE(4525), 2, + ACTIONS(6818), 1, + aux_sym_buffer_definition_token2, + STATE(4523), 2, sym_comment, sym_include, - [164719] = 5, + [161862] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6813), 1, + ACTIONS(6820), 1, aux_sym_comment_token1, - STATE(4526), 2, + STATE(4524), 2, sym_comment, sym_include, - [164736] = 5, + [161879] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6815), 1, + ACTIONS(6822), 1, anon_sym_COMMA, + STATE(4525), 2, + sym_comment, + sym_include, + [161896] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3069), 1, + anon_sym_COLON, + STATE(4526), 2, + sym_comment, + sym_include, + [161913] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2284), 1, + sym_identifier, STATE(4527), 2, sym_comment, sym_include, - [164753] = 5, + [161930] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5193), 1, - sym__terminator, + ACTIONS(6824), 1, + anon_sym_DOT, STATE(4528), 2, sym_comment, sym_include, - [164770] = 5, + [161947] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5335), 1, - sym__terminator, + ACTIONS(6826), 1, + aux_sym_buffer_definition_token2, STATE(4529), 2, sym_comment, sym_include, - [164787] = 5, + [161964] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6817), 1, - anon_sym_COLON, + ACTIONS(6828), 1, + aux_sym_buffer_definition_token2, STATE(4530), 2, sym_comment, sym_include, - [164804] = 5, + [161981] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6819), 1, - aux_sym_buffer_definition_token2, + ACTIONS(6830), 1, + anon_sym_COLON, STATE(4531), 2, sym_comment, sym_include, - [164821] = 5, + [161998] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6821), 1, - aux_sym_buffer_definition_token2, + ACTIONS(4655), 1, + aux_sym_of_token1, STATE(4532), 2, sym_comment, sym_include, - [164838] = 5, - ACTIONS(59), 1, + [162015] = 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(6823), 1, - anon_sym_COLON, + ACTIONS(6832), 1, + sym_identifier, STATE(4533), 2, sym_comment, sym_include, - [164855] = 5, + [162032] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4630), 1, - aux_sym_of_token1, + ACTIONS(3688), 1, + anon_sym_COLON, STATE(4534), 2, sym_comment, sym_include, - [164872] = 5, + [162049] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6825), 1, + ACTIONS(6834), 1, sym_identifier, STATE(4535), 2, sym_comment, sym_include, - [164889] = 5, + [162066] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6827), 1, - aux_sym__block_terminator_token1, + ACTIONS(5340), 1, + sym__terminator, STATE(4536), 2, sym_comment, sym_include, - [164906] = 5, - ACTIONS(59), 1, + [162083] = 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(6829), 1, - anon_sym_RBRACE, + ACTIONS(6836), 1, + sym_identifier, STATE(4537), 2, sym_comment, sym_include, - [164923] = 5, + [162100] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6831), 1, - aux_sym__block_terminator_token1, + ACTIONS(6838), 1, + aux_sym_buffer_definition_token2, STATE(4538), 2, sym_comment, sym_include, - [164940] = 5, + [162117] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6833), 1, - sym__terminator, + ACTIONS(6840), 1, + aux_sym_buffer_definition_token2, STATE(4539), 2, sym_comment, sym_include, - [164957] = 5, + [162134] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6835), 1, - aux_sym_buffer_definition_token2, + ACTIONS(6842), 1, + aux_sym_of_token1, STATE(4540), 2, sym_comment, sym_include, - [164974] = 5, - ACTIONS(59), 1, + [162151] = 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(6837), 1, - aux_sym_buffer_definition_token2, + ACTIONS(6844), 1, + sym_identifier, STATE(4541), 2, sym_comment, sym_include, - [164991] = 5, + [162168] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6839), 1, - aux_sym_of_token1, + ACTIONS(6846), 1, + anon_sym_LPAREN, STATE(4542), 2, sym_comment, sym_include, - [165008] = 5, + [162185] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2959), 1, + ACTIONS(3071), 1, anon_sym_COLON, STATE(4543), 2, sym_comment, sym_include, - [165025] = 5, + [162202] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6841), 1, - anon_sym_LPAREN, + ACTIONS(6848), 1, + sym__terminator, STATE(4544), 2, sym_comment, sym_include, - [165042] = 5, + [162219] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6843), 1, - aux_sym_procedure_parameter_definition_token2, + ACTIONS(6850), 1, + anon_sym_LPAREN, STATE(4545), 2, sym_comment, sym_include, - [165059] = 5, + [162236] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6845), 1, - sym__terminator, + ACTIONS(6852), 1, + anon_sym_LPAREN, STATE(4546), 2, sym_comment, sym_include, - [165076] = 5, + [162253] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6847), 1, - anon_sym_LPAREN, + ACTIONS(6854), 1, + aux_sym_of_token1, STATE(4547), 2, sym_comment, sym_include, - [165093] = 5, + [162270] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - sym__terminator, + ACTIONS(3135), 1, + aux_sym__block_terminator_token1, STATE(4548), 2, sym_comment, sym_include, - [165110] = 5, - ACTIONS(3), 1, + [162287] = 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(6849), 1, - sym_identifier, + ACTIONS(6856), 1, + anon_sym_RPAREN, STATE(4549), 2, sym_comment, sym_include, - [165127] = 5, + [162304] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6851), 1, - aux_sym__block_terminator_token1, + ACTIONS(6858), 1, + sym__terminator, STATE(4550), 2, sym_comment, sym_include, - [165144] = 5, - ACTIONS(59), 1, + [162321] = 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(6853), 1, - anon_sym_RPAREN, + ACTIONS(6860), 1, + sym_identifier, STATE(4551), 2, sym_comment, sym_include, - [165161] = 5, + [162338] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6855), 1, - sym__terminator, + ACTIONS(6862), 1, + anon_sym_RPAREN, STATE(4552), 2, sym_comment, sym_include, - [165178] = 5, + [162355] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5305), 1, - sym__terminator, + ACTIONS(6864), 1, + anon_sym_RPAREN, STATE(4553), 2, sym_comment, sym_include, - [165195] = 5, - ACTIONS(59), 1, + [162372] = 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(6857), 1, - sym__terminator, + ACTIONS(6866), 1, + sym_identifier, STATE(4554), 2, sym_comment, sym_include, - [165212] = 5, + [162389] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6859), 1, + ACTIONS(6868), 1, sym_identifier, STATE(4555), 2, sym_comment, sym_include, - [165229] = 5, + [162406] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6861), 1, + ACTIONS(6870), 1, sym_identifier, STATE(4556), 2, sym_comment, sym_include, - [165246] = 5, - ACTIONS(3), 1, + [162423] = 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(6863), 1, - sym_identifier, + ACTIONS(6872), 1, + sym__terminator, STATE(4557), 2, sym_comment, sym_include, - [165263] = 5, - ACTIONS(3), 1, + [162440] = 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(6865), 1, - sym_identifier, + ACTIONS(6874), 1, + aux_sym_primitive_type_token1, STATE(4558), 2, sym_comment, sym_include, - [165280] = 5, - ACTIONS(3), 1, + [162457] = 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(6867), 1, - sym_identifier, + ACTIONS(5696), 1, + anon_sym_DOT, STATE(4559), 2, sym_comment, sym_include, - [165297] = 5, - ACTIONS(59), 1, + [162474] = 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(6869), 1, - sym__terminator, + ACTIONS(6876), 1, + sym_identifier, STATE(4560), 2, sym_comment, sym_include, - [165314] = 5, - ACTIONS(59), 1, + [162491] = 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(3774), 1, - anon_sym_COLON, + ACTIONS(6878), 1, + sym_identifier, STATE(4561), 2, sym_comment, sym_include, - [165331] = 5, + [162508] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6871), 1, + ACTIONS(6880), 1, sym_identifier, STATE(4562), 2, sym_comment, sym_include, - [165348] = 5, + [162525] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6873), 1, + ACTIONS(6882), 1, sym_identifier, STATE(4563), 2, sym_comment, sym_include, - [165365] = 5, - ACTIONS(3), 1, + [162542] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, - sym_identifier, + ACTIONS(3033), 1, + anon_sym_COLON, STATE(4564), 2, sym_comment, sym_include, - [165382] = 5, - ACTIONS(3), 1, + [162559] = 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(6877), 1, - sym_identifier, + ACTIONS(6884), 1, + anon_sym_LPAREN, STATE(4565), 2, sym_comment, sym_include, - [165399] = 5, + [162576] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6879), 1, - aux_sym__block_terminator_token1, + ACTIONS(6886), 1, + anon_sym_EQ, STATE(4566), 2, sym_comment, sym_include, - [165416] = 5, + [162593] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6881), 1, - anon_sym_LPAREN, + ACTIONS(6888), 1, + sym__terminator, STATE(4567), 2, sym_comment, sym_include, - [165433] = 5, + [162610] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6883), 1, + ACTIONS(6890), 1, sym_identifier, STATE(4568), 2, sym_comment, sym_include, - [165450] = 5, - ACTIONS(59), 1, + [162627] = 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(2606), 1, - aux_sym__block_terminator_token1, + ACTIONS(2326), 1, + sym_identifier, STATE(4569), 2, sym_comment, sym_include, - [165467] = 5, + [162644] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6885), 1, - anon_sym_LPAREN, + ACTIONS(6892), 1, + anon_sym_SLASH, STATE(4570), 2, sym_comment, sym_include, - [165484] = 5, + [162661] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6887), 1, - sym__terminator, + ACTIONS(6894), 1, + aux_sym_buffer_definition_token2, STATE(4571), 2, sym_comment, sym_include, - [165501] = 5, - ACTIONS(3), 1, + [162678] = 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(6889), 1, - sym_identifier, + ACTIONS(6896), 1, + anon_sym_RPAREN, STATE(4572), 2, sym_comment, sym_include, - [165518] = 5, + [162695] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6891), 1, - anon_sym_RBRACE, + ACTIONS(6898), 1, + sym__integer_literal, STATE(4573), 2, sym_comment, sym_include, - [165535] = 5, + [162712] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6893), 1, - sym__terminator, + ACTIONS(6900), 1, + anon_sym_LPAREN, STATE(4574), 2, sym_comment, sym_include, - [165552] = 5, + [162729] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6895), 1, - sym__terminator, + ACTIONS(6902), 1, + anon_sym_RBRACE, STATE(4575), 2, sym_comment, sym_include, - [165569] = 5, + [162746] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6897), 1, + ACTIONS(6904), 1, sym__terminator, STATE(4576), 2, sym_comment, sym_include, - [165586] = 5, + [162763] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6899), 1, - sym__terminator, + ACTIONS(6906), 1, + anon_sym_LPAREN, STATE(4577), 2, sym_comment, sym_include, - [165603] = 5, + [162780] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6901), 1, - anon_sym_EQ, + ACTIONS(6908), 1, + sym__terminator, STATE(4578), 2, sym_comment, sym_include, - [165620] = 5, - ACTIONS(3), 1, + [162797] = 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(6903), 1, - sym_identifier, + ACTIONS(6910), 1, + ts_builtin_sym_end, STATE(4579), 2, sym_comment, sym_include, - [165637] = 5, - ACTIONS(3), 1, + [162814] = 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(6905), 1, - sym_identifier, + ACTIONS(6912), 1, + anon_sym_RPAREN, STATE(4580), 2, sym_comment, sym_include, - [165654] = 5, + [162831] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6907), 1, - anon_sym_SLASH, + ACTIONS(6914), 1, + anon_sym_COLON, STATE(4581), 2, sym_comment, sym_include, - [165671] = 5, - ACTIONS(59), 1, + [162848] = 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(6909), 1, - sym__integer_literal, + ACTIONS(6916), 1, + sym_identifier, STATE(4582), 2, sym_comment, sym_include, - [165688] = 5, + [162865] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6911), 1, - anon_sym_LPAREN, + ACTIONS(6918), 1, + sym__terminator, STATE(4583), 2, sym_comment, sym_include, - [165705] = 5, + [162882] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6913), 1, - sym__terminator, + ACTIONS(6920), 1, + anon_sym_RPAREN, STATE(4584), 2, sym_comment, sym_include, - [165722] = 5, + [162899] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6915), 1, + ACTIONS(6922), 1, sym__terminator, STATE(4585), 2, sym_comment, sym_include, - [165739] = 5, - ACTIONS(59), 1, + [162916] = 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(112), 1, - anon_sym_LPAREN, + ACTIONS(6924), 1, + sym_identifier, STATE(4586), 2, sym_comment, sym_include, - [165756] = 5, - ACTIONS(3), 1, + [162933] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6917), 1, - sym_identifier, + ACTIONS(6926), 1, + sym__integer_literal, STATE(4587), 2, sym_comment, sym_include, - [165773] = 5, + [162950] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6919), 1, - sym__terminator, + ACTIONS(6928), 1, + sym__integer_literal, STATE(4588), 2, sym_comment, sym_include, - [165790] = 5, - ACTIONS(3), 1, + [162967] = 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(6921), 1, - sym_identifier, + ACTIONS(6930), 1, + anon_sym_RBRACE, STATE(4589), 2, sym_comment, sym_include, - [165807] = 5, + [162984] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6923), 1, - anon_sym_LPAREN, + ACTIONS(6932), 1, + sym__terminator, STATE(4590), 2, sym_comment, sym_include, - [165824] = 5, + [163001] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6925), 1, + ACTIONS(6934), 1, sym_identifier, STATE(4591), 2, sym_comment, sym_include, - [165841] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(6927), 1, - anon_sym_LPAREN, - STATE(4592), 2, - sym_comment, - sym_include, - [165858] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(6929), 1, - sym__terminator, - STATE(4593), 2, - sym_comment, - sym_include, - [165875] = 5, + [163018] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6931), 1, + ACTIONS(6936), 1, sym_identifier, - STATE(4594), 2, + STATE(4592), 2, sym_comment, sym_include, - [165892] = 5, + [163035] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6933), 1, + ACTIONS(6938), 1, sym_identifier, - STATE(4595), 2, + STATE(4593), 2, sym_comment, sym_include, - [165909] = 5, + [163052] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6935), 1, + ACTIONS(6940), 1, sym_identifier, - STATE(4596), 2, + STATE(4594), 2, sym_comment, sym_include, - [165926] = 5, + [163069] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6937), 1, - ts_builtin_sym_end, - STATE(4597), 2, + ACTIONS(6942), 1, + anon_sym_RBRACE, + STATE(4595), 2, sym_comment, sym_include, - [165943] = 5, + [163086] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6939), 1, + ACTIONS(6944), 1, sym__terminator, - STATE(4598), 2, + STATE(4596), 2, sym_comment, sym_include, - [165960] = 5, + [163103] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6941), 1, + ACTIONS(6946), 1, sym__terminator, - STATE(4599), 2, + STATE(4597), 2, sym_comment, sym_include, - [165977] = 5, + [163120] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6943), 1, + ACTIONS(6948), 1, sym_identifier, - STATE(4600), 2, + STATE(4598), 2, sym_comment, sym_include, - [165994] = 5, + [163137] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6945), 1, + ACTIONS(6950), 1, sym_identifier, - STATE(4601), 2, + STATE(4599), 2, sym_comment, sym_include, - [166011] = 5, + [163154] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(6952), 1, sym_identifier, - STATE(4602), 2, + STATE(4600), 2, sym_comment, sym_include, - [166028] = 5, + [163171] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6949), 1, - anon_sym_RPAREN, - STATE(4603), 2, + ACTIONS(6954), 1, + anon_sym_COLON, + STATE(4601), 2, sym_comment, sym_include, - [166045] = 5, + [163188] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6951), 1, - anon_sym_RBRACE, - STATE(4604), 2, + ACTIONS(6956), 1, + anon_sym_LPAREN, + STATE(4602), 2, sym_comment, sym_include, - [166062] = 5, + [163205] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6953), 1, - aux_sym__block_terminator_token1, - STATE(4605), 2, + ACTIONS(6958), 1, + sym__terminator, + STATE(4603), 2, sym_comment, sym_include, - [166079] = 5, + [163222] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6955), 1, - anon_sym_COLON, - STATE(4606), 2, + ACTIONS(6960), 1, + sym__terminator, + STATE(4604), 2, sym_comment, sym_include, - [166096] = 5, + [163239] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6957), 1, + ACTIONS(6962), 1, sym_identifier, - STATE(4607), 2, + STATE(4605), 2, sym_comment, sym_include, - [166113] = 5, + [163256] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6959), 1, + ACTIONS(6964), 1, sym_identifier, - STATE(4608), 2, + STATE(4606), 2, sym_comment, sym_include, - [166130] = 5, + [163273] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6961), 1, + ACTIONS(6966), 1, sym_identifier, - STATE(4609), 2, + STATE(4607), 2, sym_comment, sym_include, - [166147] = 5, + [163290] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6963), 1, + ACTIONS(6968), 1, sym_identifier, - STATE(4610), 2, + STATE(4608), 2, sym_comment, sym_include, - [166164] = 5, + [163307] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6965), 1, - anon_sym_RPAREN, - STATE(4611), 2, + ACTIONS(6970), 1, + sym__terminator, + STATE(4609), 2, sym_comment, sym_include, - [166181] = 5, - ACTIONS(59), 1, + [163324] = 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(5263), 1, - sym__terminator, - STATE(4612), 2, + ACTIONS(6972), 1, + sym_identifier, + STATE(4610), 2, sym_comment, sym_include, - [166198] = 5, - ACTIONS(59), 1, + [163341] = 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(6073), 1, - anon_sym_DOT, - STATE(4613), 2, + ACTIONS(6974), 1, + sym_identifier, + STATE(4611), 2, sym_comment, sym_include, - [166215] = 5, + [163358] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6967), 1, + ACTIONS(6976), 1, sym_identifier, - STATE(4614), 2, + STATE(4612), 2, sym_comment, sym_include, - [166232] = 5, + [163375] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6969), 1, + ACTIONS(6978), 1, sym_identifier, - STATE(4615), 2, + STATE(4613), 2, sym_comment, sym_include, - [166249] = 5, + [163392] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6971), 1, + ACTIONS(6980), 1, sym_identifier, - STATE(4616), 2, + STATE(4614), 2, sym_comment, sym_include, - [166266] = 5, + [163409] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6973), 1, - anon_sym_RBRACE, - STATE(4617), 2, + ACTIONS(3269), 1, + anon_sym_COLON, + STATE(4615), 2, sym_comment, sym_include, - [166283] = 5, + [163426] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6975), 1, - anon_sym_RBRACE, - STATE(4618), 2, + ACTIONS(6982), 1, + sym__terminator, + STATE(4616), 2, sym_comment, sym_include, - [166300] = 5, + [163443] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6977), 1, - aux_sym__block_terminator_token1, - STATE(4619), 2, + ACTIONS(6984), 1, + sym__terminator, + STATE(4617), 2, sym_comment, sym_include, - [166317] = 5, + [163460] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6979), 1, + ACTIONS(6986), 1, sym_identifier, - STATE(4620), 2, + STATE(4618), 2, sym_comment, sym_include, - [166334] = 5, + [163477] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6981), 1, + ACTIONS(6988), 1, anon_sym_RPAREN, - STATE(4621), 2, + STATE(4619), 2, sym_comment, sym_include, - [166351] = 5, + [163494] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6983), 1, + ACTIONS(6990), 1, sym_identifier, - STATE(4622), 2, + STATE(4620), 2, sym_comment, sym_include, - [166368] = 5, + [163511] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6985), 1, + ACTIONS(6992), 1, sym_identifier, - STATE(4623), 2, + STATE(4621), 2, sym_comment, sym_include, - [166385] = 5, + [163528] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6987), 1, + ACTIONS(6994), 1, sym_identifier, - STATE(4624), 2, + STATE(4622), 2, sym_comment, sym_include, - [166402] = 5, + [163545] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6989), 1, - anon_sym_RBRACE, - STATE(4625), 2, + ACTIONS(6996), 1, + sym__terminator, + STATE(4623), 2, sym_comment, sym_include, - [166419] = 5, + [163562] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6991), 1, - sym__integer_literal, - STATE(4626), 2, + ACTIONS(6998), 1, + sym__terminator, + STATE(4624), 2, sym_comment, sym_include, - [166436] = 5, + [163579] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7000), 1, sym__terminator, - STATE(4627), 2, + STATE(4625), 2, sym_comment, sym_include, - [166453] = 5, + [163596] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6995), 1, + ACTIONS(7002), 1, sym_identifier, - STATE(4628), 2, + STATE(4626), 2, sym_comment, sym_include, - [166470] = 5, + [163613] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6997), 1, + ACTIONS(7004), 1, sym_identifier, - STATE(4629), 2, + STATE(4627), 2, sym_comment, sym_include, - [166487] = 5, + [163630] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6999), 1, + ACTIONS(7006), 1, sym_identifier, - STATE(4630), 2, - sym_comment, - sym_include, - [166504] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(7001), 1, - anon_sym_RPAREN, - STATE(4631), 2, + STATE(4628), 2, sym_comment, sym_include, - [166521] = 5, + [163647] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7003), 1, + ACTIONS(7008), 1, sym_identifier, - STATE(4632), 2, + STATE(4629), 2, sym_comment, sym_include, - [166538] = 5, + [163664] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7005), 1, + ACTIONS(7010), 1, sym_identifier, - STATE(4633), 2, + STATE(4630), 2, sym_comment, sym_include, - [166555] = 5, + [163681] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7007), 1, - aux_sym__block_terminator_token1, - STATE(4634), 2, + ACTIONS(7012), 1, + anon_sym_RBRACE, + STATE(4631), 2, sym_comment, sym_include, - [166572] = 5, - ACTIONS(3), 1, + [163698] = 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(7009), 1, - sym_identifier, - STATE(4635), 2, + ACTIONS(5232), 1, + sym__terminator, + STATE(4632), 2, sym_comment, sym_include, - [166589] = 5, + [163715] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7011), 1, + ACTIONS(7014), 1, aux_sym_procedure_parameter_definition_token2, - STATE(4636), 2, + STATE(4633), 2, sym_comment, sym_include, - [166606] = 5, + [163732] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5231), 1, + ACTIONS(7016), 1, sym__terminator, - STATE(4637), 2, + STATE(4634), 2, sym_comment, sym_include, - [166623] = 5, + [163749] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7013), 1, + ACTIONS(7018), 1, aux_sym_variable_definition_token5, - STATE(4638), 2, + STATE(4635), 2, sym_comment, sym_include, - [166640] = 5, + [163766] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7015), 1, - sym__terminator, - STATE(4639), 2, + ACTIONS(7020), 1, + anon_sym_RPAREN, + STATE(4636), 2, sym_comment, sym_include, - [166657] = 5, - ACTIONS(59), 1, + [163783] = 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(7017), 1, - sym__terminator, - STATE(4640), 2, + ACTIONS(7022), 1, + sym_identifier, + STATE(4637), 2, sym_comment, sym_include, - [166674] = 5, + [163800] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7019), 1, + ACTIONS(7024), 1, sym__terminator, - STATE(4641), 2, - sym_comment, - sym_include, - [166691] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(7021), 1, - anon_sym_RPAREN, - STATE(4642), 2, + STATE(4638), 2, sym_comment, sym_include, - [166708] = 5, + [163817] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7023), 1, + ACTIONS(7026), 1, sym__terminator, - STATE(4643), 2, + STATE(4639), 2, sym_comment, sym_include, - [166725] = 5, + [163834] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7025), 1, + ACTIONS(7028), 1, sym_identifier, - STATE(4644), 2, + STATE(4640), 2, sym_comment, sym_include, - [166742] = 5, + [163851] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7027), 1, - sym__terminator, - STATE(4645), 2, + ACTIONS(5246), 1, + anon_sym_DOT, + STATE(4641), 2, + sym_comment, + sym_include, + [163868] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(7030), 1, + sym_identifier, + STATE(4642), 2, sym_comment, sym_include, - [166759] = 5, + [163885] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7029), 1, + ACTIONS(7032), 1, sym_file_name, - STATE(4646), 2, + STATE(4643), 2, sym_comment, sym_include, - [166776] = 5, + [163902] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7031), 1, + ACTIONS(7034), 1, sym__terminator, - STATE(4647), 2, + STATE(4644), 2, sym_comment, sym_include, - [166793] = 5, + [163919] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7033), 1, + ACTIONS(7036), 1, aux_sym_comment_token2, - STATE(4648), 2, + STATE(4645), 2, sym_comment, sym_include, - [166810] = 1, - ACTIONS(7035), 1, + [163936] = 1, + ACTIONS(7038), 1, ts_builtin_sym_end, - [166814] = 1, - ACTIONS(7037), 1, + [163940] = 1, + ACTIONS(7040), 1, ts_builtin_sym_end, - [166818] = 1, - ACTIONS(7039), 1, + [163944] = 1, + ACTIONS(7042), 1, ts_builtin_sym_end, - [166822] = 1, - ACTIONS(7041), 1, + [163948] = 1, + ACTIONS(7044), 1, ts_builtin_sym_end, }; @@ -176182,7789 +172562,7787 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(306)] = 2080, [SMALL_STATE(307)] = 2210, [SMALL_STATE(308)] = 2340, - [SMALL_STATE(309)] = 2469, - [SMALL_STATE(310)] = 2598, - [SMALL_STATE(311)] = 2727, - [SMALL_STATE(312)] = 2856, - [SMALL_STATE(313)] = 2985, - [SMALL_STATE(314)] = 3109, - [SMALL_STATE(315)] = 3191, - [SMALL_STATE(316)] = 3267, - [SMALL_STATE(317)] = 3341, - [SMALL_STATE(318)] = 3417, - [SMALL_STATE(319)] = 3495, - [SMALL_STATE(320)] = 3577, - [SMALL_STATE(321)] = 3657, - [SMALL_STATE(322)] = 3733, - [SMALL_STATE(323)] = 3815, - [SMALL_STATE(324)] = 3897, - [SMALL_STATE(325)] = 3979, - [SMALL_STATE(326)] = 4061, - [SMALL_STATE(327)] = 4143, - [SMALL_STATE(328)] = 4258, - [SMALL_STATE(329)] = 4375, - [SMALL_STATE(330)] = 4492, - [SMALL_STATE(331)] = 4607, - [SMALL_STATE(332)] = 4724, - [SMALL_STATE(333)] = 4839, - [SMALL_STATE(334)] = 4954, - [SMALL_STATE(335)] = 5071, - [SMALL_STATE(336)] = 5186, - [SMALL_STATE(337)] = 5303, - [SMALL_STATE(338)] = 5415, - [SMALL_STATE(339)] = 5529, - [SMALL_STATE(340)] = 5641, - [SMALL_STATE(341)] = 5755, - [SMALL_STATE(342)] = 5821, - [SMALL_STATE(343)] = 5933, - [SMALL_STATE(344)] = 6047, - [SMALL_STATE(345)] = 6113, - [SMALL_STATE(346)] = 6227, - [SMALL_STATE(347)] = 6295, - [SMALL_STATE(348)] = 6407, - [SMALL_STATE(349)] = 6475, - [SMALL_STATE(350)] = 6589, - [SMALL_STATE(351)] = 6657, - [SMALL_STATE(352)] = 6725, - [SMALL_STATE(353)] = 6836, - [SMALL_STATE(354)] = 6947, - [SMALL_STATE(355)] = 7042, - [SMALL_STATE(356)] = 7153, - [SMALL_STATE(357)] = 7264, - [SMALL_STATE(358)] = 7375, - [SMALL_STATE(359)] = 7486, - [SMALL_STATE(360)] = 7597, - [SMALL_STATE(361)] = 7708, - [SMALL_STATE(362)] = 7819, - [SMALL_STATE(363)] = 7930, - [SMALL_STATE(364)] = 8041, - [SMALL_STATE(365)] = 8152, - [SMALL_STATE(366)] = 8263, - [SMALL_STATE(367)] = 8374, - [SMALL_STATE(368)] = 8439, - [SMALL_STATE(369)] = 8550, - [SMALL_STATE(370)] = 8661, - [SMALL_STATE(371)] = 8772, - [SMALL_STATE(372)] = 8883, - [SMALL_STATE(373)] = 8978, - [SMALL_STATE(374)] = 9043, - [SMALL_STATE(375)] = 9154, - [SMALL_STATE(376)] = 9265, - [SMALL_STATE(377)] = 9376, - [SMALL_STATE(378)] = 9487, - [SMALL_STATE(379)] = 9598, - [SMALL_STATE(380)] = 9709, - [SMALL_STATE(381)] = 9820, - [SMALL_STATE(382)] = 9931, - [SMALL_STATE(383)] = 10026, - [SMALL_STATE(384)] = 10137, - [SMALL_STATE(385)] = 10248, - [SMALL_STATE(386)] = 10359, - [SMALL_STATE(387)] = 10470, - [SMALL_STATE(388)] = 10581, - [SMALL_STATE(389)] = 10676, - [SMALL_STATE(390)] = 10787, - [SMALL_STATE(391)] = 10898, - [SMALL_STATE(392)] = 11009, - [SMALL_STATE(393)] = 11120, - [SMALL_STATE(394)] = 11231, - [SMALL_STATE(395)] = 11342, - [SMALL_STATE(396)] = 11453, - [SMALL_STATE(397)] = 11564, - [SMALL_STATE(398)] = 11675, - [SMALL_STATE(399)] = 11786, - [SMALL_STATE(400)] = 11897, - [SMALL_STATE(401)] = 12008, - [SMALL_STATE(402)] = 12103, - [SMALL_STATE(403)] = 12168, - [SMALL_STATE(404)] = 12279, - [SMALL_STATE(405)] = 12390, - [SMALL_STATE(406)] = 12485, - [SMALL_STATE(407)] = 12596, - [SMALL_STATE(408)] = 12707, - [SMALL_STATE(409)] = 12802, - [SMALL_STATE(410)] = 12913, - [SMALL_STATE(411)] = 13024, - [SMALL_STATE(412)] = 13135, - [SMALL_STATE(413)] = 13246, - [SMALL_STATE(414)] = 13357, - [SMALL_STATE(415)] = 13468, - [SMALL_STATE(416)] = 13579, - [SMALL_STATE(417)] = 13690, - [SMALL_STATE(418)] = 13801, - [SMALL_STATE(419)] = 13912, - [SMALL_STATE(420)] = 14023, - [SMALL_STATE(421)] = 14134, - [SMALL_STATE(422)] = 14245, - [SMALL_STATE(423)] = 14356, - [SMALL_STATE(424)] = 14467, - [SMALL_STATE(425)] = 14578, - [SMALL_STATE(426)] = 14689, - [SMALL_STATE(427)] = 14800, - [SMALL_STATE(428)] = 14911, - [SMALL_STATE(429)] = 15022, - [SMALL_STATE(430)] = 15133, - [SMALL_STATE(431)] = 15244, - [SMALL_STATE(432)] = 15355, - [SMALL_STATE(433)] = 15466, - [SMALL_STATE(434)] = 15577, - [SMALL_STATE(435)] = 15688, - [SMALL_STATE(436)] = 15799, - [SMALL_STATE(437)] = 15910, - [SMALL_STATE(438)] = 16021, - [SMALL_STATE(439)] = 16132, - [SMALL_STATE(440)] = 16243, - [SMALL_STATE(441)] = 16354, - [SMALL_STATE(442)] = 16465, - [SMALL_STATE(443)] = 16576, - [SMALL_STATE(444)] = 16687, - [SMALL_STATE(445)] = 16798, - [SMALL_STATE(446)] = 16909, - [SMALL_STATE(447)] = 17020, - [SMALL_STATE(448)] = 17131, - [SMALL_STATE(449)] = 17242, - [SMALL_STATE(450)] = 17353, - [SMALL_STATE(451)] = 17464, - [SMALL_STATE(452)] = 17575, - [SMALL_STATE(453)] = 17686, - [SMALL_STATE(454)] = 17797, - [SMALL_STATE(455)] = 17908, - [SMALL_STATE(456)] = 18019, - [SMALL_STATE(457)] = 18130, - [SMALL_STATE(458)] = 18241, - [SMALL_STATE(459)] = 18306, - [SMALL_STATE(460)] = 18417, - [SMALL_STATE(461)] = 18528, - [SMALL_STATE(462)] = 18639, - [SMALL_STATE(463)] = 18750, - [SMALL_STATE(464)] = 18861, - [SMALL_STATE(465)] = 18972, - [SMALL_STATE(466)] = 19083, - [SMALL_STATE(467)] = 19194, - [SMALL_STATE(468)] = 19305, - [SMALL_STATE(469)] = 19416, - [SMALL_STATE(470)] = 19527, - [SMALL_STATE(471)] = 19638, - [SMALL_STATE(472)] = 19749, - [SMALL_STATE(473)] = 19860, - [SMALL_STATE(474)] = 19971, - [SMALL_STATE(475)] = 20082, - [SMALL_STATE(476)] = 20193, - [SMALL_STATE(477)] = 20304, - [SMALL_STATE(478)] = 20415, - [SMALL_STATE(479)] = 20526, - [SMALL_STATE(480)] = 20637, - [SMALL_STATE(481)] = 20748, - [SMALL_STATE(482)] = 20859, - [SMALL_STATE(483)] = 20970, - [SMALL_STATE(484)] = 21081, - [SMALL_STATE(485)] = 21192, - [SMALL_STATE(486)] = 21303, - [SMALL_STATE(487)] = 21398, - [SMALL_STATE(488)] = 21509, - [SMALL_STATE(489)] = 21620, - [SMALL_STATE(490)] = 21731, - [SMALL_STATE(491)] = 21796, - [SMALL_STATE(492)] = 21907, - [SMALL_STATE(493)] = 22018, - [SMALL_STATE(494)] = 22129, - [SMALL_STATE(495)] = 22224, - [SMALL_STATE(496)] = 22335, - [SMALL_STATE(497)] = 22446, - [SMALL_STATE(498)] = 22557, - [SMALL_STATE(499)] = 22668, - [SMALL_STATE(500)] = 22779, - [SMALL_STATE(501)] = 22890, - [SMALL_STATE(502)] = 23001, - [SMALL_STATE(503)] = 23112, - [SMALL_STATE(504)] = 23223, - [SMALL_STATE(505)] = 23334, - [SMALL_STATE(506)] = 23445, - [SMALL_STATE(507)] = 23556, - [SMALL_STATE(508)] = 23667, - [SMALL_STATE(509)] = 23778, - [SMALL_STATE(510)] = 23889, - [SMALL_STATE(511)] = 24000, - [SMALL_STATE(512)] = 24111, - [SMALL_STATE(513)] = 24222, - [SMALL_STATE(514)] = 24333, - [SMALL_STATE(515)] = 24444, - [SMALL_STATE(516)] = 24555, - [SMALL_STATE(517)] = 24666, - [SMALL_STATE(518)] = 24777, - [SMALL_STATE(519)] = 24888, - [SMALL_STATE(520)] = 24999, - [SMALL_STATE(521)] = 25110, - [SMALL_STATE(522)] = 25221, - [SMALL_STATE(523)] = 25332, - [SMALL_STATE(524)] = 25443, - [SMALL_STATE(525)] = 25538, - [SMALL_STATE(526)] = 25649, - [SMALL_STATE(527)] = 25760, - [SMALL_STATE(528)] = 25871, - [SMALL_STATE(529)] = 25982, - [SMALL_STATE(530)] = 26093, - [SMALL_STATE(531)] = 26204, - [SMALL_STATE(532)] = 26315, - [SMALL_STATE(533)] = 26426, - [SMALL_STATE(534)] = 26537, - [SMALL_STATE(535)] = 26648, - [SMALL_STATE(536)] = 26759, - [SMALL_STATE(537)] = 26870, - [SMALL_STATE(538)] = 26981, - [SMALL_STATE(539)] = 27092, - [SMALL_STATE(540)] = 27203, - [SMALL_STATE(541)] = 27314, - [SMALL_STATE(542)] = 27425, - [SMALL_STATE(543)] = 27536, - [SMALL_STATE(544)] = 27647, - [SMALL_STATE(545)] = 27758, - [SMALL_STATE(546)] = 27869, - [SMALL_STATE(547)] = 27980, - [SMALL_STATE(548)] = 28091, - [SMALL_STATE(549)] = 28202, - [SMALL_STATE(550)] = 28313, - [SMALL_STATE(551)] = 28424, - [SMALL_STATE(552)] = 28535, - [SMALL_STATE(553)] = 28646, - [SMALL_STATE(554)] = 28757, - [SMALL_STATE(555)] = 28821, - [SMALL_STATE(556)] = 28883, - [SMALL_STATE(557)] = 28969, - [SMALL_STATE(558)] = 29031, - [SMALL_STATE(559)] = 29093, - [SMALL_STATE(560)] = 29155, - [SMALL_STATE(561)] = 29217, - [SMALL_STATE(562)] = 29279, - [SMALL_STATE(563)] = 29341, - [SMALL_STATE(564)] = 29403, - [SMALL_STATE(565)] = 29465, - [SMALL_STATE(566)] = 29527, - [SMALL_STATE(567)] = 29589, - [SMALL_STATE(568)] = 29651, - [SMALL_STATE(569)] = 29713, - [SMALL_STATE(570)] = 29775, - [SMALL_STATE(571)] = 29837, - [SMALL_STATE(572)] = 29899, - [SMALL_STATE(573)] = 29961, - [SMALL_STATE(574)] = 30023, - [SMALL_STATE(575)] = 30087, - [SMALL_STATE(576)] = 30149, - [SMALL_STATE(577)] = 30211, - [SMALL_STATE(578)] = 30273, - [SMALL_STATE(579)] = 30335, - [SMALL_STATE(580)] = 30397, - [SMALL_STATE(581)] = 30459, - [SMALL_STATE(582)] = 30521, - [SMALL_STATE(583)] = 30583, - [SMALL_STATE(584)] = 30645, - [SMALL_STATE(585)] = 30707, - [SMALL_STATE(586)] = 30769, - [SMALL_STATE(587)] = 30831, - [SMALL_STATE(588)] = 30914, - [SMALL_STATE(589)] = 30997, - [SMALL_STATE(590)] = 31080, - [SMALL_STATE(591)] = 31176, - [SMALL_STATE(592)] = 31272, - [SMALL_STATE(593)] = 31344, - [SMALL_STATE(594)] = 31440, - [SMALL_STATE(595)] = 31536, - [SMALL_STATE(596)] = 31632, - [SMALL_STATE(597)] = 31728, - [SMALL_STATE(598)] = 31824, - [SMALL_STATE(599)] = 31920, - [SMALL_STATE(600)] = 32016, - [SMALL_STATE(601)] = 32088, - [SMALL_STATE(602)] = 32184, - [SMALL_STATE(603)] = 32280, - [SMALL_STATE(604)] = 32376, - [SMALL_STATE(605)] = 32472, - [SMALL_STATE(606)] = 32568, - [SMALL_STATE(607)] = 32649, - [SMALL_STATE(608)] = 32730, - [SMALL_STATE(609)] = 32811, - [SMALL_STATE(610)] = 32886, - [SMALL_STATE(611)] = 32955, - [SMALL_STATE(612)] = 33028, - [SMALL_STATE(613)] = 33109, - [SMALL_STATE(614)] = 33188, - [SMALL_STATE(615)] = 33269, - [SMALL_STATE(616)] = 33350, - [SMALL_STATE(617)] = 33431, - [SMALL_STATE(618)] = 33493, - [SMALL_STATE(619)] = 33557, - [SMALL_STATE(620)] = 33644, - [SMALL_STATE(621)] = 33713, - [SMALL_STATE(622)] = 33776, - [SMALL_STATE(623)] = 33839, - [SMALL_STATE(624)] = 33926, - [SMALL_STATE(625)] = 33987, - [SMALL_STATE(626)] = 34074, - [SMALL_STATE(627)] = 34161, - [SMALL_STATE(628)] = 34248, - [SMALL_STATE(629)] = 34335, - [SMALL_STATE(630)] = 34422, - [SMALL_STATE(631)] = 34509, - [SMALL_STATE(632)] = 34596, - [SMALL_STATE(633)] = 34665, - [SMALL_STATE(634)] = 34728, - [SMALL_STATE(635)] = 34815, - [SMALL_STATE(636)] = 34874, - [SMALL_STATE(637)] = 34948, - [SMALL_STATE(638)] = 35024, - [SMALL_STATE(639)] = 35100, - [SMALL_STATE(640)] = 35160, - [SMALL_STATE(641)] = 35230, - [SMALL_STATE(642)] = 35296, - [SMALL_STATE(643)] = 35372, - [SMALL_STATE(644)] = 35448, - [SMALL_STATE(645)] = 35508, - [SMALL_STATE(646)] = 35568, - [SMALL_STATE(647)] = 35640, - [SMALL_STATE(648)] = 35716, - [SMALL_STATE(649)] = 35792, - [SMALL_STATE(650)] = 35868, - [SMALL_STATE(651)] = 35944, - [SMALL_STATE(652)] = 36020, - [SMALL_STATE(653)] = 36096, - [SMALL_STATE(654)] = 36166, - [SMALL_STATE(655)] = 36226, - [SMALL_STATE(656)] = 36292, - [SMALL_STATE(657)] = 36366, - [SMALL_STATE(658)] = 36438, - [SMALL_STATE(659)] = 36516, - [SMALL_STATE(660)] = 36592, - [SMALL_STATE(661)] = 36652, - [SMALL_STATE(662)] = 36728, - [SMALL_STATE(663)] = 36786, - [SMALL_STATE(664)] = 36862, - [SMALL_STATE(665)] = 36938, - [SMALL_STATE(666)] = 36995, - [SMALL_STATE(667)] = 37052, - [SMALL_STATE(668)] = 37109, - [SMALL_STATE(669)] = 37166, - [SMALL_STATE(670)] = 37223, - [SMALL_STATE(671)] = 37312, - [SMALL_STATE(672)] = 37401, - [SMALL_STATE(673)] = 37458, - [SMALL_STATE(674)] = 37515, - [SMALL_STATE(675)] = 37572, - [SMALL_STATE(676)] = 37629, - [SMALL_STATE(677)] = 37686, - [SMALL_STATE(678)] = 37743, - [SMALL_STATE(679)] = 37800, - [SMALL_STATE(680)] = 37857, - [SMALL_STATE(681)] = 37914, - [SMALL_STATE(682)] = 37971, - [SMALL_STATE(683)] = 38028, - [SMALL_STATE(684)] = 38085, - [SMALL_STATE(685)] = 38174, - [SMALL_STATE(686)] = 38231, - [SMALL_STATE(687)] = 38288, - [SMALL_STATE(688)] = 38363, - [SMALL_STATE(689)] = 38420, - [SMALL_STATE(690)] = 38477, - [SMALL_STATE(691)] = 38534, - [SMALL_STATE(692)] = 38623, - [SMALL_STATE(693)] = 38680, - [SMALL_STATE(694)] = 38769, - [SMALL_STATE(695)] = 38826, - [SMALL_STATE(696)] = 38883, - [SMALL_STATE(697)] = 38940, - [SMALL_STATE(698)] = 39029, - [SMALL_STATE(699)] = 39086, - [SMALL_STATE(700)] = 39161, - [SMALL_STATE(701)] = 39218, - [SMALL_STATE(702)] = 39275, - [SMALL_STATE(703)] = 39364, - [SMALL_STATE(704)] = 39453, - [SMALL_STATE(705)] = 39542, - [SMALL_STATE(706)] = 39631, - [SMALL_STATE(707)] = 39720, - [SMALL_STATE(708)] = 39781, - [SMALL_STATE(709)] = 39838, - [SMALL_STATE(710)] = 39927, - [SMALL_STATE(711)] = 40016, - [SMALL_STATE(712)] = 40091, - [SMALL_STATE(713)] = 40150, - [SMALL_STATE(714)] = 40239, - [SMALL_STATE(715)] = 40328, - [SMALL_STATE(716)] = 40388, - [SMALL_STATE(717)] = 40444, - [SMALL_STATE(718)] = 40518, - [SMALL_STATE(719)] = 40578, - [SMALL_STATE(720)] = 40635, - [SMALL_STATE(721)] = 40692, - [SMALL_STATE(722)] = 40749, - [SMALL_STATE(723)] = 40806, - [SMALL_STATE(724)] = 40863, - [SMALL_STATE(725)] = 40920, - [SMALL_STATE(726)] = 40977, - [SMALL_STATE(727)] = 41031, - [SMALL_STATE(728)] = 41085, - [SMALL_STATE(729)] = 41157, - [SMALL_STATE(730)] = 41211, - [SMALL_STATE(731)] = 41265, - [SMALL_STATE(732)] = 41319, - [SMALL_STATE(733)] = 41373, - [SMALL_STATE(734)] = 41427, - [SMALL_STATE(735)] = 41481, - [SMALL_STATE(736)] = 41535, - [SMALL_STATE(737)] = 41589, - [SMALL_STATE(738)] = 41643, - [SMALL_STATE(739)] = 41697, - [SMALL_STATE(740)] = 41751, - [SMALL_STATE(741)] = 41805, - [SMALL_STATE(742)] = 41859, - [SMALL_STATE(743)] = 41913, - [SMALL_STATE(744)] = 41967, - [SMALL_STATE(745)] = 42021, - [SMALL_STATE(746)] = 42085, - [SMALL_STATE(747)] = 42149, - [SMALL_STATE(748)] = 42203, - [SMALL_STATE(749)] = 42257, - [SMALL_STATE(750)] = 42311, - [SMALL_STATE(751)] = 42365, - [SMALL_STATE(752)] = 42419, - [SMALL_STATE(753)] = 42473, - [SMALL_STATE(754)] = 42527, - [SMALL_STATE(755)] = 42581, - [SMALL_STATE(756)] = 42635, - [SMALL_STATE(757)] = 42689, - [SMALL_STATE(758)] = 42743, - [SMALL_STATE(759)] = 42797, - [SMALL_STATE(760)] = 42868, - [SMALL_STATE(761)] = 42939, - [SMALL_STATE(762)] = 43000, - [SMALL_STATE(763)] = 43069, - [SMALL_STATE(764)] = 43140, - [SMALL_STATE(765)] = 43211, - [SMALL_STATE(766)] = 43282, - [SMALL_STATE(767)] = 43343, - [SMALL_STATE(768)] = 43416, - [SMALL_STATE(769)] = 43487, - [SMALL_STATE(770)] = 43554, - [SMALL_STATE(771)] = 43615, - [SMALL_STATE(772)] = 43680, - [SMALL_STATE(773)] = 43732, - [SMALL_STATE(774)] = 43790, - [SMALL_STATE(775)] = 43856, - [SMALL_STATE(776)] = 43926, - [SMALL_STATE(777)] = 43990, - [SMALL_STATE(778)] = 44040, - [SMALL_STATE(779)] = 44106, - [SMALL_STATE(780)] = 44164, - [SMALL_STATE(781)] = 44230, - [SMALL_STATE(782)] = 44296, - [SMALL_STATE(783)] = 44356, - [SMALL_STATE(784)] = 44414, - [SMALL_STATE(785)] = 44476, - [SMALL_STATE(786)] = 44542, - [SMALL_STATE(787)] = 44608, - [SMALL_STATE(788)] = 44674, - [SMALL_STATE(789)] = 44737, - [SMALL_STATE(790)] = 44796, - [SMALL_STATE(791)] = 44845, - [SMALL_STATE(792)] = 44920, - [SMALL_STATE(793)] = 44973, - [SMALL_STATE(794)] = 45042, - [SMALL_STATE(795)] = 45095, - [SMALL_STATE(796)] = 45158, - [SMALL_STATE(797)] = 45221, - [SMALL_STATE(798)] = 45284, - [SMALL_STATE(799)] = 45339, - [SMALL_STATE(800)] = 45436, - [SMALL_STATE(801)] = 45499, - [SMALL_STATE(802)] = 45574, - [SMALL_STATE(803)] = 45635, - [SMALL_STATE(804)] = 45698, - [SMALL_STATE(805)] = 45761, - [SMALL_STATE(806)] = 45820, - [SMALL_STATE(807)] = 45875, - [SMALL_STATE(808)] = 45926, - [SMALL_STATE(809)] = 45983, - [SMALL_STATE(810)] = 46038, - [SMALL_STATE(811)] = 46113, - [SMALL_STATE(812)] = 46172, - [SMALL_STATE(813)] = 46247, - [SMALL_STATE(814)] = 46302, - [SMALL_STATE(815)] = 46377, - [SMALL_STATE(816)] = 46441, - [SMALL_STATE(817)] = 46491, - [SMALL_STATE(818)] = 46541, - [SMALL_STATE(819)] = 46593, - [SMALL_STATE(820)] = 46655, - [SMALL_STATE(821)] = 46719, - [SMALL_STATE(822)] = 46783, - [SMALL_STATE(823)] = 46831, - [SMALL_STATE(824)] = 46883, - [SMALL_STATE(825)] = 46947, - [SMALL_STATE(826)] = 47015, - [SMALL_STATE(827)] = 47065, - [SMALL_STATE(828)] = 47125, - [SMALL_STATE(829)] = 47181, - [SMALL_STATE(830)] = 47245, - [SMALL_STATE(831)] = 47303, - [SMALL_STATE(832)] = 47367, - [SMALL_STATE(833)] = 47417, - [SMALL_STATE(834)] = 47469, - [SMALL_STATE(835)] = 47533, - [SMALL_STATE(836)] = 47582, - [SMALL_STATE(837)] = 47631, - [SMALL_STATE(838)] = 47680, - [SMALL_STATE(839)] = 47729, - [SMALL_STATE(840)] = 47778, - [SMALL_STATE(841)] = 47827, - [SMALL_STATE(842)] = 47876, - [SMALL_STATE(843)] = 47943, - [SMALL_STATE(844)] = 48010, - [SMALL_STATE(845)] = 48077, - [SMALL_STATE(846)] = 48126, - [SMALL_STATE(847)] = 48175, - [SMALL_STATE(848)] = 48222, - [SMALL_STATE(849)] = 48269, - [SMALL_STATE(850)] = 48336, - [SMALL_STATE(851)] = 48387, - [SMALL_STATE(852)] = 48436, - [SMALL_STATE(853)] = 48502, - [SMALL_STATE(854)] = 48548, - [SMALL_STATE(855)] = 48606, - [SMALL_STATE(856)] = 48672, - [SMALL_STATE(857)] = 48730, - [SMALL_STATE(858)] = 48796, - [SMALL_STATE(859)] = 48854, - [SMALL_STATE(860)] = 48920, - [SMALL_STATE(861)] = 48986, - [SMALL_STATE(862)] = 49052, - [SMALL_STATE(863)] = 49110, - [SMALL_STATE(864)] = 49176, - [SMALL_STATE(865)] = 49242, - [SMALL_STATE(866)] = 49308, - [SMALL_STATE(867)] = 49374, - [SMALL_STATE(868)] = 49440, - [SMALL_STATE(869)] = 49506, - [SMALL_STATE(870)] = 49572, - [SMALL_STATE(871)] = 49638, - [SMALL_STATE(872)] = 49704, - [SMALL_STATE(873)] = 49770, - [SMALL_STATE(874)] = 49816, - [SMALL_STATE(875)] = 49862, - [SMALL_STATE(876)] = 49908, - [SMALL_STATE(877)] = 49954, - [SMALL_STATE(878)] = 50012, - [SMALL_STATE(879)] = 50078, - [SMALL_STATE(880)] = 50144, - [SMALL_STATE(881)] = 50210, - [SMALL_STATE(882)] = 50276, - [SMALL_STATE(883)] = 50342, - [SMALL_STATE(884)] = 50408, - [SMALL_STATE(885)] = 50474, - [SMALL_STATE(886)] = 50540, - [SMALL_STATE(887)] = 50606, - [SMALL_STATE(888)] = 50672, - [SMALL_STATE(889)] = 50738, - [SMALL_STATE(890)] = 50804, - [SMALL_STATE(891)] = 50870, - [SMALL_STATE(892)] = 50936, - [SMALL_STATE(893)] = 51002, - [SMALL_STATE(894)] = 51068, - [SMALL_STATE(895)] = 51134, - [SMALL_STATE(896)] = 51200, - [SMALL_STATE(897)] = 51254, - [SMALL_STATE(898)] = 51300, - [SMALL_STATE(899)] = 51346, - [SMALL_STATE(900)] = 51392, - [SMALL_STATE(901)] = 51438, - [SMALL_STATE(902)] = 51504, - [SMALL_STATE(903)] = 51570, - [SMALL_STATE(904)] = 51636, - [SMALL_STATE(905)] = 51720, - [SMALL_STATE(906)] = 51786, - [SMALL_STATE(907)] = 51852, - [SMALL_STATE(908)] = 51898, - [SMALL_STATE(909)] = 51944, - [SMALL_STATE(910)] = 51998, - [SMALL_STATE(911)] = 52044, - [SMALL_STATE(912)] = 52090, - [SMALL_STATE(913)] = 52136, - [SMALL_STATE(914)] = 52184, - [SMALL_STATE(915)] = 52230, - [SMALL_STATE(916)] = 52276, - [SMALL_STATE(917)] = 52328, - [SMALL_STATE(918)] = 52380, - [SMALL_STATE(919)] = 52426, - [SMALL_STATE(920)] = 52476, - [SMALL_STATE(921)] = 52522, - [SMALL_STATE(922)] = 52568, - [SMALL_STATE(923)] = 52614, - [SMALL_STATE(924)] = 52664, - [SMALL_STATE(925)] = 52710, - [SMALL_STATE(926)] = 52756, - [SMALL_STATE(927)] = 52806, - [SMALL_STATE(928)] = 52856, - [SMALL_STATE(929)] = 52902, - [SMALL_STATE(930)] = 52948, - [SMALL_STATE(931)] = 53000, - [SMALL_STATE(932)] = 53046, - [SMALL_STATE(933)] = 53092, - [SMALL_STATE(934)] = 53138, - [SMALL_STATE(935)] = 53184, - [SMALL_STATE(936)] = 53250, - [SMALL_STATE(937)] = 53298, - [SMALL_STATE(938)] = 53344, - [SMALL_STATE(939)] = 53390, - [SMALL_STATE(940)] = 53436, - [SMALL_STATE(941)] = 53482, - [SMALL_STATE(942)] = 53528, - [SMALL_STATE(943)] = 53574, - [SMALL_STATE(944)] = 53620, - [SMALL_STATE(945)] = 53666, - [SMALL_STATE(946)] = 53709, - [SMALL_STATE(947)] = 53756, - [SMALL_STATE(948)] = 53803, - [SMALL_STATE(949)] = 53846, - [SMALL_STATE(950)] = 53889, - [SMALL_STATE(951)] = 53932, - [SMALL_STATE(952)] = 53975, - [SMALL_STATE(953)] = 54022, - [SMALL_STATE(954)] = 54065, - [SMALL_STATE(955)] = 54108, - [SMALL_STATE(956)] = 54151, - [SMALL_STATE(957)] = 54194, - [SMALL_STATE(958)] = 54237, - [SMALL_STATE(959)] = 54280, - [SMALL_STATE(960)] = 54327, - [SMALL_STATE(961)] = 54370, - [SMALL_STATE(962)] = 54413, - [SMALL_STATE(963)] = 54456, - [SMALL_STATE(964)] = 54499, - [SMALL_STATE(965)] = 54542, - [SMALL_STATE(966)] = 54585, - [SMALL_STATE(967)] = 54628, - [SMALL_STATE(968)] = 54671, - [SMALL_STATE(969)] = 54714, - [SMALL_STATE(970)] = 54757, - [SMALL_STATE(971)] = 54800, - [SMALL_STATE(972)] = 54843, - [SMALL_STATE(973)] = 54886, - [SMALL_STATE(974)] = 54929, - [SMALL_STATE(975)] = 54972, - [SMALL_STATE(976)] = 55015, - [SMALL_STATE(977)] = 55058, - [SMALL_STATE(978)] = 55101, - [SMALL_STATE(979)] = 55144, - [SMALL_STATE(980)] = 55188, - [SMALL_STATE(981)] = 55232, - [SMALL_STATE(982)] = 55276, - [SMALL_STATE(983)] = 55320, - [SMALL_STATE(984)] = 55364, - [SMALL_STATE(985)] = 55408, - [SMALL_STATE(986)] = 55452, - [SMALL_STATE(987)] = 55496, - [SMALL_STATE(988)] = 55540, - [SMALL_STATE(989)] = 55584, - [SMALL_STATE(990)] = 55630, - [SMALL_STATE(991)] = 55674, - [SMALL_STATE(992)] = 55718, - [SMALL_STATE(993)] = 55762, - [SMALL_STATE(994)] = 55808, - [SMALL_STATE(995)] = 55852, - [SMALL_STATE(996)] = 55896, - [SMALL_STATE(997)] = 55940, - [SMALL_STATE(998)] = 55984, - [SMALL_STATE(999)] = 56028, - [SMALL_STATE(1000)] = 56072, - [SMALL_STATE(1001)] = 56116, - [SMALL_STATE(1002)] = 56160, - [SMALL_STATE(1003)] = 56204, - [SMALL_STATE(1004)] = 56248, - [SMALL_STATE(1005)] = 56292, - [SMALL_STATE(1006)] = 56336, - [SMALL_STATE(1007)] = 56380, - [SMALL_STATE(1008)] = 56424, - [SMALL_STATE(1009)] = 56468, - [SMALL_STATE(1010)] = 56512, - [SMALL_STATE(1011)] = 56556, - [SMALL_STATE(1012)] = 56599, - [SMALL_STATE(1013)] = 56642, - [SMALL_STATE(1014)] = 56687, - [SMALL_STATE(1015)] = 56732, - [SMALL_STATE(1016)] = 56777, - [SMALL_STATE(1017)] = 56822, - [SMALL_STATE(1018)] = 56867, - [SMALL_STATE(1019)] = 56912, - [SMALL_STATE(1020)] = 56957, - [SMALL_STATE(1021)] = 57002, - [SMALL_STATE(1022)] = 57047, - [SMALL_STATE(1023)] = 57092, - [SMALL_STATE(1024)] = 57135, - [SMALL_STATE(1025)] = 57180, - [SMALL_STATE(1026)] = 57225, - [SMALL_STATE(1027)] = 57270, - [SMALL_STATE(1028)] = 57315, - [SMALL_STATE(1029)] = 57360, - [SMALL_STATE(1030)] = 57403, - [SMALL_STATE(1031)] = 57448, - [SMALL_STATE(1032)] = 57493, - [SMALL_STATE(1033)] = 57538, - [SMALL_STATE(1034)] = 57583, - [SMALL_STATE(1035)] = 57628, - [SMALL_STATE(1036)] = 57673, - [SMALL_STATE(1037)] = 57718, - [SMALL_STATE(1038)] = 57763, - [SMALL_STATE(1039)] = 57808, - [SMALL_STATE(1040)] = 57853, - [SMALL_STATE(1041)] = 57898, - [SMALL_STATE(1042)] = 57943, - [SMALL_STATE(1043)] = 57988, - [SMALL_STATE(1044)] = 58033, - [SMALL_STATE(1045)] = 58078, - [SMALL_STATE(1046)] = 58123, - [SMALL_STATE(1047)] = 58168, - [SMALL_STATE(1048)] = 58213, - [SMALL_STATE(1049)] = 58258, - [SMALL_STATE(1050)] = 58303, - [SMALL_STATE(1051)] = 58348, - [SMALL_STATE(1052)] = 58393, - [SMALL_STATE(1053)] = 58438, - [SMALL_STATE(1054)] = 58483, - [SMALL_STATE(1055)] = 58528, - [SMALL_STATE(1056)] = 58571, - [SMALL_STATE(1057)] = 58616, - [SMALL_STATE(1058)] = 58661, - [SMALL_STATE(1059)] = 58704, - [SMALL_STATE(1060)] = 58747, - [SMALL_STATE(1061)] = 58792, - [SMALL_STATE(1062)] = 58837, - [SMALL_STATE(1063)] = 58882, - [SMALL_STATE(1064)] = 58927, - [SMALL_STATE(1065)] = 58970, - [SMALL_STATE(1066)] = 59013, - [SMALL_STATE(1067)] = 59058, - [SMALL_STATE(1068)] = 59103, - [SMALL_STATE(1069)] = 59148, - [SMALL_STATE(1070)] = 59193, - [SMALL_STATE(1071)] = 59238, - [SMALL_STATE(1072)] = 59283, - [SMALL_STATE(1073)] = 59328, - [SMALL_STATE(1074)] = 59373, - [SMALL_STATE(1075)] = 59418, - [SMALL_STATE(1076)] = 59463, - [SMALL_STATE(1077)] = 59508, - [SMALL_STATE(1078)] = 59553, - [SMALL_STATE(1079)] = 59596, - [SMALL_STATE(1080)] = 59639, - [SMALL_STATE(1081)] = 59682, - [SMALL_STATE(1082)] = 59725, - [SMALL_STATE(1083)] = 59768, - [SMALL_STATE(1084)] = 59811, - [SMALL_STATE(1085)] = 59856, - [SMALL_STATE(1086)] = 59901, - [SMALL_STATE(1087)] = 59946, - [SMALL_STATE(1088)] = 59991, - [SMALL_STATE(1089)] = 60036, - [SMALL_STATE(1090)] = 60081, - [SMALL_STATE(1091)] = 60126, - [SMALL_STATE(1092)] = 60171, - [SMALL_STATE(1093)] = 60216, - [SMALL_STATE(1094)] = 60261, - [SMALL_STATE(1095)] = 60306, - [SMALL_STATE(1096)] = 60351, - [SMALL_STATE(1097)] = 60396, - [SMALL_STATE(1098)] = 60441, - [SMALL_STATE(1099)] = 60486, - [SMALL_STATE(1100)] = 60531, - [SMALL_STATE(1101)] = 60576, - [SMALL_STATE(1102)] = 60621, - [SMALL_STATE(1103)] = 60664, - [SMALL_STATE(1104)] = 60707, - [SMALL_STATE(1105)] = 60750, - [SMALL_STATE(1106)] = 60793, - [SMALL_STATE(1107)] = 60836, - [SMALL_STATE(1108)] = 60881, - [SMALL_STATE(1109)] = 60926, - [SMALL_STATE(1110)] = 60971, - [SMALL_STATE(1111)] = 61014, - [SMALL_STATE(1112)] = 61059, - [SMALL_STATE(1113)] = 61104, - [SMALL_STATE(1114)] = 61149, - [SMALL_STATE(1115)] = 61194, - [SMALL_STATE(1116)] = 61239, - [SMALL_STATE(1117)] = 61284, - [SMALL_STATE(1118)] = 61329, - [SMALL_STATE(1119)] = 61374, - [SMALL_STATE(1120)] = 61419, - [SMALL_STATE(1121)] = 61464, - [SMALL_STATE(1122)] = 61507, - [SMALL_STATE(1123)] = 61550, - [SMALL_STATE(1124)] = 61593, - [SMALL_STATE(1125)] = 61638, - [SMALL_STATE(1126)] = 61681, - [SMALL_STATE(1127)] = 61724, - [SMALL_STATE(1128)] = 61767, - [SMALL_STATE(1129)] = 61810, - [SMALL_STATE(1130)] = 61853, - [SMALL_STATE(1131)] = 61898, - [SMALL_STATE(1132)] = 61943, - [SMALL_STATE(1133)] = 61988, - [SMALL_STATE(1134)] = 62033, - [SMALL_STATE(1135)] = 62078, - [SMALL_STATE(1136)] = 62123, - [SMALL_STATE(1137)] = 62168, - [SMALL_STATE(1138)] = 62213, - [SMALL_STATE(1139)] = 62258, - [SMALL_STATE(1140)] = 62303, - [SMALL_STATE(1141)] = 62348, - [SMALL_STATE(1142)] = 62393, - [SMALL_STATE(1143)] = 62438, - [SMALL_STATE(1144)] = 62481, - [SMALL_STATE(1145)] = 62524, - [SMALL_STATE(1146)] = 62567, - [SMALL_STATE(1147)] = 62612, - [SMALL_STATE(1148)] = 62655, - [SMALL_STATE(1149)] = 62698, - [SMALL_STATE(1150)] = 62741, - [SMALL_STATE(1151)] = 62784, - [SMALL_STATE(1152)] = 62827, - [SMALL_STATE(1153)] = 62870, - [SMALL_STATE(1154)] = 62913, - [SMALL_STATE(1155)] = 62956, - [SMALL_STATE(1156)] = 62999, - [SMALL_STATE(1157)] = 63042, - [SMALL_STATE(1158)] = 63085, - [SMALL_STATE(1159)] = 63128, - [SMALL_STATE(1160)] = 63173, - [SMALL_STATE(1161)] = 63216, - [SMALL_STATE(1162)] = 63261, - [SMALL_STATE(1163)] = 63306, - [SMALL_STATE(1164)] = 63351, - [SMALL_STATE(1165)] = 63396, - [SMALL_STATE(1166)] = 63441, - [SMALL_STATE(1167)] = 63486, - [SMALL_STATE(1168)] = 63531, - [SMALL_STATE(1169)] = 63576, - [SMALL_STATE(1170)] = 63621, - [SMALL_STATE(1171)] = 63664, - [SMALL_STATE(1172)] = 63707, - [SMALL_STATE(1173)] = 63750, - [SMALL_STATE(1174)] = 63795, - [SMALL_STATE(1175)] = 63838, - [SMALL_STATE(1176)] = 63881, - [SMALL_STATE(1177)] = 63924, - [SMALL_STATE(1178)] = 63967, - [SMALL_STATE(1179)] = 64010, - [SMALL_STATE(1180)] = 64053, - [SMALL_STATE(1181)] = 64098, - [SMALL_STATE(1182)] = 64141, - [SMALL_STATE(1183)] = 64184, - [SMALL_STATE(1184)] = 64227, - [SMALL_STATE(1185)] = 64272, - [SMALL_STATE(1186)] = 64315, - [SMALL_STATE(1187)] = 64360, - [SMALL_STATE(1188)] = 64403, - [SMALL_STATE(1189)] = 64446, - [SMALL_STATE(1190)] = 64489, - [SMALL_STATE(1191)] = 64532, - [SMALL_STATE(1192)] = 64575, - [SMALL_STATE(1193)] = 64618, - [SMALL_STATE(1194)] = 64661, - [SMALL_STATE(1195)] = 64704, - [SMALL_STATE(1196)] = 64747, - [SMALL_STATE(1197)] = 64790, - [SMALL_STATE(1198)] = 64833, - [SMALL_STATE(1199)] = 64876, - [SMALL_STATE(1200)] = 64919, - [SMALL_STATE(1201)] = 64962, - [SMALL_STATE(1202)] = 65005, - [SMALL_STATE(1203)] = 65048, - [SMALL_STATE(1204)] = 65091, - [SMALL_STATE(1205)] = 65134, - [SMALL_STATE(1206)] = 65177, - [SMALL_STATE(1207)] = 65220, - [SMALL_STATE(1208)] = 65263, - [SMALL_STATE(1209)] = 65306, - [SMALL_STATE(1210)] = 65349, - [SMALL_STATE(1211)] = 65392, - [SMALL_STATE(1212)] = 65435, - [SMALL_STATE(1213)] = 65478, - [SMALL_STATE(1214)] = 65521, - [SMALL_STATE(1215)] = 65564, - [SMALL_STATE(1216)] = 65607, - [SMALL_STATE(1217)] = 65650, - [SMALL_STATE(1218)] = 65693, - [SMALL_STATE(1219)] = 65736, - [SMALL_STATE(1220)] = 65779, - [SMALL_STATE(1221)] = 65822, - [SMALL_STATE(1222)] = 65865, - [SMALL_STATE(1223)] = 65908, - [SMALL_STATE(1224)] = 65951, - [SMALL_STATE(1225)] = 65994, - [SMALL_STATE(1226)] = 66037, - [SMALL_STATE(1227)] = 66082, - [SMALL_STATE(1228)] = 66125, - [SMALL_STATE(1229)] = 66168, - [SMALL_STATE(1230)] = 66211, - [SMALL_STATE(1231)] = 66254, - [SMALL_STATE(1232)] = 66297, - [SMALL_STATE(1233)] = 66342, - [SMALL_STATE(1234)] = 66385, - [SMALL_STATE(1235)] = 66428, - [SMALL_STATE(1236)] = 66473, - [SMALL_STATE(1237)] = 66516, - [SMALL_STATE(1238)] = 66559, - [SMALL_STATE(1239)] = 66602, - [SMALL_STATE(1240)] = 66645, - [SMALL_STATE(1241)] = 66688, - [SMALL_STATE(1242)] = 66767, - [SMALL_STATE(1243)] = 66810, - [SMALL_STATE(1244)] = 66853, - [SMALL_STATE(1245)] = 66896, - [SMALL_STATE(1246)] = 66939, - [SMALL_STATE(1247)] = 66984, - [SMALL_STATE(1248)] = 67029, - [SMALL_STATE(1249)] = 67074, - [SMALL_STATE(1250)] = 67119, - [SMALL_STATE(1251)] = 67164, - [SMALL_STATE(1252)] = 67207, - [SMALL_STATE(1253)] = 67250, - [SMALL_STATE(1254)] = 67293, - [SMALL_STATE(1255)] = 67336, - [SMALL_STATE(1256)] = 67379, - [SMALL_STATE(1257)] = 67422, - [SMALL_STATE(1258)] = 67465, - [SMALL_STATE(1259)] = 67508, - [SMALL_STATE(1260)] = 67551, - [SMALL_STATE(1261)] = 67594, - [SMALL_STATE(1262)] = 67637, - [SMALL_STATE(1263)] = 67680, - [SMALL_STATE(1264)] = 67723, - [SMALL_STATE(1265)] = 67766, - [SMALL_STATE(1266)] = 67809, - [SMALL_STATE(1267)] = 67854, - [SMALL_STATE(1268)] = 67899, - [SMALL_STATE(1269)] = 67944, - [SMALL_STATE(1270)] = 67989, - [SMALL_STATE(1271)] = 68034, - [SMALL_STATE(1272)] = 68079, - [SMALL_STATE(1273)] = 68124, - [SMALL_STATE(1274)] = 68169, - [SMALL_STATE(1275)] = 68214, - [SMALL_STATE(1276)] = 68257, - [SMALL_STATE(1277)] = 68300, - [SMALL_STATE(1278)] = 68343, - [SMALL_STATE(1279)] = 68386, - [SMALL_STATE(1280)] = 68429, - [SMALL_STATE(1281)] = 68472, - [SMALL_STATE(1282)] = 68515, - [SMALL_STATE(1283)] = 68559, - [SMALL_STATE(1284)] = 68601, - [SMALL_STATE(1285)] = 68685, - [SMALL_STATE(1286)] = 68729, - [SMALL_STATE(1287)] = 68773, - [SMALL_STATE(1288)] = 68817, - [SMALL_STATE(1289)] = 68861, - [SMALL_STATE(1290)] = 68905, - [SMALL_STATE(1291)] = 68949, - [SMALL_STATE(1292)] = 68993, - [SMALL_STATE(1293)] = 69037, - [SMALL_STATE(1294)] = 69081, - [SMALL_STATE(1295)] = 69125, - [SMALL_STATE(1296)] = 69169, - [SMALL_STATE(1297)] = 69213, - [SMALL_STATE(1298)] = 69257, - [SMALL_STATE(1299)] = 69301, - [SMALL_STATE(1300)] = 69345, - [SMALL_STATE(1301)] = 69389, - [SMALL_STATE(1302)] = 69433, - [SMALL_STATE(1303)] = 69477, - [SMALL_STATE(1304)] = 69561, - [SMALL_STATE(1305)] = 69605, - [SMALL_STATE(1306)] = 69649, - [SMALL_STATE(1307)] = 69693, - [SMALL_STATE(1308)] = 69737, - [SMALL_STATE(1309)] = 69781, - [SMALL_STATE(1310)] = 69825, - [SMALL_STATE(1311)] = 69869, - [SMALL_STATE(1312)] = 69913, - [SMALL_STATE(1313)] = 69957, - [SMALL_STATE(1314)] = 70041, - [SMALL_STATE(1315)] = 70085, - [SMALL_STATE(1316)] = 70129, - [SMALL_STATE(1317)] = 70173, - [SMALL_STATE(1318)] = 70217, - [SMALL_STATE(1319)] = 70261, - [SMALL_STATE(1320)] = 70305, - [SMALL_STATE(1321)] = 70349, - [SMALL_STATE(1322)] = 70393, - [SMALL_STATE(1323)] = 70437, - [SMALL_STATE(1324)] = 70481, - [SMALL_STATE(1325)] = 70525, - [SMALL_STATE(1326)] = 70569, - [SMALL_STATE(1327)] = 70613, - [SMALL_STATE(1328)] = 70657, - [SMALL_STATE(1329)] = 70701, - [SMALL_STATE(1330)] = 70745, - [SMALL_STATE(1331)] = 70789, - [SMALL_STATE(1332)] = 70833, - [SMALL_STATE(1333)] = 70877, - [SMALL_STATE(1334)] = 70921, - [SMALL_STATE(1335)] = 70965, - [SMALL_STATE(1336)] = 71009, - [SMALL_STATE(1337)] = 71053, - [SMALL_STATE(1338)] = 71097, - [SMALL_STATE(1339)] = 71141, - [SMALL_STATE(1340)] = 71185, - [SMALL_STATE(1341)] = 71235, - [SMALL_STATE(1342)] = 71279, - [SMALL_STATE(1343)] = 71333, - [SMALL_STATE(1344)] = 71377, - [SMALL_STATE(1345)] = 71421, - [SMALL_STATE(1346)] = 71465, - [SMALL_STATE(1347)] = 71509, - [SMALL_STATE(1348)] = 71553, - [SMALL_STATE(1349)] = 71597, - [SMALL_STATE(1350)] = 71681, - [SMALL_STATE(1351)] = 71725, - [SMALL_STATE(1352)] = 71769, - [SMALL_STATE(1353)] = 71813, - [SMALL_STATE(1354)] = 71857, - [SMALL_STATE(1355)] = 71901, - [SMALL_STATE(1356)] = 71945, - [SMALL_STATE(1357)] = 71989, - [SMALL_STATE(1358)] = 72033, - [SMALL_STATE(1359)] = 72077, - [SMALL_STATE(1360)] = 72121, - [SMALL_STATE(1361)] = 72165, - [SMALL_STATE(1362)] = 72209, - [SMALL_STATE(1363)] = 72251, - [SMALL_STATE(1364)] = 72293, - [SMALL_STATE(1365)] = 72337, - [SMALL_STATE(1366)] = 72381, - [SMALL_STATE(1367)] = 72423, - [SMALL_STATE(1368)] = 72467, - [SMALL_STATE(1369)] = 72511, - [SMALL_STATE(1370)] = 72555, - [SMALL_STATE(1371)] = 72597, - [SMALL_STATE(1372)] = 72641, - [SMALL_STATE(1373)] = 72725, - [SMALL_STATE(1374)] = 72767, - [SMALL_STATE(1375)] = 72811, - [SMALL_STATE(1376)] = 72895, - [SMALL_STATE(1377)] = 72939, - [SMALL_STATE(1378)] = 72983, - [SMALL_STATE(1379)] = 73025, - [SMALL_STATE(1380)] = 73069, - [SMALL_STATE(1381)] = 73113, - [SMALL_STATE(1382)] = 73157, - [SMALL_STATE(1383)] = 73201, - [SMALL_STATE(1384)] = 73245, - [SMALL_STATE(1385)] = 73287, - [SMALL_STATE(1386)] = 73329, - [SMALL_STATE(1387)] = 73371, - [SMALL_STATE(1388)] = 73415, - [SMALL_STATE(1389)] = 73457, - [SMALL_STATE(1390)] = 73501, - [SMALL_STATE(1391)] = 73545, - [SMALL_STATE(1392)] = 73587, - [SMALL_STATE(1393)] = 73629, - [SMALL_STATE(1394)] = 73671, - [SMALL_STATE(1395)] = 73715, - [SMALL_STATE(1396)] = 73799, - [SMALL_STATE(1397)] = 73841, - [SMALL_STATE(1398)] = 73883, - [SMALL_STATE(1399)] = 73925, - [SMALL_STATE(1400)] = 73967, - [SMALL_STATE(1401)] = 74009, - [SMALL_STATE(1402)] = 74053, - [SMALL_STATE(1403)] = 74097, - [SMALL_STATE(1404)] = 74139, - [SMALL_STATE(1405)] = 74183, - [SMALL_STATE(1406)] = 74225, - [SMALL_STATE(1407)] = 74269, - [SMALL_STATE(1408)] = 74313, - [SMALL_STATE(1409)] = 74357, - [SMALL_STATE(1410)] = 74401, - [SMALL_STATE(1411)] = 74445, - [SMALL_STATE(1412)] = 74489, - [SMALL_STATE(1413)] = 74531, - [SMALL_STATE(1414)] = 74573, - [SMALL_STATE(1415)] = 74617, - [SMALL_STATE(1416)] = 74659, - [SMALL_STATE(1417)] = 74703, - [SMALL_STATE(1418)] = 74747, - [SMALL_STATE(1419)] = 74791, - [SMALL_STATE(1420)] = 74833, - [SMALL_STATE(1421)] = 74877, - [SMALL_STATE(1422)] = 74919, - [SMALL_STATE(1423)] = 74961, - [SMALL_STATE(1424)] = 75005, - [SMALL_STATE(1425)] = 75049, - [SMALL_STATE(1426)] = 75091, - [SMALL_STATE(1427)] = 75135, - [SMALL_STATE(1428)] = 75177, - [SMALL_STATE(1429)] = 75221, - [SMALL_STATE(1430)] = 75263, - [SMALL_STATE(1431)] = 75305, - [SMALL_STATE(1432)] = 75389, - [SMALL_STATE(1433)] = 75431, - [SMALL_STATE(1434)] = 75473, - [SMALL_STATE(1435)] = 75517, - [SMALL_STATE(1436)] = 75559, - [SMALL_STATE(1437)] = 75603, - [SMALL_STATE(1438)] = 75645, - [SMALL_STATE(1439)] = 75689, - [SMALL_STATE(1440)] = 75731, - [SMALL_STATE(1441)] = 75775, - [SMALL_STATE(1442)] = 75819, - [SMALL_STATE(1443)] = 75863, - [SMALL_STATE(1444)] = 75905, - [SMALL_STATE(1445)] = 75949, - [SMALL_STATE(1446)] = 75991, - [SMALL_STATE(1447)] = 76035, - [SMALL_STATE(1448)] = 76079, - [SMALL_STATE(1449)] = 76123, - [SMALL_STATE(1450)] = 76165, - [SMALL_STATE(1451)] = 76209, - [SMALL_STATE(1452)] = 76253, - [SMALL_STATE(1453)] = 76295, - [SMALL_STATE(1454)] = 76339, - [SMALL_STATE(1455)] = 76381, - [SMALL_STATE(1456)] = 76423, - [SMALL_STATE(1457)] = 76467, - [SMALL_STATE(1458)] = 76511, - [SMALL_STATE(1459)] = 76553, - [SMALL_STATE(1460)] = 76601, - [SMALL_STATE(1461)] = 76643, - [SMALL_STATE(1462)] = 76685, - [SMALL_STATE(1463)] = 76729, - [SMALL_STATE(1464)] = 76771, - [SMALL_STATE(1465)] = 76813, - [SMALL_STATE(1466)] = 76855, - [SMALL_STATE(1467)] = 76899, - [SMALL_STATE(1468)] = 76943, - [SMALL_STATE(1469)] = 76987, - [SMALL_STATE(1470)] = 77029, - [SMALL_STATE(1471)] = 77071, - [SMALL_STATE(1472)] = 77113, - [SMALL_STATE(1473)] = 77155, - [SMALL_STATE(1474)] = 77199, - [SMALL_STATE(1475)] = 77241, - [SMALL_STATE(1476)] = 77285, - [SMALL_STATE(1477)] = 77329, - [SMALL_STATE(1478)] = 77373, - [SMALL_STATE(1479)] = 77415, - [SMALL_STATE(1480)] = 77457, - [SMALL_STATE(1481)] = 77499, - [SMALL_STATE(1482)] = 77541, - [SMALL_STATE(1483)] = 77583, - [SMALL_STATE(1484)] = 77627, - [SMALL_STATE(1485)] = 77671, - [SMALL_STATE(1486)] = 77713, - [SMALL_STATE(1487)] = 77797, - [SMALL_STATE(1488)] = 77841, - [SMALL_STATE(1489)] = 77883, - [SMALL_STATE(1490)] = 77925, - [SMALL_STATE(1491)] = 77967, - [SMALL_STATE(1492)] = 78011, - [SMALL_STATE(1493)] = 78053, - [SMALL_STATE(1494)] = 78095, - [SMALL_STATE(1495)] = 78139, - [SMALL_STATE(1496)] = 78183, - [SMALL_STATE(1497)] = 78225, - [SMALL_STATE(1498)] = 78269, - [SMALL_STATE(1499)] = 78311, - [SMALL_STATE(1500)] = 78353, - [SMALL_STATE(1501)] = 78397, - [SMALL_STATE(1502)] = 78439, - [SMALL_STATE(1503)] = 78481, - [SMALL_STATE(1504)] = 78523, - [SMALL_STATE(1505)] = 78567, - [SMALL_STATE(1506)] = 78611, - [SMALL_STATE(1507)] = 78653, - [SMALL_STATE(1508)] = 78695, - [SMALL_STATE(1509)] = 78737, - [SMALL_STATE(1510)] = 78779, - [SMALL_STATE(1511)] = 78821, - [SMALL_STATE(1512)] = 78863, - [SMALL_STATE(1513)] = 78905, - [SMALL_STATE(1514)] = 78947, - [SMALL_STATE(1515)] = 78989, - [SMALL_STATE(1516)] = 79031, - [SMALL_STATE(1517)] = 79073, - [SMALL_STATE(1518)] = 79115, - [SMALL_STATE(1519)] = 79157, - [SMALL_STATE(1520)] = 79241, - [SMALL_STATE(1521)] = 79283, - [SMALL_STATE(1522)] = 79327, - [SMALL_STATE(1523)] = 79371, - [SMALL_STATE(1524)] = 79413, - [SMALL_STATE(1525)] = 79455, - [SMALL_STATE(1526)] = 79497, - [SMALL_STATE(1527)] = 79539, - [SMALL_STATE(1528)] = 79581, - [SMALL_STATE(1529)] = 79623, - [SMALL_STATE(1530)] = 79667, - [SMALL_STATE(1531)] = 79711, - [SMALL_STATE(1532)] = 79753, - [SMALL_STATE(1533)] = 79795, - [SMALL_STATE(1534)] = 79837, - [SMALL_STATE(1535)] = 79879, - [SMALL_STATE(1536)] = 79921, - [SMALL_STATE(1537)] = 79963, - [SMALL_STATE(1538)] = 80005, - [SMALL_STATE(1539)] = 80047, - [SMALL_STATE(1540)] = 80089, - [SMALL_STATE(1541)] = 80131, - [SMALL_STATE(1542)] = 80173, - [SMALL_STATE(1543)] = 80215, - [SMALL_STATE(1544)] = 80257, - [SMALL_STATE(1545)] = 80299, - [SMALL_STATE(1546)] = 80341, - [SMALL_STATE(1547)] = 80383, - [SMALL_STATE(1548)] = 80425, - [SMALL_STATE(1549)] = 80467, - [SMALL_STATE(1550)] = 80511, - [SMALL_STATE(1551)] = 80555, - [SMALL_STATE(1552)] = 80597, - [SMALL_STATE(1553)] = 80639, - [SMALL_STATE(1554)] = 80681, - [SMALL_STATE(1555)] = 80723, - [SMALL_STATE(1556)] = 80767, - [SMALL_STATE(1557)] = 80811, - [SMALL_STATE(1558)] = 80855, - [SMALL_STATE(1559)] = 80897, - [SMALL_STATE(1560)] = 80939, - [SMALL_STATE(1561)] = 80981, - [SMALL_STATE(1562)] = 81023, - [SMALL_STATE(1563)] = 81065, - [SMALL_STATE(1564)] = 81107, - [SMALL_STATE(1565)] = 81149, - [SMALL_STATE(1566)] = 81191, - [SMALL_STATE(1567)] = 81233, - [SMALL_STATE(1568)] = 81275, - [SMALL_STATE(1569)] = 81317, - [SMALL_STATE(1570)] = 81359, - [SMALL_STATE(1571)] = 81401, - [SMALL_STATE(1572)] = 81443, - [SMALL_STATE(1573)] = 81485, - [SMALL_STATE(1574)] = 81529, - [SMALL_STATE(1575)] = 81573, - [SMALL_STATE(1576)] = 81615, - [SMALL_STATE(1577)] = 81657, - [SMALL_STATE(1578)] = 81699, - [SMALL_STATE(1579)] = 81741, - [SMALL_STATE(1580)] = 81783, - [SMALL_STATE(1581)] = 81825, - [SMALL_STATE(1582)] = 81867, - [SMALL_STATE(1583)] = 81909, - [SMALL_STATE(1584)] = 81951, - [SMALL_STATE(1585)] = 81993, - [SMALL_STATE(1586)] = 82035, - [SMALL_STATE(1587)] = 82077, - [SMALL_STATE(1588)] = 82119, - [SMALL_STATE(1589)] = 82161, - [SMALL_STATE(1590)] = 82203, - [SMALL_STATE(1591)] = 82245, - [SMALL_STATE(1592)] = 82287, - [SMALL_STATE(1593)] = 82329, - [SMALL_STATE(1594)] = 82371, - [SMALL_STATE(1595)] = 82415, - [SMALL_STATE(1596)] = 82457, - [SMALL_STATE(1597)] = 82499, - [SMALL_STATE(1598)] = 82541, - [SMALL_STATE(1599)] = 82583, - [SMALL_STATE(1600)] = 82627, - [SMALL_STATE(1601)] = 82669, - [SMALL_STATE(1602)] = 82711, - [SMALL_STATE(1603)] = 82753, - [SMALL_STATE(1604)] = 82795, - [SMALL_STATE(1605)] = 82837, - [SMALL_STATE(1606)] = 82879, - [SMALL_STATE(1607)] = 82923, - [SMALL_STATE(1608)] = 82967, - [SMALL_STATE(1609)] = 83011, - [SMALL_STATE(1610)] = 83053, - [SMALL_STATE(1611)] = 83132, - [SMALL_STATE(1612)] = 83210, - [SMALL_STATE(1613)] = 83288, - [SMALL_STATE(1614)] = 83366, - [SMALL_STATE(1615)] = 83444, - [SMALL_STATE(1616)] = 83522, - [SMALL_STATE(1617)] = 83600, - [SMALL_STATE(1618)] = 83678, - [SMALL_STATE(1619)] = 83746, - [SMALL_STATE(1620)] = 83824, - [SMALL_STATE(1621)] = 83890, - [SMALL_STATE(1622)] = 83958, - [SMALL_STATE(1623)] = 84036, - [SMALL_STATE(1624)] = 84114, - [SMALL_STATE(1625)] = 84187, - [SMALL_STATE(1626)] = 84228, - [SMALL_STATE(1627)] = 84269, - [SMALL_STATE(1628)] = 84305, - [SMALL_STATE(1629)] = 84341, - [SMALL_STATE(1630)] = 84377, - [SMALL_STATE(1631)] = 84449, - [SMALL_STATE(1632)] = 84515, - [SMALL_STATE(1633)] = 84561, - [SMALL_STATE(1634)] = 84607, - [SMALL_STATE(1635)] = 84643, - [SMALL_STATE(1636)] = 84689, - [SMALL_STATE(1637)] = 84761, - [SMALL_STATE(1638)] = 84807, - [SMALL_STATE(1639)] = 84853, - [SMALL_STATE(1640)] = 84925, - [SMALL_STATE(1641)] = 84971, - [SMALL_STATE(1642)] = 85017, - [SMALL_STATE(1643)] = 85063, - [SMALL_STATE(1644)] = 85135, - [SMALL_STATE(1645)] = 85207, - [SMALL_STATE(1646)] = 85279, - [SMALL_STATE(1647)] = 85351, - [SMALL_STATE(1648)] = 85397, - [SMALL_STATE(1649)] = 85443, - [SMALL_STATE(1650)] = 85489, - [SMALL_STATE(1651)] = 85561, - [SMALL_STATE(1652)] = 85607, - [SMALL_STATE(1653)] = 85653, - [SMALL_STATE(1654)] = 85719, - [SMALL_STATE(1655)] = 85765, - [SMALL_STATE(1656)] = 85811, - [SMALL_STATE(1657)] = 85857, - [SMALL_STATE(1658)] = 85923, - [SMALL_STATE(1659)] = 85995, - [SMALL_STATE(1660)] = 86041, - [SMALL_STATE(1661)] = 86087, - [SMALL_STATE(1662)] = 86133, - [SMALL_STATE(1663)] = 86179, - [SMALL_STATE(1664)] = 86225, - [SMALL_STATE(1665)] = 86271, - [SMALL_STATE(1666)] = 86317, - [SMALL_STATE(1667)] = 86353, - [SMALL_STATE(1668)] = 86419, - [SMALL_STATE(1669)] = 86491, - [SMALL_STATE(1670)] = 86560, - [SMALL_STATE(1671)] = 86629, - [SMALL_STATE(1672)] = 86698, - [SMALL_STATE(1673)] = 86767, - [SMALL_STATE(1674)] = 86836, - [SMALL_STATE(1675)] = 86905, - [SMALL_STATE(1676)] = 86974, - [SMALL_STATE(1677)] = 87043, - [SMALL_STATE(1678)] = 87112, - [SMALL_STATE(1679)] = 87181, - [SMALL_STATE(1680)] = 87250, - [SMALL_STATE(1681)] = 87319, - [SMALL_STATE(1682)] = 87386, - [SMALL_STATE(1683)] = 87455, - [SMALL_STATE(1684)] = 87524, - [SMALL_STATE(1685)] = 87593, - [SMALL_STATE(1686)] = 87662, - [SMALL_STATE(1687)] = 87731, - [SMALL_STATE(1688)] = 87800, - [SMALL_STATE(1689)] = 87869, - [SMALL_STATE(1690)] = 87938, - [SMALL_STATE(1691)] = 87998, - [SMALL_STATE(1692)] = 88058, - [SMALL_STATE(1693)] = 88104, - [SMALL_STATE(1694)] = 88164, - [SMALL_STATE(1695)] = 88210, - [SMALL_STATE(1696)] = 88270, - [SMALL_STATE(1697)] = 88334, - [SMALL_STATE(1698)] = 88380, - [SMALL_STATE(1699)] = 88426, - [SMALL_STATE(1700)] = 88486, - [SMALL_STATE(1701)] = 88532, - [SMALL_STATE(1702)] = 88578, - [SMALL_STATE(1703)] = 88638, - [SMALL_STATE(1704)] = 88674, - [SMALL_STATE(1705)] = 88738, - [SMALL_STATE(1706)] = 88798, - [SMALL_STATE(1707)] = 88844, - [SMALL_STATE(1708)] = 88904, - [SMALL_STATE(1709)] = 88964, - [SMALL_STATE(1710)] = 89024, - [SMALL_STATE(1711)] = 89064, - [SMALL_STATE(1712)] = 89124, - [SMALL_STATE(1713)] = 89184, - [SMALL_STATE(1714)] = 89244, - [SMALL_STATE(1715)] = 89304, - [SMALL_STATE(1716)] = 89364, - [SMALL_STATE(1717)] = 89424, - [SMALL_STATE(1718)] = 89484, - [SMALL_STATE(1719)] = 89530, - [SMALL_STATE(1720)] = 89590, - [SMALL_STATE(1721)] = 89650, - [SMALL_STATE(1722)] = 89694, - [SMALL_STATE(1723)] = 89740, - [SMALL_STATE(1724)] = 89786, - [SMALL_STATE(1725)] = 89846, - [SMALL_STATE(1726)] = 89906, - [SMALL_STATE(1727)] = 89969, - [SMALL_STATE(1728)] = 90032, - [SMALL_STATE(1729)] = 90095, - [SMALL_STATE(1730)] = 90158, - [SMALL_STATE(1731)] = 90215, - [SMALL_STATE(1732)] = 90278, - [SMALL_STATE(1733)] = 90341, - [SMALL_STATE(1734)] = 90404, - [SMALL_STATE(1735)] = 90467, - [SMALL_STATE(1736)] = 90530, - [SMALL_STATE(1737)] = 90593, - [SMALL_STATE(1738)] = 90656, - [SMALL_STATE(1739)] = 90719, - [SMALL_STATE(1740)] = 90782, - [SMALL_STATE(1741)] = 90845, - [SMALL_STATE(1742)] = 90908, - [SMALL_STATE(1743)] = 90971, - [SMALL_STATE(1744)] = 91034, - [SMALL_STATE(1745)] = 91097, - [SMALL_STATE(1746)] = 91160, - [SMALL_STATE(1747)] = 91223, - [SMALL_STATE(1748)] = 91286, - [SMALL_STATE(1749)] = 91349, - [SMALL_STATE(1750)] = 91412, - [SMALL_STATE(1751)] = 91475, - [SMALL_STATE(1752)] = 91538, - [SMALL_STATE(1753)] = 91601, - [SMALL_STATE(1754)] = 91664, - [SMALL_STATE(1755)] = 91727, - [SMALL_STATE(1756)] = 91790, - [SMALL_STATE(1757)] = 91853, - [SMALL_STATE(1758)] = 91916, - [SMALL_STATE(1759)] = 91979, - [SMALL_STATE(1760)] = 92042, - [SMALL_STATE(1761)] = 92105, - [SMALL_STATE(1762)] = 92168, - [SMALL_STATE(1763)] = 92231, - [SMALL_STATE(1764)] = 92294, - [SMALL_STATE(1765)] = 92357, - [SMALL_STATE(1766)] = 92420, - [SMALL_STATE(1767)] = 92483, - [SMALL_STATE(1768)] = 92546, - [SMALL_STATE(1769)] = 92609, - [SMALL_STATE(1770)] = 92672, - [SMALL_STATE(1771)] = 92735, - [SMALL_STATE(1772)] = 92798, - [SMALL_STATE(1773)] = 92861, - [SMALL_STATE(1774)] = 92924, - [SMALL_STATE(1775)] = 92987, - [SMALL_STATE(1776)] = 93050, - [SMALL_STATE(1777)] = 93113, - [SMALL_STATE(1778)] = 93176, - [SMALL_STATE(1779)] = 93239, - [SMALL_STATE(1780)] = 93302, - [SMALL_STATE(1781)] = 93365, - [SMALL_STATE(1782)] = 93428, - [SMALL_STATE(1783)] = 93491, - [SMALL_STATE(1784)] = 93554, - [SMALL_STATE(1785)] = 93617, - [SMALL_STATE(1786)] = 93680, - [SMALL_STATE(1787)] = 93743, - [SMALL_STATE(1788)] = 93806, - [SMALL_STATE(1789)] = 93869, - [SMALL_STATE(1790)] = 93932, - [SMALL_STATE(1791)] = 93995, - [SMALL_STATE(1792)] = 94058, - [SMALL_STATE(1793)] = 94121, - [SMALL_STATE(1794)] = 94184, - [SMALL_STATE(1795)] = 94247, - [SMALL_STATE(1796)] = 94310, - [SMALL_STATE(1797)] = 94373, - [SMALL_STATE(1798)] = 94431, - [SMALL_STATE(1799)] = 94465, - [SMALL_STATE(1800)] = 94523, - [SMALL_STATE(1801)] = 94581, - [SMALL_STATE(1802)] = 94639, - [SMALL_STATE(1803)] = 94697, - [SMALL_STATE(1804)] = 94735, - [SMALL_STATE(1805)] = 94769, - [SMALL_STATE(1806)] = 94827, - [SMALL_STATE(1807)] = 94885, - [SMALL_STATE(1808)] = 94932, - [SMALL_STATE(1809)] = 94979, - [SMALL_STATE(1810)] = 95026, - [SMALL_STATE(1811)] = 95073, - [SMALL_STATE(1812)] = 95120, - [SMALL_STATE(1813)] = 95167, - [SMALL_STATE(1814)] = 95214, - [SMALL_STATE(1815)] = 95261, - [SMALL_STATE(1816)] = 95308, - [SMALL_STATE(1817)] = 95355, - [SMALL_STATE(1818)] = 95402, - [SMALL_STATE(1819)] = 95440, - [SMALL_STATE(1820)] = 95494, - [SMALL_STATE(1821)] = 95548, - [SMALL_STATE(1822)] = 95600, - [SMALL_STATE(1823)] = 95652, - [SMALL_STATE(1824)] = 95684, - [SMALL_STATE(1825)] = 95738, - [SMALL_STATE(1826)] = 95784, - [SMALL_STATE(1827)] = 95836, - [SMALL_STATE(1828)] = 95878, - [SMALL_STATE(1829)] = 95910, - [SMALL_STATE(1830)] = 95956, - [SMALL_STATE(1831)] = 96010, - [SMALL_STATE(1832)] = 96044, - [SMALL_STATE(1833)] = 96076, - [SMALL_STATE(1834)] = 96122, - [SMALL_STATE(1835)] = 96168, - [SMALL_STATE(1836)] = 96210, - [SMALL_STATE(1837)] = 96262, - [SMALL_STATE(1838)] = 96304, - [SMALL_STATE(1839)] = 96358, - [SMALL_STATE(1840)] = 96410, - [SMALL_STATE(1841)] = 96454, - [SMALL_STATE(1842)] = 96500, - [SMALL_STATE(1843)] = 96554, - [SMALL_STATE(1844)] = 96608, - [SMALL_STATE(1845)] = 96662, - [SMALL_STATE(1846)] = 96716, - [SMALL_STATE(1847)] = 96770, - [SMALL_STATE(1848)] = 96816, - [SMALL_STATE(1849)] = 96863, - [SMALL_STATE(1850)] = 96910, - [SMALL_STATE(1851)] = 96957, - [SMALL_STATE(1852)] = 97012, - [SMALL_STATE(1853)] = 97059, - [SMALL_STATE(1854)] = 97106, - [SMALL_STATE(1855)] = 97153, - [SMALL_STATE(1856)] = 97208, - [SMALL_STATE(1857)] = 97255, - [SMALL_STATE(1858)] = 97288, - [SMALL_STATE(1859)] = 97343, - [SMALL_STATE(1860)] = 97390, - [SMALL_STATE(1861)] = 97437, - [SMALL_STATE(1862)] = 97492, - [SMALL_STATE(1863)] = 97547, - [SMALL_STATE(1864)] = 97594, - [SMALL_STATE(1865)] = 97641, - [SMALL_STATE(1866)] = 97674, - [SMALL_STATE(1867)] = 97709, - [SMALL_STATE(1868)] = 97764, - [SMALL_STATE(1869)] = 97797, - [SMALL_STATE(1870)] = 97844, - [SMALL_STATE(1871)] = 97899, - [SMALL_STATE(1872)] = 97946, - [SMALL_STATE(1873)] = 97993, - [SMALL_STATE(1874)] = 98048, - [SMALL_STATE(1875)] = 98095, - [SMALL_STATE(1876)] = 98142, - [SMALL_STATE(1877)] = 98189, - [SMALL_STATE(1878)] = 98236, - [SMALL_STATE(1879)] = 98283, - [SMALL_STATE(1880)] = 98338, - [SMALL_STATE(1881)] = 98385, - [SMALL_STATE(1882)] = 98430, - [SMALL_STATE(1883)] = 98477, - [SMALL_STATE(1884)] = 98524, - [SMALL_STATE(1885)] = 98571, - [SMALL_STATE(1886)] = 98618, - [SMALL_STATE(1887)] = 98665, - [SMALL_STATE(1888)] = 98712, - [SMALL_STATE(1889)] = 98759, - [SMALL_STATE(1890)] = 98814, - [SMALL_STATE(1891)] = 98861, - [SMALL_STATE(1892)] = 98907, - [SMALL_STATE(1893)] = 98951, - [SMALL_STATE(1894)] = 98995, - [SMALL_STATE(1895)] = 99039, - [SMALL_STATE(1896)] = 99085, - [SMALL_STATE(1897)] = 99121, - [SMALL_STATE(1898)] = 99167, - [SMALL_STATE(1899)] = 99213, - [SMALL_STATE(1900)] = 99257, - [SMALL_STATE(1901)] = 99305, - [SMALL_STATE(1902)] = 99351, - [SMALL_STATE(1903)] = 99399, - [SMALL_STATE(1904)] = 99445, - [SMALL_STATE(1905)] = 99489, - [SMALL_STATE(1906)] = 99533, - [SMALL_STATE(1907)] = 99581, - [SMALL_STATE(1908)] = 99625, - [SMALL_STATE(1909)] = 99669, - [SMALL_STATE(1910)] = 99717, - [SMALL_STATE(1911)] = 99763, - [SMALL_STATE(1912)] = 99807, - [SMALL_STATE(1913)] = 99851, - [SMALL_STATE(1914)] = 99899, - [SMALL_STATE(1915)] = 99939, - [SMALL_STATE(1916)] = 99985, - [SMALL_STATE(1917)] = 100029, - [SMALL_STATE(1918)] = 100077, - [SMALL_STATE(1919)] = 100125, - [SMALL_STATE(1920)] = 100171, - [SMALL_STATE(1921)] = 100215, - [SMALL_STATE(1922)] = 100257, - [SMALL_STATE(1923)] = 100303, - [SMALL_STATE(1924)] = 100343, - [SMALL_STATE(1925)] = 100387, - [SMALL_STATE(1926)] = 100431, - [SMALL_STATE(1927)] = 100479, - [SMALL_STATE(1928)] = 100527, - [SMALL_STATE(1929)] = 100575, - [SMALL_STATE(1930)] = 100619, - [SMALL_STATE(1931)] = 100655, - [SMALL_STATE(1932)] = 100688, - [SMALL_STATE(1933)] = 100733, - [SMALL_STATE(1934)] = 100762, - [SMALL_STATE(1935)] = 100805, - [SMALL_STATE(1936)] = 100840, - [SMALL_STATE(1937)] = 100871, - [SMALL_STATE(1938)] = 100904, - [SMALL_STATE(1939)] = 100939, - [SMALL_STATE(1940)] = 100984, - [SMALL_STATE(1941)] = 101030, - [SMALL_STATE(1942)] = 101072, - [SMALL_STATE(1943)] = 101110, - [SMALL_STATE(1944)] = 101152, - [SMALL_STATE(1945)] = 101198, - [SMALL_STATE(1946)] = 101244, - [SMALL_STATE(1947)] = 101286, - [SMALL_STATE(1948)] = 101324, - [SMALL_STATE(1949)] = 101354, - [SMALL_STATE(1950)] = 101392, - [SMALL_STATE(1951)] = 101438, - [SMALL_STATE(1952)] = 101468, - [SMALL_STATE(1953)] = 101514, - [SMALL_STATE(1954)] = 101560, - [SMALL_STATE(1955)] = 101606, - [SMALL_STATE(1956)] = 101652, - [SMALL_STATE(1957)] = 101698, - [SMALL_STATE(1958)] = 101740, - [SMALL_STATE(1959)] = 101778, - [SMALL_STATE(1960)] = 101824, - [SMALL_STATE(1961)] = 101866, - [SMALL_STATE(1962)] = 101912, - [SMALL_STATE(1963)] = 101950, - [SMALL_STATE(1964)] = 101996, - [SMALL_STATE(1965)] = 102042, - [SMALL_STATE(1966)] = 102088, - [SMALL_STATE(1967)] = 102126, - [SMALL_STATE(1968)] = 102168, - [SMALL_STATE(1969)] = 102214, - [SMALL_STATE(1970)] = 102248, - [SMALL_STATE(1971)] = 102294, - [SMALL_STATE(1972)] = 102340, - [SMALL_STATE(1973)] = 102386, - [SMALL_STATE(1974)] = 102424, - [SMALL_STATE(1975)] = 102460, - [SMALL_STATE(1976)] = 102506, - [SMALL_STATE(1977)] = 102548, - [SMALL_STATE(1978)] = 102594, - [SMALL_STATE(1979)] = 102640, - [SMALL_STATE(1980)] = 102678, - [SMALL_STATE(1981)] = 102710, - [SMALL_STATE(1982)] = 102752, - [SMALL_STATE(1983)] = 102794, - [SMALL_STATE(1984)] = 102832, - [SMALL_STATE(1985)] = 102866, - [SMALL_STATE(1986)] = 102912, - [SMALL_STATE(1987)] = 102958, - [SMALL_STATE(1988)] = 102996, - [SMALL_STATE(1989)] = 103034, - [SMALL_STATE(1990)] = 103076, - [SMALL_STATE(1991)] = 103122, - [SMALL_STATE(1992)] = 103160, - [SMALL_STATE(1993)] = 103206, - [SMALL_STATE(1994)] = 103252, - [SMALL_STATE(1995)] = 103298, - [SMALL_STATE(1996)] = 103336, - [SMALL_STATE(1997)] = 103368, - [SMALL_STATE(1998)] = 103414, - [SMALL_STATE(1999)] = 103452, - [SMALL_STATE(2000)] = 103490, - [SMALL_STATE(2001)] = 103536, - [SMALL_STATE(2002)] = 103564, - [SMALL_STATE(2003)] = 103610, - [SMALL_STATE(2004)] = 103657, - [SMALL_STATE(2005)] = 103704, - [SMALL_STATE(2006)] = 103743, - [SMALL_STATE(2007)] = 103772, - [SMALL_STATE(2008)] = 103819, - [SMALL_STATE(2009)] = 103858, - [SMALL_STATE(2010)] = 103897, - [SMALL_STATE(2011)] = 103936, - [SMALL_STATE(2012)] = 103983, - [SMALL_STATE(2013)] = 104022, - [SMALL_STATE(2014)] = 104069, - [SMALL_STATE(2015)] = 104116, - [SMALL_STATE(2016)] = 104163, - [SMALL_STATE(2017)] = 104210, - [SMALL_STATE(2018)] = 104249, - [SMALL_STATE(2019)] = 104296, - [SMALL_STATE(2020)] = 104343, - [SMALL_STATE(2021)] = 104382, - [SMALL_STATE(2022)] = 104429, - [SMALL_STATE(2023)] = 104460, - [SMALL_STATE(2024)] = 104507, - [SMALL_STATE(2025)] = 104534, - [SMALL_STATE(2026)] = 104571, - [SMALL_STATE(2027)] = 104600, - [SMALL_STATE(2028)] = 104639, - [SMALL_STATE(2029)] = 104686, - [SMALL_STATE(2030)] = 104715, - [SMALL_STATE(2031)] = 104754, - [SMALL_STATE(2032)] = 104801, - [SMALL_STATE(2033)] = 104848, - [SMALL_STATE(2034)] = 104895, - [SMALL_STATE(2035)] = 104942, - [SMALL_STATE(2036)] = 104979, - [SMALL_STATE(2037)] = 105026, - [SMALL_STATE(2038)] = 105063, - [SMALL_STATE(2039)] = 105092, - [SMALL_STATE(2040)] = 105131, - [SMALL_STATE(2041)] = 105178, - [SMALL_STATE(2042)] = 105225, - [SMALL_STATE(2043)] = 105272, - [SMALL_STATE(2044)] = 105311, - [SMALL_STATE(2045)] = 105358, - [SMALL_STATE(2046)] = 105405, - [SMALL_STATE(2047)] = 105452, - [SMALL_STATE(2048)] = 105489, - [SMALL_STATE(2049)] = 105536, - [SMALL_STATE(2050)] = 105565, - [SMALL_STATE(2051)] = 105604, - [SMALL_STATE(2052)] = 105633, - [SMALL_STATE(2053)] = 105668, - [SMALL_STATE(2054)] = 105715, - [SMALL_STATE(2055)] = 105762, - [SMALL_STATE(2056)] = 105809, - [SMALL_STATE(2057)] = 105848, - [SMALL_STATE(2058)] = 105877, - [SMALL_STATE(2059)] = 105924, - [SMALL_STATE(2060)] = 105971, - [SMALL_STATE(2061)] = 106010, - [SMALL_STATE(2062)] = 106057, - [SMALL_STATE(2063)] = 106096, - [SMALL_STATE(2064)] = 106135, - [SMALL_STATE(2065)] = 106182, - [SMALL_STATE(2066)] = 106221, - [SMALL_STATE(2067)] = 106260, - [SMALL_STATE(2068)] = 106307, - [SMALL_STATE(2069)] = 106346, - [SMALL_STATE(2070)] = 106393, - [SMALL_STATE(2071)] = 106432, - [SMALL_STATE(2072)] = 106459, - [SMALL_STATE(2073)] = 106486, - [SMALL_STATE(2074)] = 106533, - [SMALL_STATE(2075)] = 106580, - [SMALL_STATE(2076)] = 106619, - [SMALL_STATE(2077)] = 106648, - [SMALL_STATE(2078)] = 106695, - [SMALL_STATE(2079)] = 106734, - [SMALL_STATE(2080)] = 106773, - [SMALL_STATE(2081)] = 106812, - [SMALL_STATE(2082)] = 106851, - [SMALL_STATE(2083)] = 106898, - [SMALL_STATE(2084)] = 106933, - [SMALL_STATE(2085)] = 106980, - [SMALL_STATE(2086)] = 107027, - [SMALL_STATE(2087)] = 107074, - [SMALL_STATE(2088)] = 107101, - [SMALL_STATE(2089)] = 107140, - [SMALL_STATE(2090)] = 107187, - [SMALL_STATE(2091)] = 107216, - [SMALL_STATE(2092)] = 107263, - [SMALL_STATE(2093)] = 107292, - [SMALL_STATE(2094)] = 107321, - [SMALL_STATE(2095)] = 107350, - [SMALL_STATE(2096)] = 107397, - [SMALL_STATE(2097)] = 107436, - [SMALL_STATE(2098)] = 107465, - [SMALL_STATE(2099)] = 107512, - [SMALL_STATE(2100)] = 107559, - [SMALL_STATE(2101)] = 107588, - [SMALL_STATE(2102)] = 107635, - [SMALL_STATE(2103)] = 107682, - [SMALL_STATE(2104)] = 107719, - [SMALL_STATE(2105)] = 107754, - [SMALL_STATE(2106)] = 107781, - [SMALL_STATE(2107)] = 107818, - [SMALL_STATE(2108)] = 107847, - [SMALL_STATE(2109)] = 107886, - [SMALL_STATE(2110)] = 107933, - [SMALL_STATE(2111)] = 107968, - [SMALL_STATE(2112)] = 108007, - [SMALL_STATE(2113)] = 108054, - [SMALL_STATE(2114)] = 108093, - [SMALL_STATE(2115)] = 108122, - [SMALL_STATE(2116)] = 108166, - [SMALL_STATE(2117)] = 108206, - [SMALL_STATE(2118)] = 108246, - [SMALL_STATE(2119)] = 108284, - [SMALL_STATE(2120)] = 108322, - [SMALL_STATE(2121)] = 108362, - [SMALL_STATE(2122)] = 108406, - [SMALL_STATE(2123)] = 108446, - [SMALL_STATE(2124)] = 108486, - [SMALL_STATE(2125)] = 108516, - [SMALL_STATE(2126)] = 108560, - [SMALL_STATE(2127)] = 108600, - [SMALL_STATE(2128)] = 108644, - [SMALL_STATE(2129)] = 108682, - [SMALL_STATE(2130)] = 108720, - [SMALL_STATE(2131)] = 108762, - [SMALL_STATE(2132)] = 108802, - [SMALL_STATE(2133)] = 108846, - [SMALL_STATE(2134)] = 108890, - [SMALL_STATE(2135)] = 108934, - [SMALL_STATE(2136)] = 108972, - [SMALL_STATE(2137)] = 109016, - [SMALL_STATE(2138)] = 109056, - [SMALL_STATE(2139)] = 109100, - [SMALL_STATE(2140)] = 109140, - [SMALL_STATE(2141)] = 109184, - [SMALL_STATE(2142)] = 109222, - [SMALL_STATE(2143)] = 109264, - [SMALL_STATE(2144)] = 109304, - [SMALL_STATE(2145)] = 109344, - [SMALL_STATE(2146)] = 109384, - [SMALL_STATE(2147)] = 109410, - [SMALL_STATE(2148)] = 109450, - [SMALL_STATE(2149)] = 109478, - [SMALL_STATE(2150)] = 109506, - [SMALL_STATE(2151)] = 109546, - [SMALL_STATE(2152)] = 109590, - [SMALL_STATE(2153)] = 109630, - [SMALL_STATE(2154)] = 109672, - [SMALL_STATE(2155)] = 109716, - [SMALL_STATE(2156)] = 109742, - [SMALL_STATE(2157)] = 109782, - [SMALL_STATE(2158)] = 109824, - [SMALL_STATE(2159)] = 109868, - [SMALL_STATE(2160)] = 109902, - [SMALL_STATE(2161)] = 109942, - [SMALL_STATE(2162)] = 109970, - [SMALL_STATE(2163)] = 109998, - [SMALL_STATE(2164)] = 110038, - [SMALL_STATE(2165)] = 110078, - [SMALL_STATE(2166)] = 110108, - [SMALL_STATE(2167)] = 110144, - [SMALL_STATE(2168)] = 110188, - [SMALL_STATE(2169)] = 110232, - [SMALL_STATE(2170)] = 110270, - [SMALL_STATE(2171)] = 110310, - [SMALL_STATE(2172)] = 110350, - [SMALL_STATE(2173)] = 110390, - [SMALL_STATE(2174)] = 110430, - [SMALL_STATE(2175)] = 110472, - [SMALL_STATE(2176)] = 110512, - [SMALL_STATE(2177)] = 110552, - [SMALL_STATE(2178)] = 110592, - [SMALL_STATE(2179)] = 110636, - [SMALL_STATE(2180)] = 110662, - [SMALL_STATE(2181)] = 110706, - [SMALL_STATE(2182)] = 110750, - [SMALL_STATE(2183)] = 110790, - [SMALL_STATE(2184)] = 110830, - [SMALL_STATE(2185)] = 110870, - [SMALL_STATE(2186)] = 110914, - [SMALL_STATE(2187)] = 110952, - [SMALL_STATE(2188)] = 110996, - [SMALL_STATE(2189)] = 111036, - [SMALL_STATE(2190)] = 111076, - [SMALL_STATE(2191)] = 111104, - [SMALL_STATE(2192)] = 111148, - [SMALL_STATE(2193)] = 111176, - [SMALL_STATE(2194)] = 111202, - [SMALL_STATE(2195)] = 111242, - [SMALL_STATE(2196)] = 111282, - [SMALL_STATE(2197)] = 111308, - [SMALL_STATE(2198)] = 111352, - [SMALL_STATE(2199)] = 111392, - [SMALL_STATE(2200)] = 111436, - [SMALL_STATE(2201)] = 111476, - [SMALL_STATE(2202)] = 111520, - [SMALL_STATE(2203)] = 111564, - [SMALL_STATE(2204)] = 111589, - [SMALL_STATE(2205)] = 111622, - [SMALL_STATE(2206)] = 111655, - [SMALL_STATE(2207)] = 111688, - [SMALL_STATE(2208)] = 111721, - [SMALL_STATE(2209)] = 111754, - [SMALL_STATE(2210)] = 111787, - [SMALL_STATE(2211)] = 111820, - [SMALL_STATE(2212)] = 111853, - [SMALL_STATE(2213)] = 111886, - [SMALL_STATE(2214)] = 111919, - [SMALL_STATE(2215)] = 111952, - [SMALL_STATE(2216)] = 111985, - [SMALL_STATE(2217)] = 112018, - [SMALL_STATE(2218)] = 112051, - [SMALL_STATE(2219)] = 112084, - [SMALL_STATE(2220)] = 112117, - [SMALL_STATE(2221)] = 112150, - [SMALL_STATE(2222)] = 112179, - [SMALL_STATE(2223)] = 112208, - [SMALL_STATE(2224)] = 112241, - [SMALL_STATE(2225)] = 112274, - [SMALL_STATE(2226)] = 112307, - [SMALL_STATE(2227)] = 112340, - [SMALL_STATE(2228)] = 112373, - [SMALL_STATE(2229)] = 112406, - [SMALL_STATE(2230)] = 112439, - [SMALL_STATE(2231)] = 112472, - [SMALL_STATE(2232)] = 112505, - [SMALL_STATE(2233)] = 112538, - [SMALL_STATE(2234)] = 112571, - [SMALL_STATE(2235)] = 112604, - [SMALL_STATE(2236)] = 112637, - [SMALL_STATE(2237)] = 112670, - [SMALL_STATE(2238)] = 112703, - [SMALL_STATE(2239)] = 112736, - [SMALL_STATE(2240)] = 112769, - [SMALL_STATE(2241)] = 112794, - [SMALL_STATE(2242)] = 112827, - [SMALL_STATE(2243)] = 112860, - [SMALL_STATE(2244)] = 112893, - [SMALL_STATE(2245)] = 112926, - [SMALL_STATE(2246)] = 112959, - [SMALL_STATE(2247)] = 112992, - [SMALL_STATE(2248)] = 113025, - [SMALL_STATE(2249)] = 113058, - [SMALL_STATE(2250)] = 113091, - [SMALL_STATE(2251)] = 113124, - [SMALL_STATE(2252)] = 113157, - [SMALL_STATE(2253)] = 113182, - [SMALL_STATE(2254)] = 113215, - [SMALL_STATE(2255)] = 113248, - [SMALL_STATE(2256)] = 113275, - [SMALL_STATE(2257)] = 113308, - [SMALL_STATE(2258)] = 113341, - [SMALL_STATE(2259)] = 113374, - [SMALL_STATE(2260)] = 113407, - [SMALL_STATE(2261)] = 113440, - [SMALL_STATE(2262)] = 113473, - [SMALL_STATE(2263)] = 113506, - [SMALL_STATE(2264)] = 113539, - [SMALL_STATE(2265)] = 113572, - [SMALL_STATE(2266)] = 113601, - [SMALL_STATE(2267)] = 113630, - [SMALL_STATE(2268)] = 113663, - [SMALL_STATE(2269)] = 113696, - [SMALL_STATE(2270)] = 113729, - [SMALL_STATE(2271)] = 113762, - [SMALL_STATE(2272)] = 113795, - [SMALL_STATE(2273)] = 113828, - [SMALL_STATE(2274)] = 113861, - [SMALL_STATE(2275)] = 113894, - [SMALL_STATE(2276)] = 113927, - [SMALL_STATE(2277)] = 113960, - [SMALL_STATE(2278)] = 113993, - [SMALL_STATE(2279)] = 114026, - [SMALL_STATE(2280)] = 114059, - [SMALL_STATE(2281)] = 114094, - [SMALL_STATE(2282)] = 114127, - [SMALL_STATE(2283)] = 114160, - [SMALL_STATE(2284)] = 114193, - [SMALL_STATE(2285)] = 114226, - [SMALL_STATE(2286)] = 114259, - [SMALL_STATE(2287)] = 114292, - [SMALL_STATE(2288)] = 114325, - [SMALL_STATE(2289)] = 114358, - [SMALL_STATE(2290)] = 114391, - [SMALL_STATE(2291)] = 114424, - [SMALL_STATE(2292)] = 114457, - [SMALL_STATE(2293)] = 114484, - [SMALL_STATE(2294)] = 114517, - [SMALL_STATE(2295)] = 114550, - [SMALL_STATE(2296)] = 114583, - [SMALL_STATE(2297)] = 114614, - [SMALL_STATE(2298)] = 114649, - [SMALL_STATE(2299)] = 114682, - [SMALL_STATE(2300)] = 114715, - [SMALL_STATE(2301)] = 114748, - [SMALL_STATE(2302)] = 114781, - [SMALL_STATE(2303)] = 114814, - [SMALL_STATE(2304)] = 114847, - [SMALL_STATE(2305)] = 114880, - [SMALL_STATE(2306)] = 114911, - [SMALL_STATE(2307)] = 114944, - [SMALL_STATE(2308)] = 114977, - [SMALL_STATE(2309)] = 115010, - [SMALL_STATE(2310)] = 115043, - [SMALL_STATE(2311)] = 115076, - [SMALL_STATE(2312)] = 115109, - [SMALL_STATE(2313)] = 115142, - [SMALL_STATE(2314)] = 115175, - [SMALL_STATE(2315)] = 115206, - [SMALL_STATE(2316)] = 115239, - [SMALL_STATE(2317)] = 115272, - [SMALL_STATE(2318)] = 115305, - [SMALL_STATE(2319)] = 115338, - [SMALL_STATE(2320)] = 115371, - [SMALL_STATE(2321)] = 115404, - [SMALL_STATE(2322)] = 115433, - [SMALL_STATE(2323)] = 115466, - [SMALL_STATE(2324)] = 115499, - [SMALL_STATE(2325)] = 115532, - [SMALL_STATE(2326)] = 115565, - [SMALL_STATE(2327)] = 115598, - [SMALL_STATE(2328)] = 115631, - [SMALL_STATE(2329)] = 115664, - [SMALL_STATE(2330)] = 115697, - [SMALL_STATE(2331)] = 115730, - [SMALL_STATE(2332)] = 115763, - [SMALL_STATE(2333)] = 115796, - [SMALL_STATE(2334)] = 115820, - [SMALL_STATE(2335)] = 115856, - [SMALL_STATE(2336)] = 115892, - [SMALL_STATE(2337)] = 115928, - [SMALL_STATE(2338)] = 115964, - [SMALL_STATE(2339)] = 115992, - [SMALL_STATE(2340)] = 116016, - [SMALL_STATE(2341)] = 116052, - [SMALL_STATE(2342)] = 116088, - [SMALL_STATE(2343)] = 116124, - [SMALL_STATE(2344)] = 116160, - [SMALL_STATE(2345)] = 116196, - [SMALL_STATE(2346)] = 116230, - [SMALL_STATE(2347)] = 116260, - [SMALL_STATE(2348)] = 116296, - [SMALL_STATE(2349)] = 116332, - [SMALL_STATE(2350)] = 116368, - [SMALL_STATE(2351)] = 116404, - [SMALL_STATE(2352)] = 116440, - [SMALL_STATE(2353)] = 116476, - [SMALL_STATE(2354)] = 116512, - [SMALL_STATE(2355)] = 116542, - [SMALL_STATE(2356)] = 116572, - [SMALL_STATE(2357)] = 116596, - [SMALL_STATE(2358)] = 116632, - [SMALL_STATE(2359)] = 116668, - [SMALL_STATE(2360)] = 116704, - [SMALL_STATE(2361)] = 116740, - [SMALL_STATE(2362)] = 116778, - [SMALL_STATE(2363)] = 116814, - [SMALL_STATE(2364)] = 116850, - [SMALL_STATE(2365)] = 116886, - [SMALL_STATE(2366)] = 116922, - [SMALL_STATE(2367)] = 116958, - [SMALL_STATE(2368)] = 116996, - [SMALL_STATE(2369)] = 117030, - [SMALL_STATE(2370)] = 117066, - [SMALL_STATE(2371)] = 117096, - [SMALL_STATE(2372)] = 117126, - [SMALL_STATE(2373)] = 117161, - [SMALL_STATE(2374)] = 117186, - [SMALL_STATE(2375)] = 117221, - [SMALL_STATE(2376)] = 117244, - [SMALL_STATE(2377)] = 117279, - [SMALL_STATE(2378)] = 117314, - [SMALL_STATE(2379)] = 117349, - [SMALL_STATE(2380)] = 117384, - [SMALL_STATE(2381)] = 117417, - [SMALL_STATE(2382)] = 117452, - [SMALL_STATE(2383)] = 117487, - [SMALL_STATE(2384)] = 117522, - [SMALL_STATE(2385)] = 117557, - [SMALL_STATE(2386)] = 117592, - [SMALL_STATE(2387)] = 117617, - [SMALL_STATE(2388)] = 117650, - [SMALL_STATE(2389)] = 117675, - [SMALL_STATE(2390)] = 117700, - [SMALL_STATE(2391)] = 117733, - [SMALL_STATE(2392)] = 117758, - [SMALL_STATE(2393)] = 117783, - [SMALL_STATE(2394)] = 117808, - [SMALL_STATE(2395)] = 117843, - [SMALL_STATE(2396)] = 117878, - [SMALL_STATE(2397)] = 117913, - [SMALL_STATE(2398)] = 117944, - [SMALL_STATE(2399)] = 117979, - [SMALL_STATE(2400)] = 118004, - [SMALL_STATE(2401)] = 118029, - [SMALL_STATE(2402)] = 118054, - [SMALL_STATE(2403)] = 118087, - [SMALL_STATE(2404)] = 118112, - [SMALL_STATE(2405)] = 118135, - [SMALL_STATE(2406)] = 118160, - [SMALL_STATE(2407)] = 118195, - [SMALL_STATE(2408)] = 118220, - [SMALL_STATE(2409)] = 118245, - [SMALL_STATE(2410)] = 118276, - [SMALL_STATE(2411)] = 118311, - [SMALL_STATE(2412)] = 118346, - [SMALL_STATE(2413)] = 118371, - [SMALL_STATE(2414)] = 118396, - [SMALL_STATE(2415)] = 118431, - [SMALL_STATE(2416)] = 118466, - [SMALL_STATE(2417)] = 118501, - [SMALL_STATE(2418)] = 118532, - [SMALL_STATE(2419)] = 118561, - [SMALL_STATE(2420)] = 118594, - [SMALL_STATE(2421)] = 118619, - [SMALL_STATE(2422)] = 118644, - [SMALL_STATE(2423)] = 118671, - [SMALL_STATE(2424)] = 118696, - [SMALL_STATE(2425)] = 118721, - [SMALL_STATE(2426)] = 118746, - [SMALL_STATE(2427)] = 118769, - [SMALL_STATE(2428)] = 118804, - [SMALL_STATE(2429)] = 118839, - [SMALL_STATE(2430)] = 118864, - [SMALL_STATE(2431)] = 118889, - [SMALL_STATE(2432)] = 118924, - [SMALL_STATE(2433)] = 118949, - [SMALL_STATE(2434)] = 118974, - [SMALL_STATE(2435)] = 118999, - [SMALL_STATE(2436)] = 119032, - [SMALL_STATE(2437)] = 119057, - [SMALL_STATE(2438)] = 119082, - [SMALL_STATE(2439)] = 119107, - [SMALL_STATE(2440)] = 119142, - [SMALL_STATE(2441)] = 119175, - [SMALL_STATE(2442)] = 119208, - [SMALL_STATE(2443)] = 119233, - [SMALL_STATE(2444)] = 119268, - [SMALL_STATE(2445)] = 119291, - [SMALL_STATE(2446)] = 119326, - [SMALL_STATE(2447)] = 119361, - [SMALL_STATE(2448)] = 119396, - [SMALL_STATE(2449)] = 119427, - [SMALL_STATE(2450)] = 119460, - [SMALL_STATE(2451)] = 119485, - [SMALL_STATE(2452)] = 119520, - [SMALL_STATE(2453)] = 119555, - [SMALL_STATE(2454)] = 119588, - [SMALL_STATE(2455)] = 119623, - [SMALL_STATE(2456)] = 119656, - [SMALL_STATE(2457)] = 119689, - [SMALL_STATE(2458)] = 119712, - [SMALL_STATE(2459)] = 119745, - [SMALL_STATE(2460)] = 119780, - [SMALL_STATE(2461)] = 119815, - [SMALL_STATE(2462)] = 119850, - [SMALL_STATE(2463)] = 119883, - [SMALL_STATE(2464)] = 119918, - [SMALL_STATE(2465)] = 119953, - [SMALL_STATE(2466)] = 119980, - [SMALL_STATE(2467)] = 120011, - [SMALL_STATE(2468)] = 120046, - [SMALL_STATE(2469)] = 120081, - [SMALL_STATE(2470)] = 120116, - [SMALL_STATE(2471)] = 120151, - [SMALL_STATE(2472)] = 120186, - [SMALL_STATE(2473)] = 120221, - [SMALL_STATE(2474)] = 120246, - [SMALL_STATE(2475)] = 120281, - [SMALL_STATE(2476)] = 120314, - [SMALL_STATE(2477)] = 120349, - [SMALL_STATE(2478)] = 120382, - [SMALL_STATE(2479)] = 120417, - [SMALL_STATE(2480)] = 120452, - [SMALL_STATE(2481)] = 120485, - [SMALL_STATE(2482)] = 120520, - [SMALL_STATE(2483)] = 120555, - [SMALL_STATE(2484)] = 120578, - [SMALL_STATE(2485)] = 120613, - [SMALL_STATE(2486)] = 120638, - [SMALL_STATE(2487)] = 120673, - [SMALL_STATE(2488)] = 120706, - [SMALL_STATE(2489)] = 120739, - [SMALL_STATE(2490)] = 120774, - [SMALL_STATE(2491)] = 120797, - [SMALL_STATE(2492)] = 120832, - [SMALL_STATE(2493)] = 120863, - [SMALL_STATE(2494)] = 120894, - [SMALL_STATE(2495)] = 120925, - [SMALL_STATE(2496)] = 120960, - [SMALL_STATE(2497)] = 120993, - [SMALL_STATE(2498)] = 121024, - [SMALL_STATE(2499)] = 121055, - [SMALL_STATE(2500)] = 121086, - [SMALL_STATE(2501)] = 121119, - [SMALL_STATE(2502)] = 121154, - [SMALL_STATE(2503)] = 121185, - [SMALL_STATE(2504)] = 121220, - [SMALL_STATE(2505)] = 121251, - [SMALL_STATE(2506)] = 121282, - [SMALL_STATE(2507)] = 121313, - [SMALL_STATE(2508)] = 121348, - [SMALL_STATE(2509)] = 121383, - [SMALL_STATE(2510)] = 121418, - [SMALL_STATE(2511)] = 121453, - [SMALL_STATE(2512)] = 121486, - [SMALL_STATE(2513)] = 121517, - [SMALL_STATE(2514)] = 121549, - [SMALL_STATE(2515)] = 121579, - [SMALL_STATE(2516)] = 121609, - [SMALL_STATE(2517)] = 121641, - [SMALL_STATE(2518)] = 121671, - [SMALL_STATE(2519)] = 121701, - [SMALL_STATE(2520)] = 121731, - [SMALL_STATE(2521)] = 121761, - [SMALL_STATE(2522)] = 121791, - [SMALL_STATE(2523)] = 121821, - [SMALL_STATE(2524)] = 121851, - [SMALL_STATE(2525)] = 121881, - [SMALL_STATE(2526)] = 121911, - [SMALL_STATE(2527)] = 121941, - [SMALL_STATE(2528)] = 121971, - [SMALL_STATE(2529)] = 122003, - [SMALL_STATE(2530)] = 122033, - [SMALL_STATE(2531)] = 122063, - [SMALL_STATE(2532)] = 122093, - [SMALL_STATE(2533)] = 122125, - [SMALL_STATE(2534)] = 122155, - [SMALL_STATE(2535)] = 122185, - [SMALL_STATE(2536)] = 122217, - [SMALL_STATE(2537)] = 122247, - [SMALL_STATE(2538)] = 122277, - [SMALL_STATE(2539)] = 122307, - [SMALL_STATE(2540)] = 122339, - [SMALL_STATE(2541)] = 122371, - [SMALL_STATE(2542)] = 122403, - [SMALL_STATE(2543)] = 122435, - [SMALL_STATE(2544)] = 122467, - [SMALL_STATE(2545)] = 122497, - [SMALL_STATE(2546)] = 122527, - [SMALL_STATE(2547)] = 122557, - [SMALL_STATE(2548)] = 122587, - [SMALL_STATE(2549)] = 122617, - [SMALL_STATE(2550)] = 122647, - [SMALL_STATE(2551)] = 122677, - [SMALL_STATE(2552)] = 122705, - [SMALL_STATE(2553)] = 122737, - [SMALL_STATE(2554)] = 122767, - [SMALL_STATE(2555)] = 122799, - [SMALL_STATE(2556)] = 122829, - [SMALL_STATE(2557)] = 122851, - [SMALL_STATE(2558)] = 122883, - [SMALL_STATE(2559)] = 122907, - [SMALL_STATE(2560)] = 122937, - [SMALL_STATE(2561)] = 122969, - [SMALL_STATE(2562)] = 122993, - [SMALL_STATE(2563)] = 123025, - [SMALL_STATE(2564)] = 123057, - [SMALL_STATE(2565)] = 123089, - [SMALL_STATE(2566)] = 123121, - [SMALL_STATE(2567)] = 123153, - [SMALL_STATE(2568)] = 123183, - [SMALL_STATE(2569)] = 123213, - [SMALL_STATE(2570)] = 123243, - [SMALL_STATE(2571)] = 123275, - [SMALL_STATE(2572)] = 123305, - [SMALL_STATE(2573)] = 123335, - [SMALL_STATE(2574)] = 123365, - [SMALL_STATE(2575)] = 123397, - [SMALL_STATE(2576)] = 123427, - [SMALL_STATE(2577)] = 123457, - [SMALL_STATE(2578)] = 123487, - [SMALL_STATE(2579)] = 123517, - [SMALL_STATE(2580)] = 123549, - [SMALL_STATE(2581)] = 123581, - [SMALL_STATE(2582)] = 123611, - [SMALL_STATE(2583)] = 123641, - [SMALL_STATE(2584)] = 123671, - [SMALL_STATE(2585)] = 123703, - [SMALL_STATE(2586)] = 123733, - [SMALL_STATE(2587)] = 123763, - [SMALL_STATE(2588)] = 123795, - [SMALL_STATE(2589)] = 123827, - [SMALL_STATE(2590)] = 123857, - [SMALL_STATE(2591)] = 123887, - [SMALL_STATE(2592)] = 123917, - [SMALL_STATE(2593)] = 123947, - [SMALL_STATE(2594)] = 123979, - [SMALL_STATE(2595)] = 124009, - [SMALL_STATE(2596)] = 124041, - [SMALL_STATE(2597)] = 124069, - [SMALL_STATE(2598)] = 124099, - [SMALL_STATE(2599)] = 124129, - [SMALL_STATE(2600)] = 124161, - [SMALL_STATE(2601)] = 124193, - [SMALL_STATE(2602)] = 124225, - [SMALL_STATE(2603)] = 124257, - [SMALL_STATE(2604)] = 124289, - [SMALL_STATE(2605)] = 124321, - [SMALL_STATE(2606)] = 124353, - [SMALL_STATE(2607)] = 124385, - [SMALL_STATE(2608)] = 124417, - [SMALL_STATE(2609)] = 124449, - [SMALL_STATE(2610)] = 124479, - [SMALL_STATE(2611)] = 124509, - [SMALL_STATE(2612)] = 124539, - [SMALL_STATE(2613)] = 124571, - [SMALL_STATE(2614)] = 124601, - [SMALL_STATE(2615)] = 124633, - [SMALL_STATE(2616)] = 124665, - [SMALL_STATE(2617)] = 124695, - [SMALL_STATE(2618)] = 124725, - [SMALL_STATE(2619)] = 124755, - [SMALL_STATE(2620)] = 124785, - [SMALL_STATE(2621)] = 124815, - [SMALL_STATE(2622)] = 124845, - [SMALL_STATE(2623)] = 124875, - [SMALL_STATE(2624)] = 124901, - [SMALL_STATE(2625)] = 124931, - [SMALL_STATE(2626)] = 124961, - [SMALL_STATE(2627)] = 124991, - [SMALL_STATE(2628)] = 125023, - [SMALL_STATE(2629)] = 125055, - [SMALL_STATE(2630)] = 125085, - [SMALL_STATE(2631)] = 125117, - [SMALL_STATE(2632)] = 125149, - [SMALL_STATE(2633)] = 125181, - [SMALL_STATE(2634)] = 125213, - [SMALL_STATE(2635)] = 125245, - [SMALL_STATE(2636)] = 125273, - [SMALL_STATE(2637)] = 125303, - [SMALL_STATE(2638)] = 125333, - [SMALL_STATE(2639)] = 125365, - [SMALL_STATE(2640)] = 125395, - [SMALL_STATE(2641)] = 125427, - [SMALL_STATE(2642)] = 125459, - [SMALL_STATE(2643)] = 125481, - [SMALL_STATE(2644)] = 125511, - [SMALL_STATE(2645)] = 125543, - [SMALL_STATE(2646)] = 125575, - [SMALL_STATE(2647)] = 125605, - [SMALL_STATE(2648)] = 125635, - [SMALL_STATE(2649)] = 125665, - [SMALL_STATE(2650)] = 125695, - [SMALL_STATE(2651)] = 125727, - [SMALL_STATE(2652)] = 125759, - [SMALL_STATE(2653)] = 125789, - [SMALL_STATE(2654)] = 125819, - [SMALL_STATE(2655)] = 125841, - [SMALL_STATE(2656)] = 125871, - [SMALL_STATE(2657)] = 125901, - [SMALL_STATE(2658)] = 125923, - [SMALL_STATE(2659)] = 125955, - [SMALL_STATE(2660)] = 125987, - [SMALL_STATE(2661)] = 126019, - [SMALL_STATE(2662)] = 126049, - [SMALL_STATE(2663)] = 126079, - [SMALL_STATE(2664)] = 126111, - [SMALL_STATE(2665)] = 126141, - [SMALL_STATE(2666)] = 126173, - [SMALL_STATE(2667)] = 126205, - [SMALL_STATE(2668)] = 126233, - [SMALL_STATE(2669)] = 126265, - [SMALL_STATE(2670)] = 126297, - [SMALL_STATE(2671)] = 126327, - [SMALL_STATE(2672)] = 126357, - [SMALL_STATE(2673)] = 126387, - [SMALL_STATE(2674)] = 126417, - [SMALL_STATE(2675)] = 126447, - [SMALL_STATE(2676)] = 126477, - [SMALL_STATE(2677)] = 126507, - [SMALL_STATE(2678)] = 126529, - [SMALL_STATE(2679)] = 126559, - [SMALL_STATE(2680)] = 126589, - [SMALL_STATE(2681)] = 126621, - [SMALL_STATE(2682)] = 126649, - [SMALL_STATE(2683)] = 126679, - [SMALL_STATE(2684)] = 126704, - [SMALL_STATE(2685)] = 126727, - [SMALL_STATE(2686)] = 126756, - [SMALL_STATE(2687)] = 126785, - [SMALL_STATE(2688)] = 126808, - [SMALL_STATE(2689)] = 126837, - [SMALL_STATE(2690)] = 126860, - [SMALL_STATE(2691)] = 126889, - [SMALL_STATE(2692)] = 126914, - [SMALL_STATE(2693)] = 126943, - [SMALL_STATE(2694)] = 126968, - [SMALL_STATE(2695)] = 126997, - [SMALL_STATE(2696)] = 127026, - [SMALL_STATE(2697)] = 127055, - [SMALL_STATE(2698)] = 127084, - [SMALL_STATE(2699)] = 127107, - [SMALL_STATE(2700)] = 127136, - [SMALL_STATE(2701)] = 127159, - [SMALL_STATE(2702)] = 127188, - [SMALL_STATE(2703)] = 127213, - [SMALL_STATE(2704)] = 127236, - [SMALL_STATE(2705)] = 127261, - [SMALL_STATE(2706)] = 127290, - [SMALL_STATE(2707)] = 127315, - [SMALL_STATE(2708)] = 127344, - [SMALL_STATE(2709)] = 127369, - [SMALL_STATE(2710)] = 127394, - [SMALL_STATE(2711)] = 127423, - [SMALL_STATE(2712)] = 127446, - [SMALL_STATE(2713)] = 127475, - [SMALL_STATE(2714)] = 127504, - [SMALL_STATE(2715)] = 127525, - [SMALL_STATE(2716)] = 127554, - [SMALL_STATE(2717)] = 127581, - [SMALL_STATE(2718)] = 127610, - [SMALL_STATE(2719)] = 127639, - [SMALL_STATE(2720)] = 127664, - [SMALL_STATE(2721)] = 127693, - [SMALL_STATE(2722)] = 127718, - [SMALL_STATE(2723)] = 127747, - [SMALL_STATE(2724)] = 127772, - [SMALL_STATE(2725)] = 127795, - [SMALL_STATE(2726)] = 127818, - [SMALL_STATE(2727)] = 127839, - [SMALL_STATE(2728)] = 127868, - [SMALL_STATE(2729)] = 127897, - [SMALL_STATE(2730)] = 127926, - [SMALL_STATE(2731)] = 127953, - [SMALL_STATE(2732)] = 127978, - [SMALL_STATE(2733)] = 128007, - [SMALL_STATE(2734)] = 128030, - [SMALL_STATE(2735)] = 128059, - [SMALL_STATE(2736)] = 128088, - [SMALL_STATE(2737)] = 128111, - [SMALL_STATE(2738)] = 128140, - [SMALL_STATE(2739)] = 128163, - [SMALL_STATE(2740)] = 128188, - [SMALL_STATE(2741)] = 128211, - [SMALL_STATE(2742)] = 128234, - [SMALL_STATE(2743)] = 128263, - [SMALL_STATE(2744)] = 128290, - [SMALL_STATE(2745)] = 128319, - [SMALL_STATE(2746)] = 128342, - [SMALL_STATE(2747)] = 128371, - [SMALL_STATE(2748)] = 128394, - [SMALL_STATE(2749)] = 128419, - [SMALL_STATE(2750)] = 128442, - [SMALL_STATE(2751)] = 128471, - [SMALL_STATE(2752)] = 128500, - [SMALL_STATE(2753)] = 128523, - [SMALL_STATE(2754)] = 128552, - [SMALL_STATE(2755)] = 128575, - [SMALL_STATE(2756)] = 128598, - [SMALL_STATE(2757)] = 128627, - [SMALL_STATE(2758)] = 128650, - [SMALL_STATE(2759)] = 128675, - [SMALL_STATE(2760)] = 128700, - [SMALL_STATE(2761)] = 128729, - [SMALL_STATE(2762)] = 128758, - [SMALL_STATE(2763)] = 128783, - [SMALL_STATE(2764)] = 128812, - [SMALL_STATE(2765)] = 128835, - [SMALL_STATE(2766)] = 128864, - [SMALL_STATE(2767)] = 128893, - [SMALL_STATE(2768)] = 128922, - [SMALL_STATE(2769)] = 128945, - [SMALL_STATE(2770)] = 128974, - [SMALL_STATE(2771)] = 129003, - [SMALL_STATE(2772)] = 129032, - [SMALL_STATE(2773)] = 129055, - [SMALL_STATE(2774)] = 129084, - [SMALL_STATE(2775)] = 129113, - [SMALL_STATE(2776)] = 129136, - [SMALL_STATE(2777)] = 129161, - [SMALL_STATE(2778)] = 129186, - [SMALL_STATE(2779)] = 129209, - [SMALL_STATE(2780)] = 129232, - [SMALL_STATE(2781)] = 129261, - [SMALL_STATE(2782)] = 129290, - [SMALL_STATE(2783)] = 129319, - [SMALL_STATE(2784)] = 129348, - [SMALL_STATE(2785)] = 129373, - [SMALL_STATE(2786)] = 129396, - [SMALL_STATE(2787)] = 129421, - [SMALL_STATE(2788)] = 129450, - [SMALL_STATE(2789)] = 129479, - [SMALL_STATE(2790)] = 129506, - [SMALL_STATE(2791)] = 129531, - [SMALL_STATE(2792)] = 129556, - [SMALL_STATE(2793)] = 129579, - [SMALL_STATE(2794)] = 129600, - [SMALL_STATE(2795)] = 129623, - [SMALL_STATE(2796)] = 129652, - [SMALL_STATE(2797)] = 129681, - [SMALL_STATE(2798)] = 129710, - [SMALL_STATE(2799)] = 129735, - [SMALL_STATE(2800)] = 129764, - [SMALL_STATE(2801)] = 129793, - [SMALL_STATE(2802)] = 129822, - [SMALL_STATE(2803)] = 129851, - [SMALL_STATE(2804)] = 129874, - [SMALL_STATE(2805)] = 129901, - [SMALL_STATE(2806)] = 129930, - [SMALL_STATE(2807)] = 129959, - [SMALL_STATE(2808)] = 129988, - [SMALL_STATE(2809)] = 130017, - [SMALL_STATE(2810)] = 130046, - [SMALL_STATE(2811)] = 130067, - [SMALL_STATE(2812)] = 130096, - [SMALL_STATE(2813)] = 130125, - [SMALL_STATE(2814)] = 130154, - [SMALL_STATE(2815)] = 130183, - [SMALL_STATE(2816)] = 130212, - [SMALL_STATE(2817)] = 130241, - [SMALL_STATE(2818)] = 130270, - [SMALL_STATE(2819)] = 130299, - [SMALL_STATE(2820)] = 130328, - [SMALL_STATE(2821)] = 130357, - [SMALL_STATE(2822)] = 130380, - [SMALL_STATE(2823)] = 130409, - [SMALL_STATE(2824)] = 130434, - [SMALL_STATE(2825)] = 130463, - [SMALL_STATE(2826)] = 130492, - [SMALL_STATE(2827)] = 130517, - [SMALL_STATE(2828)] = 130546, - [SMALL_STATE(2829)] = 130575, - [SMALL_STATE(2830)] = 130604, - [SMALL_STATE(2831)] = 130633, - [SMALL_STATE(2832)] = 130662, - [SMALL_STATE(2833)] = 130689, - [SMALL_STATE(2834)] = 130710, - [SMALL_STATE(2835)] = 130739, - [SMALL_STATE(2836)] = 130768, - [SMALL_STATE(2837)] = 130797, - [SMALL_STATE(2838)] = 130826, - [SMALL_STATE(2839)] = 130851, - [SMALL_STATE(2840)] = 130880, - [SMALL_STATE(2841)] = 130903, - [SMALL_STATE(2842)] = 130928, - [SMALL_STATE(2843)] = 130951, - [SMALL_STATE(2844)] = 130980, - [SMALL_STATE(2845)] = 131003, - [SMALL_STATE(2846)] = 131028, - [SMALL_STATE(2847)] = 131051, - [SMALL_STATE(2848)] = 131080, - [SMALL_STATE(2849)] = 131109, - [SMALL_STATE(2850)] = 131138, - [SMALL_STATE(2851)] = 131163, - [SMALL_STATE(2852)] = 131184, - [SMALL_STATE(2853)] = 131213, - [SMALL_STATE(2854)] = 131238, - [SMALL_STATE(2855)] = 131261, - [SMALL_STATE(2856)] = 131290, - [SMALL_STATE(2857)] = 131315, - [SMALL_STATE(2858)] = 131340, - [SMALL_STATE(2859)] = 131361, - [SMALL_STATE(2860)] = 131386, - [SMALL_STATE(2861)] = 131415, - [SMALL_STATE(2862)] = 131444, - [SMALL_STATE(2863)] = 131473, - [SMALL_STATE(2864)] = 131498, - [SMALL_STATE(2865)] = 131527, - [SMALL_STATE(2866)] = 131552, - [SMALL_STATE(2867)] = 131581, - [SMALL_STATE(2868)] = 131610, - [SMALL_STATE(2869)] = 131637, - [SMALL_STATE(2870)] = 131662, - [SMALL_STATE(2871)] = 131691, - [SMALL_STATE(2872)] = 131716, - [SMALL_STATE(2873)] = 131745, - [SMALL_STATE(2874)] = 131768, - [SMALL_STATE(2875)] = 131797, - [SMALL_STATE(2876)] = 131822, - [SMALL_STATE(2877)] = 131851, - [SMALL_STATE(2878)] = 131880, - [SMALL_STATE(2879)] = 131903, - [SMALL_STATE(2880)] = 131928, - [SMALL_STATE(2881)] = 131957, - [SMALL_STATE(2882)] = 131986, - [SMALL_STATE(2883)] = 132011, - [SMALL_STATE(2884)] = 132040, - [SMALL_STATE(2885)] = 132065, - [SMALL_STATE(2886)] = 132088, - [SMALL_STATE(2887)] = 132117, - [SMALL_STATE(2888)] = 132142, - [SMALL_STATE(2889)] = 132166, - [SMALL_STATE(2890)] = 132190, - [SMALL_STATE(2891)] = 132210, - [SMALL_STATE(2892)] = 132232, - [SMALL_STATE(2893)] = 132252, - [SMALL_STATE(2894)] = 132276, - [SMALL_STATE(2895)] = 132300, - [SMALL_STATE(2896)] = 132322, - [SMALL_STATE(2897)] = 132342, - [SMALL_STATE(2898)] = 132364, - [SMALL_STATE(2899)] = 132390, - [SMALL_STATE(2900)] = 132416, - [SMALL_STATE(2901)] = 132436, - [SMALL_STATE(2902)] = 132462, - [SMALL_STATE(2903)] = 132488, - [SMALL_STATE(2904)] = 132512, - [SMALL_STATE(2905)] = 132532, - [SMALL_STATE(2906)] = 132558, - [SMALL_STATE(2907)] = 132584, - [SMALL_STATE(2908)] = 132610, - [SMALL_STATE(2909)] = 132636, - [SMALL_STATE(2910)] = 132660, - [SMALL_STATE(2911)] = 132686, - [SMALL_STATE(2912)] = 132710, - [SMALL_STATE(2913)] = 132730, - [SMALL_STATE(2914)] = 132756, - [SMALL_STATE(2915)] = 132782, - [SMALL_STATE(2916)] = 132808, - [SMALL_STATE(2917)] = 132832, - [SMALL_STATE(2918)] = 132854, - [SMALL_STATE(2919)] = 132878, - [SMALL_STATE(2920)] = 132904, - [SMALL_STATE(2921)] = 132930, - [SMALL_STATE(2922)] = 132956, - [SMALL_STATE(2923)] = 132976, - [SMALL_STATE(2924)] = 133000, - [SMALL_STATE(2925)] = 133024, - [SMALL_STATE(2926)] = 133050, - [SMALL_STATE(2927)] = 133076, - [SMALL_STATE(2928)] = 133098, - [SMALL_STATE(2929)] = 133124, - [SMALL_STATE(2930)] = 133144, - [SMALL_STATE(2931)] = 133168, - [SMALL_STATE(2932)] = 133188, - [SMALL_STATE(2933)] = 133208, - [SMALL_STATE(2934)] = 133232, - [SMALL_STATE(2935)] = 133252, - [SMALL_STATE(2936)] = 133278, - [SMALL_STATE(2937)] = 133298, - [SMALL_STATE(2938)] = 133324, - [SMALL_STATE(2939)] = 133348, - [SMALL_STATE(2940)] = 133374, - [SMALL_STATE(2941)] = 133398, - [SMALL_STATE(2942)] = 133424, - [SMALL_STATE(2943)] = 133448, - [SMALL_STATE(2944)] = 133474, - [SMALL_STATE(2945)] = 133496, - [SMALL_STATE(2946)] = 133520, - [SMALL_STATE(2947)] = 133544, - [SMALL_STATE(2948)] = 133568, - [SMALL_STATE(2949)] = 133592, - [SMALL_STATE(2950)] = 133618, - [SMALL_STATE(2951)] = 133642, - [SMALL_STATE(2952)] = 133666, - [SMALL_STATE(2953)] = 133692, - [SMALL_STATE(2954)] = 133718, - [SMALL_STATE(2955)] = 133742, - [SMALL_STATE(2956)] = 133764, - [SMALL_STATE(2957)] = 133784, - [SMALL_STATE(2958)] = 133810, - [SMALL_STATE(2959)] = 133834, - [SMALL_STATE(2960)] = 133858, - [SMALL_STATE(2961)] = 133884, - [SMALL_STATE(2962)] = 133908, - [SMALL_STATE(2963)] = 133930, - [SMALL_STATE(2964)] = 133950, - [SMALL_STATE(2965)] = 133970, - [SMALL_STATE(2966)] = 133996, - [SMALL_STATE(2967)] = 134018, - [SMALL_STATE(2968)] = 134042, - [SMALL_STATE(2969)] = 134066, - [SMALL_STATE(2970)] = 134088, - [SMALL_STATE(2971)] = 134114, - [SMALL_STATE(2972)] = 134136, - [SMALL_STATE(2973)] = 134158, - [SMALL_STATE(2974)] = 134184, - [SMALL_STATE(2975)] = 134210, - [SMALL_STATE(2976)] = 134230, - [SMALL_STATE(2977)] = 134254, - [SMALL_STATE(2978)] = 134278, - [SMALL_STATE(2979)] = 134298, - [SMALL_STATE(2980)] = 134322, - [SMALL_STATE(2981)] = 134342, - [SMALL_STATE(2982)] = 134368, - [SMALL_STATE(2983)] = 134392, - [SMALL_STATE(2984)] = 134418, - [SMALL_STATE(2985)] = 134440, - [SMALL_STATE(2986)] = 134460, - [SMALL_STATE(2987)] = 134482, - [SMALL_STATE(2988)] = 134506, - [SMALL_STATE(2989)] = 134530, - [SMALL_STATE(2990)] = 134556, - [SMALL_STATE(2991)] = 134582, - [SMALL_STATE(2992)] = 134606, - [SMALL_STATE(2993)] = 134630, - [SMALL_STATE(2994)] = 134654, - [SMALL_STATE(2995)] = 134678, - [SMALL_STATE(2996)] = 134700, - [SMALL_STATE(2997)] = 134720, - [SMALL_STATE(2998)] = 134742, - [SMALL_STATE(2999)] = 134762, - [SMALL_STATE(3000)] = 134782, - [SMALL_STATE(3001)] = 134808, - [SMALL_STATE(3002)] = 134832, - [SMALL_STATE(3003)] = 134854, - [SMALL_STATE(3004)] = 134878, - [SMALL_STATE(3005)] = 134902, - [SMALL_STATE(3006)] = 134922, - [SMALL_STATE(3007)] = 134946, - [SMALL_STATE(3008)] = 134972, - [SMALL_STATE(3009)] = 134998, - [SMALL_STATE(3010)] = 135020, - [SMALL_STATE(3011)] = 135046, - [SMALL_STATE(3012)] = 135066, - [SMALL_STATE(3013)] = 135092, - [SMALL_STATE(3014)] = 135118, - [SMALL_STATE(3015)] = 135144, - [SMALL_STATE(3016)] = 135170, - [SMALL_STATE(3017)] = 135196, - [SMALL_STATE(3018)] = 135216, - [SMALL_STATE(3019)] = 135242, - [SMALL_STATE(3020)] = 135266, - [SMALL_STATE(3021)] = 135290, - [SMALL_STATE(3022)] = 135309, - [SMALL_STATE(3023)] = 135328, - [SMALL_STATE(3024)] = 135351, - [SMALL_STATE(3025)] = 135374, - [SMALL_STATE(3026)] = 135397, - [SMALL_STATE(3027)] = 135420, - [SMALL_STATE(3028)] = 135443, - [SMALL_STATE(3029)] = 135462, - [SMALL_STATE(3030)] = 135485, - [SMALL_STATE(3031)] = 135504, - [SMALL_STATE(3032)] = 135523, - [SMALL_STATE(3033)] = 135542, - [SMALL_STATE(3034)] = 135561, - [SMALL_STATE(3035)] = 135580, - [SMALL_STATE(3036)] = 135603, - [SMALL_STATE(3037)] = 135626, - [SMALL_STATE(3038)] = 135645, - [SMALL_STATE(3039)] = 135668, - [SMALL_STATE(3040)] = 135691, - [SMALL_STATE(3041)] = 135714, - [SMALL_STATE(3042)] = 135737, - [SMALL_STATE(3043)] = 135760, - [SMALL_STATE(3044)] = 135783, - [SMALL_STATE(3045)] = 135806, - [SMALL_STATE(3046)] = 135829, - [SMALL_STATE(3047)] = 135852, - [SMALL_STATE(3048)] = 135875, - [SMALL_STATE(3049)] = 135898, - [SMALL_STATE(3050)] = 135921, - [SMALL_STATE(3051)] = 135940, - [SMALL_STATE(3052)] = 135963, - [SMALL_STATE(3053)] = 135982, - [SMALL_STATE(3054)] = 136005, - [SMALL_STATE(3055)] = 136028, - [SMALL_STATE(3056)] = 136051, - [SMALL_STATE(3057)] = 136074, - [SMALL_STATE(3058)] = 136097, - [SMALL_STATE(3059)] = 136120, - [SMALL_STATE(3060)] = 136143, - [SMALL_STATE(3061)] = 136166, - [SMALL_STATE(3062)] = 136189, - [SMALL_STATE(3063)] = 136212, - [SMALL_STATE(3064)] = 136235, - [SMALL_STATE(3065)] = 136258, - [SMALL_STATE(3066)] = 136281, - [SMALL_STATE(3067)] = 136304, - [SMALL_STATE(3068)] = 136327, - [SMALL_STATE(3069)] = 136350, - [SMALL_STATE(3070)] = 136373, - [SMALL_STATE(3071)] = 136396, - [SMALL_STATE(3072)] = 136419, - [SMALL_STATE(3073)] = 136442, - [SMALL_STATE(3074)] = 136465, - [SMALL_STATE(3075)] = 136488, - [SMALL_STATE(3076)] = 136511, - [SMALL_STATE(3077)] = 136534, - [SMALL_STATE(3078)] = 136557, - [SMALL_STATE(3079)] = 136580, - [SMALL_STATE(3080)] = 136603, - [SMALL_STATE(3081)] = 136626, - [SMALL_STATE(3082)] = 136649, - [SMALL_STATE(3083)] = 136672, - [SMALL_STATE(3084)] = 136695, - [SMALL_STATE(3085)] = 136718, - [SMALL_STATE(3086)] = 136741, - [SMALL_STATE(3087)] = 136764, - [SMALL_STATE(3088)] = 136787, - [SMALL_STATE(3089)] = 136810, - [SMALL_STATE(3090)] = 136833, - [SMALL_STATE(3091)] = 136856, - [SMALL_STATE(3092)] = 136879, - [SMALL_STATE(3093)] = 136902, - [SMALL_STATE(3094)] = 136925, - [SMALL_STATE(3095)] = 136948, - [SMALL_STATE(3096)] = 136971, - [SMALL_STATE(3097)] = 136994, - [SMALL_STATE(3098)] = 137017, - [SMALL_STATE(3099)] = 137040, - [SMALL_STATE(3100)] = 137063, - [SMALL_STATE(3101)] = 137086, - [SMALL_STATE(3102)] = 137109, - [SMALL_STATE(3103)] = 137132, - [SMALL_STATE(3104)] = 137155, - [SMALL_STATE(3105)] = 137178, - [SMALL_STATE(3106)] = 137201, - [SMALL_STATE(3107)] = 137220, - [SMALL_STATE(3108)] = 137243, - [SMALL_STATE(3109)] = 137266, - [SMALL_STATE(3110)] = 137289, - [SMALL_STATE(3111)] = 137312, - [SMALL_STATE(3112)] = 137335, - [SMALL_STATE(3113)] = 137358, - [SMALL_STATE(3114)] = 137381, - [SMALL_STATE(3115)] = 137404, - [SMALL_STATE(3116)] = 137427, - [SMALL_STATE(3117)] = 137450, - [SMALL_STATE(3118)] = 137473, - [SMALL_STATE(3119)] = 137496, - [SMALL_STATE(3120)] = 137519, - [SMALL_STATE(3121)] = 137542, - [SMALL_STATE(3122)] = 137565, - [SMALL_STATE(3123)] = 137588, - [SMALL_STATE(3124)] = 137611, - [SMALL_STATE(3125)] = 137634, - [SMALL_STATE(3126)] = 137657, - [SMALL_STATE(3127)] = 137680, - [SMALL_STATE(3128)] = 137701, - [SMALL_STATE(3129)] = 137724, - [SMALL_STATE(3130)] = 137747, - [SMALL_STATE(3131)] = 137770, - [SMALL_STATE(3132)] = 137793, - [SMALL_STATE(3133)] = 137816, - [SMALL_STATE(3134)] = 137839, - [SMALL_STATE(3135)] = 137862, - [SMALL_STATE(3136)] = 137885, - [SMALL_STATE(3137)] = 137908, - [SMALL_STATE(3138)] = 137931, - [SMALL_STATE(3139)] = 137952, - [SMALL_STATE(3140)] = 137973, - [SMALL_STATE(3141)] = 137996, - [SMALL_STATE(3142)] = 138019, - [SMALL_STATE(3143)] = 138042, - [SMALL_STATE(3144)] = 138065, - [SMALL_STATE(3145)] = 138086, - [SMALL_STATE(3146)] = 138109, - [SMALL_STATE(3147)] = 138132, - [SMALL_STATE(3148)] = 138155, - [SMALL_STATE(3149)] = 138178, - [SMALL_STATE(3150)] = 138201, - [SMALL_STATE(3151)] = 138224, - [SMALL_STATE(3152)] = 138247, - [SMALL_STATE(3153)] = 138270, - [SMALL_STATE(3154)] = 138289, - [SMALL_STATE(3155)] = 138312, - [SMALL_STATE(3156)] = 138335, - [SMALL_STATE(3157)] = 138356, - [SMALL_STATE(3158)] = 138379, - [SMALL_STATE(3159)] = 138402, - [SMALL_STATE(3160)] = 138425, - [SMALL_STATE(3161)] = 138448, - [SMALL_STATE(3162)] = 138471, - [SMALL_STATE(3163)] = 138494, - [SMALL_STATE(3164)] = 138517, - [SMALL_STATE(3165)] = 138540, - [SMALL_STATE(3166)] = 138563, - [SMALL_STATE(3167)] = 138586, - [SMALL_STATE(3168)] = 138609, - [SMALL_STATE(3169)] = 138632, - [SMALL_STATE(3170)] = 138655, - [SMALL_STATE(3171)] = 138678, - [SMALL_STATE(3172)] = 138697, - [SMALL_STATE(3173)] = 138720, - [SMALL_STATE(3174)] = 138743, - [SMALL_STATE(3175)] = 138766, - [SMALL_STATE(3176)] = 138789, - [SMALL_STATE(3177)] = 138812, - [SMALL_STATE(3178)] = 138835, - [SMALL_STATE(3179)] = 138858, - [SMALL_STATE(3180)] = 138881, - [SMALL_STATE(3181)] = 138904, - [SMALL_STATE(3182)] = 138927, - [SMALL_STATE(3183)] = 138950, - [SMALL_STATE(3184)] = 138973, - [SMALL_STATE(3185)] = 138996, - [SMALL_STATE(3186)] = 139019, - [SMALL_STATE(3187)] = 139040, - [SMALL_STATE(3188)] = 139063, - [SMALL_STATE(3189)] = 139086, - [SMALL_STATE(3190)] = 139109, - [SMALL_STATE(3191)] = 139132, - [SMALL_STATE(3192)] = 139155, - [SMALL_STATE(3193)] = 139178, - [SMALL_STATE(3194)] = 139201, - [SMALL_STATE(3195)] = 139224, - [SMALL_STATE(3196)] = 139247, - [SMALL_STATE(3197)] = 139270, - [SMALL_STATE(3198)] = 139293, - [SMALL_STATE(3199)] = 139312, - [SMALL_STATE(3200)] = 139331, - [SMALL_STATE(3201)] = 139354, - [SMALL_STATE(3202)] = 139377, - [SMALL_STATE(3203)] = 139400, - [SMALL_STATE(3204)] = 139423, - [SMALL_STATE(3205)] = 139446, - [SMALL_STATE(3206)] = 139469, - [SMALL_STATE(3207)] = 139492, - [SMALL_STATE(3208)] = 139515, - [SMALL_STATE(3209)] = 139538, - [SMALL_STATE(3210)] = 139561, - [SMALL_STATE(3211)] = 139584, - [SMALL_STATE(3212)] = 139607, - [SMALL_STATE(3213)] = 139630, - [SMALL_STATE(3214)] = 139653, - [SMALL_STATE(3215)] = 139676, - [SMALL_STATE(3216)] = 139699, - [SMALL_STATE(3217)] = 139722, - [SMALL_STATE(3218)] = 139745, - [SMALL_STATE(3219)] = 139768, - [SMALL_STATE(3220)] = 139791, - [SMALL_STATE(3221)] = 139814, - [SMALL_STATE(3222)] = 139837, - [SMALL_STATE(3223)] = 139860, - [SMALL_STATE(3224)] = 139883, - [SMALL_STATE(3225)] = 139906, - [SMALL_STATE(3226)] = 139929, - [SMALL_STATE(3227)] = 139952, - [SMALL_STATE(3228)] = 139971, - [SMALL_STATE(3229)] = 139994, - [SMALL_STATE(3230)] = 140017, - [SMALL_STATE(3231)] = 140040, - [SMALL_STATE(3232)] = 140063, - [SMALL_STATE(3233)] = 140086, - [SMALL_STATE(3234)] = 140109, - [SMALL_STATE(3235)] = 140128, - [SMALL_STATE(3236)] = 140147, - [SMALL_STATE(3237)] = 140170, - [SMALL_STATE(3238)] = 140193, - [SMALL_STATE(3239)] = 140216, - [SMALL_STATE(3240)] = 140239, - [SMALL_STATE(3241)] = 140262, - [SMALL_STATE(3242)] = 140283, - [SMALL_STATE(3243)] = 140306, - [SMALL_STATE(3244)] = 140329, - [SMALL_STATE(3245)] = 140352, - [SMALL_STATE(3246)] = 140375, - [SMALL_STATE(3247)] = 140398, - [SMALL_STATE(3248)] = 140421, - [SMALL_STATE(3249)] = 140444, - [SMALL_STATE(3250)] = 140467, - [SMALL_STATE(3251)] = 140490, - [SMALL_STATE(3252)] = 140513, - [SMALL_STATE(3253)] = 140536, - [SMALL_STATE(3254)] = 140559, - [SMALL_STATE(3255)] = 140582, - [SMALL_STATE(3256)] = 140605, - [SMALL_STATE(3257)] = 140628, - [SMALL_STATE(3258)] = 140651, - [SMALL_STATE(3259)] = 140672, - [SMALL_STATE(3260)] = 140695, - [SMALL_STATE(3261)] = 140718, - [SMALL_STATE(3262)] = 140739, - [SMALL_STATE(3263)] = 140762, - [SMALL_STATE(3264)] = 140785, - [SMALL_STATE(3265)] = 140808, - [SMALL_STATE(3266)] = 140831, - [SMALL_STATE(3267)] = 140854, - [SMALL_STATE(3268)] = 140877, - [SMALL_STATE(3269)] = 140896, - [SMALL_STATE(3270)] = 140919, - [SMALL_STATE(3271)] = 140942, - [SMALL_STATE(3272)] = 140965, - [SMALL_STATE(3273)] = 140988, - [SMALL_STATE(3274)] = 141011, - [SMALL_STATE(3275)] = 141034, - [SMALL_STATE(3276)] = 141057, - [SMALL_STATE(3277)] = 141080, - [SMALL_STATE(3278)] = 141103, - [SMALL_STATE(3279)] = 141122, - [SMALL_STATE(3280)] = 141145, - [SMALL_STATE(3281)] = 141168, - [SMALL_STATE(3282)] = 141191, - [SMALL_STATE(3283)] = 141214, - [SMALL_STATE(3284)] = 141237, - [SMALL_STATE(3285)] = 141256, - [SMALL_STATE(3286)] = 141275, - [SMALL_STATE(3287)] = 141296, - [SMALL_STATE(3288)] = 141319, - [SMALL_STATE(3289)] = 141342, - [SMALL_STATE(3290)] = 141365, - [SMALL_STATE(3291)] = 141384, - [SMALL_STATE(3292)] = 141403, - [SMALL_STATE(3293)] = 141422, - [SMALL_STATE(3294)] = 141441, - [SMALL_STATE(3295)] = 141464, - [SMALL_STATE(3296)] = 141487, - [SMALL_STATE(3297)] = 141510, - [SMALL_STATE(3298)] = 141533, - [SMALL_STATE(3299)] = 141556, - [SMALL_STATE(3300)] = 141575, - [SMALL_STATE(3301)] = 141594, - [SMALL_STATE(3302)] = 141617, - [SMALL_STATE(3303)] = 141636, - [SMALL_STATE(3304)] = 141659, - [SMALL_STATE(3305)] = 141678, - [SMALL_STATE(3306)] = 141697, - [SMALL_STATE(3307)] = 141716, - [SMALL_STATE(3308)] = 141739, - [SMALL_STATE(3309)] = 141758, - [SMALL_STATE(3310)] = 141777, - [SMALL_STATE(3311)] = 141800, - [SMALL_STATE(3312)] = 141823, - [SMALL_STATE(3313)] = 141842, - [SMALL_STATE(3314)] = 141865, - [SMALL_STATE(3315)] = 141888, - [SMALL_STATE(3316)] = 141911, - [SMALL_STATE(3317)] = 141930, - [SMALL_STATE(3318)] = 141953, - [SMALL_STATE(3319)] = 141972, - [SMALL_STATE(3320)] = 141991, - [SMALL_STATE(3321)] = 142014, - [SMALL_STATE(3322)] = 142037, - [SMALL_STATE(3323)] = 142056, - [SMALL_STATE(3324)] = 142075, - [SMALL_STATE(3325)] = 142094, - [SMALL_STATE(3326)] = 142113, - [SMALL_STATE(3327)] = 142136, - [SMALL_STATE(3328)] = 142155, - [SMALL_STATE(3329)] = 142178, - [SMALL_STATE(3330)] = 142201, - [SMALL_STATE(3331)] = 142220, - [SMALL_STATE(3332)] = 142243, - [SMALL_STATE(3333)] = 142262, - [SMALL_STATE(3334)] = 142281, - [SMALL_STATE(3335)] = 142300, - [SMALL_STATE(3336)] = 142323, - [SMALL_STATE(3337)] = 142342, - [SMALL_STATE(3338)] = 142361, - [SMALL_STATE(3339)] = 142380, - [SMALL_STATE(3340)] = 142399, - [SMALL_STATE(3341)] = 142418, - [SMALL_STATE(3342)] = 142441, - [SMALL_STATE(3343)] = 142460, - [SMALL_STATE(3344)] = 142483, - [SMALL_STATE(3345)] = 142502, - [SMALL_STATE(3346)] = 142521, - [SMALL_STATE(3347)] = 142540, - [SMALL_STATE(3348)] = 142559, - [SMALL_STATE(3349)] = 142578, - [SMALL_STATE(3350)] = 142597, - [SMALL_STATE(3351)] = 142620, - [SMALL_STATE(3352)] = 142639, - [SMALL_STATE(3353)] = 142662, - [SMALL_STATE(3354)] = 142681, - [SMALL_STATE(3355)] = 142700, - [SMALL_STATE(3356)] = 142719, - [SMALL_STATE(3357)] = 142738, - [SMALL_STATE(3358)] = 142757, - [SMALL_STATE(3359)] = 142780, - [SMALL_STATE(3360)] = 142799, - [SMALL_STATE(3361)] = 142822, - [SMALL_STATE(3362)] = 142845, - [SMALL_STATE(3363)] = 142864, - [SMALL_STATE(3364)] = 142887, - [SMALL_STATE(3365)] = 142906, - [SMALL_STATE(3366)] = 142925, - [SMALL_STATE(3367)] = 142948, - [SMALL_STATE(3368)] = 142971, - [SMALL_STATE(3369)] = 142990, - [SMALL_STATE(3370)] = 143009, - [SMALL_STATE(3371)] = 143028, - [SMALL_STATE(3372)] = 143047, - [SMALL_STATE(3373)] = 143066, - [SMALL_STATE(3374)] = 143089, - [SMALL_STATE(3375)] = 143108, - [SMALL_STATE(3376)] = 143127, - [SMALL_STATE(3377)] = 143146, - [SMALL_STATE(3378)] = 143165, - [SMALL_STATE(3379)] = 143184, - [SMALL_STATE(3380)] = 143203, - [SMALL_STATE(3381)] = 143222, - [SMALL_STATE(3382)] = 143245, - [SMALL_STATE(3383)] = 143264, - [SMALL_STATE(3384)] = 143283, - [SMALL_STATE(3385)] = 143306, - [SMALL_STATE(3386)] = 143325, - [SMALL_STATE(3387)] = 143344, - [SMALL_STATE(3388)] = 143363, - [SMALL_STATE(3389)] = 143382, - [SMALL_STATE(3390)] = 143401, - [SMALL_STATE(3391)] = 143420, - [SMALL_STATE(3392)] = 143439, - [SMALL_STATE(3393)] = 143462, - [SMALL_STATE(3394)] = 143485, - [SMALL_STATE(3395)] = 143508, - [SMALL_STATE(3396)] = 143531, - [SMALL_STATE(3397)] = 143554, - [SMALL_STATE(3398)] = 143577, - [SMALL_STATE(3399)] = 143600, - [SMALL_STATE(3400)] = 143623, - [SMALL_STATE(3401)] = 143646, - [SMALL_STATE(3402)] = 143669, - [SMALL_STATE(3403)] = 143692, - [SMALL_STATE(3404)] = 143715, - [SMALL_STATE(3405)] = 143738, - [SMALL_STATE(3406)] = 143757, - [SMALL_STATE(3407)] = 143776, - [SMALL_STATE(3408)] = 143795, - [SMALL_STATE(3409)] = 143818, - [SMALL_STATE(3410)] = 143841, - [SMALL_STATE(3411)] = 143860, - [SMALL_STATE(3412)] = 143883, - [SMALL_STATE(3413)] = 143906, - [SMALL_STATE(3414)] = 143925, - [SMALL_STATE(3415)] = 143948, - [SMALL_STATE(3416)] = 143971, - [SMALL_STATE(3417)] = 143994, - [SMALL_STATE(3418)] = 144017, - [SMALL_STATE(3419)] = 144036, - [SMALL_STATE(3420)] = 144055, - [SMALL_STATE(3421)] = 144074, - [SMALL_STATE(3422)] = 144097, - [SMALL_STATE(3423)] = 144120, - [SMALL_STATE(3424)] = 144139, - [SMALL_STATE(3425)] = 144158, - [SMALL_STATE(3426)] = 144177, - [SMALL_STATE(3427)] = 144198, - [SMALL_STATE(3428)] = 144221, - [SMALL_STATE(3429)] = 144244, - [SMALL_STATE(3430)] = 144263, - [SMALL_STATE(3431)] = 144282, - [SMALL_STATE(3432)] = 144305, - [SMALL_STATE(3433)] = 144328, - [SMALL_STATE(3434)] = 144351, - [SMALL_STATE(3435)] = 144374, - [SMALL_STATE(3436)] = 144393, - [SMALL_STATE(3437)] = 144416, - [SMALL_STATE(3438)] = 144435, - [SMALL_STATE(3439)] = 144454, - [SMALL_STATE(3440)] = 144473, - [SMALL_STATE(3441)] = 144496, - [SMALL_STATE(3442)] = 144519, - [SMALL_STATE(3443)] = 144542, - [SMALL_STATE(3444)] = 144561, - [SMALL_STATE(3445)] = 144580, - [SMALL_STATE(3446)] = 144599, - [SMALL_STATE(3447)] = 144618, - [SMALL_STATE(3448)] = 144641, - [SMALL_STATE(3449)] = 144660, - [SMALL_STATE(3450)] = 144683, - [SMALL_STATE(3451)] = 144706, - [SMALL_STATE(3452)] = 144725, - [SMALL_STATE(3453)] = 144744, - [SMALL_STATE(3454)] = 144763, - [SMALL_STATE(3455)] = 144782, - [SMALL_STATE(3456)] = 144801, - [SMALL_STATE(3457)] = 144824, - [SMALL_STATE(3458)] = 144847, - [SMALL_STATE(3459)] = 144866, - [SMALL_STATE(3460)] = 144885, - [SMALL_STATE(3461)] = 144908, - [SMALL_STATE(3462)] = 144927, - [SMALL_STATE(3463)] = 144950, - [SMALL_STATE(3464)] = 144969, - [SMALL_STATE(3465)] = 144992, - [SMALL_STATE(3466)] = 145011, - [SMALL_STATE(3467)] = 145030, - [SMALL_STATE(3468)] = 145049, - [SMALL_STATE(3469)] = 145072, - [SMALL_STATE(3470)] = 145095, - [SMALL_STATE(3471)] = 145118, - [SMALL_STATE(3472)] = 145141, - [SMALL_STATE(3473)] = 145164, - [SMALL_STATE(3474)] = 145187, - [SMALL_STATE(3475)] = 145210, - [SMALL_STATE(3476)] = 145233, - [SMALL_STATE(3477)] = 145256, - [SMALL_STATE(3478)] = 145279, - [SMALL_STATE(3479)] = 145302, - [SMALL_STATE(3480)] = 145323, - [SMALL_STATE(3481)] = 145346, - [SMALL_STATE(3482)] = 145365, - [SMALL_STATE(3483)] = 145388, - [SMALL_STATE(3484)] = 145411, - [SMALL_STATE(3485)] = 145434, - [SMALL_STATE(3486)] = 145457, - [SMALL_STATE(3487)] = 145480, - [SMALL_STATE(3488)] = 145501, - [SMALL_STATE(3489)] = 145524, - [SMALL_STATE(3490)] = 145547, - [SMALL_STATE(3491)] = 145570, - [SMALL_STATE(3492)] = 145593, - [SMALL_STATE(3493)] = 145616, - [SMALL_STATE(3494)] = 145639, - [SMALL_STATE(3495)] = 145660, - [SMALL_STATE(3496)] = 145683, - [SMALL_STATE(3497)] = 145706, - [SMALL_STATE(3498)] = 145729, - [SMALL_STATE(3499)] = 145752, - [SMALL_STATE(3500)] = 145775, - [SMALL_STATE(3501)] = 145798, - [SMALL_STATE(3502)] = 145817, - [SMALL_STATE(3503)] = 145840, - [SMALL_STATE(3504)] = 145863, - [SMALL_STATE(3505)] = 145886, - [SMALL_STATE(3506)] = 145909, - [SMALL_STATE(3507)] = 145932, - [SMALL_STATE(3508)] = 145951, - [SMALL_STATE(3509)] = 145974, - [SMALL_STATE(3510)] = 145994, - [SMALL_STATE(3511)] = 146014, - [SMALL_STATE(3512)] = 146034, - [SMALL_STATE(3513)] = 146054, - [SMALL_STATE(3514)] = 146074, - [SMALL_STATE(3515)] = 146094, - [SMALL_STATE(3516)] = 146114, - [SMALL_STATE(3517)] = 146134, - [SMALL_STATE(3518)] = 146154, - [SMALL_STATE(3519)] = 146174, - [SMALL_STATE(3520)] = 146194, - [SMALL_STATE(3521)] = 146214, - [SMALL_STATE(3522)] = 146234, - [SMALL_STATE(3523)] = 146254, - [SMALL_STATE(3524)] = 146274, - [SMALL_STATE(3525)] = 146294, - [SMALL_STATE(3526)] = 146314, - [SMALL_STATE(3527)] = 146334, - [SMALL_STATE(3528)] = 146354, - [SMALL_STATE(3529)] = 146374, - [SMALL_STATE(3530)] = 146394, - [SMALL_STATE(3531)] = 146412, - [SMALL_STATE(3532)] = 146432, - [SMALL_STATE(3533)] = 146452, - [SMALL_STATE(3534)] = 146472, - [SMALL_STATE(3535)] = 146492, - [SMALL_STATE(3536)] = 146512, - [SMALL_STATE(3537)] = 146532, - [SMALL_STATE(3538)] = 146552, - [SMALL_STATE(3539)] = 146572, - [SMALL_STATE(3540)] = 146592, - [SMALL_STATE(3541)] = 146612, - [SMALL_STATE(3542)] = 146632, - [SMALL_STATE(3543)] = 146652, - [SMALL_STATE(3544)] = 146672, - [SMALL_STATE(3545)] = 146692, - [SMALL_STATE(3546)] = 146712, - [SMALL_STATE(3547)] = 146732, - [SMALL_STATE(3548)] = 146752, - [SMALL_STATE(3549)] = 146772, - [SMALL_STATE(3550)] = 146792, - [SMALL_STATE(3551)] = 146812, - [SMALL_STATE(3552)] = 146832, - [SMALL_STATE(3553)] = 146852, - [SMALL_STATE(3554)] = 146872, - [SMALL_STATE(3555)] = 146892, - [SMALL_STATE(3556)] = 146912, - [SMALL_STATE(3557)] = 146932, - [SMALL_STATE(3558)] = 146952, - [SMALL_STATE(3559)] = 146972, - [SMALL_STATE(3560)] = 146992, - [SMALL_STATE(3561)] = 147012, - [SMALL_STATE(3562)] = 147032, - [SMALL_STATE(3563)] = 147052, - [SMALL_STATE(3564)] = 147072, - [SMALL_STATE(3565)] = 147092, - [SMALL_STATE(3566)] = 147112, - [SMALL_STATE(3567)] = 147132, - [SMALL_STATE(3568)] = 147152, - [SMALL_STATE(3569)] = 147172, - [SMALL_STATE(3570)] = 147190, - [SMALL_STATE(3571)] = 147210, - [SMALL_STATE(3572)] = 147230, - [SMALL_STATE(3573)] = 147250, - [SMALL_STATE(3574)] = 147270, - [SMALL_STATE(3575)] = 147290, - [SMALL_STATE(3576)] = 147310, - [SMALL_STATE(3577)] = 147330, - [SMALL_STATE(3578)] = 147350, - [SMALL_STATE(3579)] = 147370, - [SMALL_STATE(3580)] = 147390, - [SMALL_STATE(3581)] = 147410, - [SMALL_STATE(3582)] = 147430, - [SMALL_STATE(3583)] = 147450, - [SMALL_STATE(3584)] = 147470, - [SMALL_STATE(3585)] = 147488, - [SMALL_STATE(3586)] = 147508, - [SMALL_STATE(3587)] = 147528, - [SMALL_STATE(3588)] = 147546, - [SMALL_STATE(3589)] = 147566, - [SMALL_STATE(3590)] = 147586, - [SMALL_STATE(3591)] = 147604, - [SMALL_STATE(3592)] = 147624, - [SMALL_STATE(3593)] = 147644, - [SMALL_STATE(3594)] = 147664, - [SMALL_STATE(3595)] = 147684, - [SMALL_STATE(3596)] = 147704, - [SMALL_STATE(3597)] = 147724, - [SMALL_STATE(3598)] = 147744, - [SMALL_STATE(3599)] = 147762, - [SMALL_STATE(3600)] = 147782, - [SMALL_STATE(3601)] = 147802, - [SMALL_STATE(3602)] = 147822, - [SMALL_STATE(3603)] = 147842, - [SMALL_STATE(3604)] = 147860, - [SMALL_STATE(3605)] = 147880, - [SMALL_STATE(3606)] = 147900, - [SMALL_STATE(3607)] = 147920, - [SMALL_STATE(3608)] = 147940, - [SMALL_STATE(3609)] = 147958, - [SMALL_STATE(3610)] = 147978, - [SMALL_STATE(3611)] = 147998, - [SMALL_STATE(3612)] = 148018, - [SMALL_STATE(3613)] = 148038, - [SMALL_STATE(3614)] = 148058, - [SMALL_STATE(3615)] = 148078, - [SMALL_STATE(3616)] = 148098, - [SMALL_STATE(3617)] = 148118, - [SMALL_STATE(3618)] = 148138, - [SMALL_STATE(3619)] = 148158, - [SMALL_STATE(3620)] = 148178, - [SMALL_STATE(3621)] = 148198, - [SMALL_STATE(3622)] = 148216, - [SMALL_STATE(3623)] = 148236, - [SMALL_STATE(3624)] = 148256, - [SMALL_STATE(3625)] = 148276, - [SMALL_STATE(3626)] = 148296, - [SMALL_STATE(3627)] = 148316, - [SMALL_STATE(3628)] = 148336, - [SMALL_STATE(3629)] = 148354, - [SMALL_STATE(3630)] = 148374, - [SMALL_STATE(3631)] = 148394, - [SMALL_STATE(3632)] = 148414, - [SMALL_STATE(3633)] = 148434, - [SMALL_STATE(3634)] = 148454, - [SMALL_STATE(3635)] = 148474, - [SMALL_STATE(3636)] = 148494, - [SMALL_STATE(3637)] = 148514, - [SMALL_STATE(3638)] = 148534, - [SMALL_STATE(3639)] = 148552, - [SMALL_STATE(3640)] = 148572, - [SMALL_STATE(3641)] = 148592, - [SMALL_STATE(3642)] = 148612, - [SMALL_STATE(3643)] = 148630, - [SMALL_STATE(3644)] = 148648, - [SMALL_STATE(3645)] = 148668, - [SMALL_STATE(3646)] = 148688, - [SMALL_STATE(3647)] = 148708, - [SMALL_STATE(3648)] = 148728, - [SMALL_STATE(3649)] = 148748, - [SMALL_STATE(3650)] = 148768, - [SMALL_STATE(3651)] = 148788, - [SMALL_STATE(3652)] = 148808, - [SMALL_STATE(3653)] = 148828, - [SMALL_STATE(3654)] = 148848, - [SMALL_STATE(3655)] = 148868, - [SMALL_STATE(3656)] = 148888, - [SMALL_STATE(3657)] = 148908, - [SMALL_STATE(3658)] = 148928, - [SMALL_STATE(3659)] = 148948, - [SMALL_STATE(3660)] = 148968, - [SMALL_STATE(3661)] = 148988, - [SMALL_STATE(3662)] = 149008, - [SMALL_STATE(3663)] = 149028, - [SMALL_STATE(3664)] = 149048, - [SMALL_STATE(3665)] = 149068, - [SMALL_STATE(3666)] = 149088, - [SMALL_STATE(3667)] = 149108, - [SMALL_STATE(3668)] = 149128, - [SMALL_STATE(3669)] = 149148, - [SMALL_STATE(3670)] = 149168, - [SMALL_STATE(3671)] = 149188, - [SMALL_STATE(3672)] = 149208, - [SMALL_STATE(3673)] = 149228, - [SMALL_STATE(3674)] = 149248, - [SMALL_STATE(3675)] = 149268, - [SMALL_STATE(3676)] = 149288, - [SMALL_STATE(3677)] = 149308, - [SMALL_STATE(3678)] = 149328, - [SMALL_STATE(3679)] = 149348, - [SMALL_STATE(3680)] = 149368, - [SMALL_STATE(3681)] = 149388, - [SMALL_STATE(3682)] = 149408, - [SMALL_STATE(3683)] = 149428, - [SMALL_STATE(3684)] = 149448, - [SMALL_STATE(3685)] = 149468, - [SMALL_STATE(3686)] = 149488, - [SMALL_STATE(3687)] = 149508, - [SMALL_STATE(3688)] = 149528, - [SMALL_STATE(3689)] = 149546, - [SMALL_STATE(3690)] = 149566, - [SMALL_STATE(3691)] = 149584, - [SMALL_STATE(3692)] = 149604, - [SMALL_STATE(3693)] = 149624, - [SMALL_STATE(3694)] = 149644, - [SMALL_STATE(3695)] = 149664, - [SMALL_STATE(3696)] = 149684, - [SMALL_STATE(3697)] = 149704, - [SMALL_STATE(3698)] = 149724, - [SMALL_STATE(3699)] = 149744, - [SMALL_STATE(3700)] = 149764, - [SMALL_STATE(3701)] = 149784, - [SMALL_STATE(3702)] = 149804, - [SMALL_STATE(3703)] = 149824, - [SMALL_STATE(3704)] = 149844, - [SMALL_STATE(3705)] = 149864, - [SMALL_STATE(3706)] = 149884, - [SMALL_STATE(3707)] = 149904, - [SMALL_STATE(3708)] = 149924, - [SMALL_STATE(3709)] = 149944, - [SMALL_STATE(3710)] = 149964, - [SMALL_STATE(3711)] = 149984, - [SMALL_STATE(3712)] = 150004, - [SMALL_STATE(3713)] = 150024, - [SMALL_STATE(3714)] = 150044, - [SMALL_STATE(3715)] = 150064, - [SMALL_STATE(3716)] = 150084, - [SMALL_STATE(3717)] = 150104, - [SMALL_STATE(3718)] = 150124, - [SMALL_STATE(3719)] = 150144, - [SMALL_STATE(3720)] = 150164, - [SMALL_STATE(3721)] = 150184, - [SMALL_STATE(3722)] = 150204, - [SMALL_STATE(3723)] = 150224, - [SMALL_STATE(3724)] = 150244, - [SMALL_STATE(3725)] = 150264, - [SMALL_STATE(3726)] = 150284, - [SMALL_STATE(3727)] = 150304, - [SMALL_STATE(3728)] = 150322, - [SMALL_STATE(3729)] = 150342, - [SMALL_STATE(3730)] = 150362, - [SMALL_STATE(3731)] = 150382, - [SMALL_STATE(3732)] = 150402, - [SMALL_STATE(3733)] = 150422, - [SMALL_STATE(3734)] = 150442, - [SMALL_STATE(3735)] = 150462, - [SMALL_STATE(3736)] = 150482, - [SMALL_STATE(3737)] = 150502, - [SMALL_STATE(3738)] = 150522, - [SMALL_STATE(3739)] = 150542, - [SMALL_STATE(3740)] = 150562, - [SMALL_STATE(3741)] = 150582, - [SMALL_STATE(3742)] = 150602, - [SMALL_STATE(3743)] = 150622, - [SMALL_STATE(3744)] = 150642, - [SMALL_STATE(3745)] = 150662, - [SMALL_STATE(3746)] = 150682, - [SMALL_STATE(3747)] = 150702, - [SMALL_STATE(3748)] = 150722, - [SMALL_STATE(3749)] = 150742, - [SMALL_STATE(3750)] = 150762, - [SMALL_STATE(3751)] = 150782, - [SMALL_STATE(3752)] = 150802, - [SMALL_STATE(3753)] = 150822, - [SMALL_STATE(3754)] = 150842, - [SMALL_STATE(3755)] = 150862, - [SMALL_STATE(3756)] = 150882, - [SMALL_STATE(3757)] = 150902, - [SMALL_STATE(3758)] = 150922, - [SMALL_STATE(3759)] = 150942, - [SMALL_STATE(3760)] = 150962, - [SMALL_STATE(3761)] = 150982, - [SMALL_STATE(3762)] = 151002, - [SMALL_STATE(3763)] = 151022, - [SMALL_STATE(3764)] = 151042, - [SMALL_STATE(3765)] = 151062, - [SMALL_STATE(3766)] = 151082, - [SMALL_STATE(3767)] = 151102, - [SMALL_STATE(3768)] = 151122, - [SMALL_STATE(3769)] = 151142, - [SMALL_STATE(3770)] = 151162, - [SMALL_STATE(3771)] = 151182, - [SMALL_STATE(3772)] = 151202, - [SMALL_STATE(3773)] = 151220, - [SMALL_STATE(3774)] = 151238, - [SMALL_STATE(3775)] = 151258, - [SMALL_STATE(3776)] = 151278, - [SMALL_STATE(3777)] = 151298, - [SMALL_STATE(3778)] = 151318, - [SMALL_STATE(3779)] = 151336, - [SMALL_STATE(3780)] = 151356, - [SMALL_STATE(3781)] = 151376, - [SMALL_STATE(3782)] = 151396, - [SMALL_STATE(3783)] = 151416, - [SMALL_STATE(3784)] = 151436, - [SMALL_STATE(3785)] = 151456, - [SMALL_STATE(3786)] = 151476, - [SMALL_STATE(3787)] = 151496, - [SMALL_STATE(3788)] = 151516, - [SMALL_STATE(3789)] = 151536, - [SMALL_STATE(3790)] = 151556, - [SMALL_STATE(3791)] = 151576, - [SMALL_STATE(3792)] = 151596, - [SMALL_STATE(3793)] = 151616, - [SMALL_STATE(3794)] = 151636, - [SMALL_STATE(3795)] = 151656, - [SMALL_STATE(3796)] = 151676, - [SMALL_STATE(3797)] = 151696, - [SMALL_STATE(3798)] = 151716, - [SMALL_STATE(3799)] = 151736, - [SMALL_STATE(3800)] = 151756, - [SMALL_STATE(3801)] = 151776, - [SMALL_STATE(3802)] = 151796, - [SMALL_STATE(3803)] = 151814, - [SMALL_STATE(3804)] = 151834, - [SMALL_STATE(3805)] = 151854, - [SMALL_STATE(3806)] = 151874, - [SMALL_STATE(3807)] = 151894, - [SMALL_STATE(3808)] = 151914, - [SMALL_STATE(3809)] = 151934, - [SMALL_STATE(3810)] = 151954, - [SMALL_STATE(3811)] = 151974, - [SMALL_STATE(3812)] = 151994, - [SMALL_STATE(3813)] = 152014, - [SMALL_STATE(3814)] = 152034, - [SMALL_STATE(3815)] = 152052, - [SMALL_STATE(3816)] = 152072, - [SMALL_STATE(3817)] = 152092, - [SMALL_STATE(3818)] = 152112, - [SMALL_STATE(3819)] = 152132, - [SMALL_STATE(3820)] = 152152, - [SMALL_STATE(3821)] = 152172, - [SMALL_STATE(3822)] = 152192, - [SMALL_STATE(3823)] = 152210, - [SMALL_STATE(3824)] = 152230, - [SMALL_STATE(3825)] = 152250, - [SMALL_STATE(3826)] = 152270, - [SMALL_STATE(3827)] = 152290, - [SMALL_STATE(3828)] = 152310, - [SMALL_STATE(3829)] = 152330, - [SMALL_STATE(3830)] = 152350, - [SMALL_STATE(3831)] = 152370, - [SMALL_STATE(3832)] = 152390, - [SMALL_STATE(3833)] = 152410, - [SMALL_STATE(3834)] = 152430, - [SMALL_STATE(3835)] = 152450, - [SMALL_STATE(3836)] = 152470, - [SMALL_STATE(3837)] = 152490, - [SMALL_STATE(3838)] = 152510, - [SMALL_STATE(3839)] = 152530, - [SMALL_STATE(3840)] = 152550, - [SMALL_STATE(3841)] = 152570, - [SMALL_STATE(3842)] = 152590, - [SMALL_STATE(3843)] = 152610, - [SMALL_STATE(3844)] = 152630, - [SMALL_STATE(3845)] = 152650, - [SMALL_STATE(3846)] = 152670, - [SMALL_STATE(3847)] = 152690, - [SMALL_STATE(3848)] = 152710, - [SMALL_STATE(3849)] = 152728, - [SMALL_STATE(3850)] = 152748, - [SMALL_STATE(3851)] = 152768, - [SMALL_STATE(3852)] = 152788, - [SMALL_STATE(3853)] = 152808, - [SMALL_STATE(3854)] = 152828, - [SMALL_STATE(3855)] = 152848, - [SMALL_STATE(3856)] = 152868, - [SMALL_STATE(3857)] = 152888, - [SMALL_STATE(3858)] = 152908, - [SMALL_STATE(3859)] = 152928, - [SMALL_STATE(3860)] = 152948, - [SMALL_STATE(3861)] = 152968, - [SMALL_STATE(3862)] = 152988, - [SMALL_STATE(3863)] = 153008, - [SMALL_STATE(3864)] = 153028, - [SMALL_STATE(3865)] = 153046, - [SMALL_STATE(3866)] = 153066, - [SMALL_STATE(3867)] = 153086, - [SMALL_STATE(3868)] = 153106, - [SMALL_STATE(3869)] = 153126, - [SMALL_STATE(3870)] = 153146, - [SMALL_STATE(3871)] = 153166, - [SMALL_STATE(3872)] = 153186, - [SMALL_STATE(3873)] = 153206, - [SMALL_STATE(3874)] = 153224, - [SMALL_STATE(3875)] = 153244, - [SMALL_STATE(3876)] = 153264, - [SMALL_STATE(3877)] = 153284, - [SMALL_STATE(3878)] = 153304, - [SMALL_STATE(3879)] = 153324, - [SMALL_STATE(3880)] = 153344, - [SMALL_STATE(3881)] = 153364, - [SMALL_STATE(3882)] = 153384, - [SMALL_STATE(3883)] = 153404, - [SMALL_STATE(3884)] = 153424, - [SMALL_STATE(3885)] = 153444, - [SMALL_STATE(3886)] = 153464, - [SMALL_STATE(3887)] = 153484, - [SMALL_STATE(3888)] = 153504, - [SMALL_STATE(3889)] = 153524, - [SMALL_STATE(3890)] = 153544, - [SMALL_STATE(3891)] = 153562, - [SMALL_STATE(3892)] = 153582, - [SMALL_STATE(3893)] = 153602, - [SMALL_STATE(3894)] = 153622, - [SMALL_STATE(3895)] = 153642, - [SMALL_STATE(3896)] = 153662, - [SMALL_STATE(3897)] = 153682, - [SMALL_STATE(3898)] = 153702, - [SMALL_STATE(3899)] = 153722, - [SMALL_STATE(3900)] = 153742, - [SMALL_STATE(3901)] = 153762, - [SMALL_STATE(3902)] = 153782, - [SMALL_STATE(3903)] = 153802, - [SMALL_STATE(3904)] = 153822, - [SMALL_STATE(3905)] = 153840, - [SMALL_STATE(3906)] = 153860, - [SMALL_STATE(3907)] = 153880, - [SMALL_STATE(3908)] = 153900, - [SMALL_STATE(3909)] = 153920, - [SMALL_STATE(3910)] = 153940, - [SMALL_STATE(3911)] = 153960, - [SMALL_STATE(3912)] = 153978, - [SMALL_STATE(3913)] = 153998, - [SMALL_STATE(3914)] = 154018, - [SMALL_STATE(3915)] = 154038, - [SMALL_STATE(3916)] = 154058, - [SMALL_STATE(3917)] = 154078, - [SMALL_STATE(3918)] = 154098, - [SMALL_STATE(3919)] = 154118, - [SMALL_STATE(3920)] = 154138, - [SMALL_STATE(3921)] = 154158, - [SMALL_STATE(3922)] = 154178, - [SMALL_STATE(3923)] = 154198, - [SMALL_STATE(3924)] = 154218, - [SMALL_STATE(3925)] = 154238, - [SMALL_STATE(3926)] = 154256, - [SMALL_STATE(3927)] = 154274, - [SMALL_STATE(3928)] = 154294, - [SMALL_STATE(3929)] = 154314, - [SMALL_STATE(3930)] = 154332, - [SMALL_STATE(3931)] = 154352, - [SMALL_STATE(3932)] = 154372, - [SMALL_STATE(3933)] = 154392, - [SMALL_STATE(3934)] = 154412, - [SMALL_STATE(3935)] = 154432, - [SMALL_STATE(3936)] = 154452, - [SMALL_STATE(3937)] = 154472, - [SMALL_STATE(3938)] = 154492, - [SMALL_STATE(3939)] = 154512, - [SMALL_STATE(3940)] = 154532, - [SMALL_STATE(3941)] = 154552, - [SMALL_STATE(3942)] = 154572, - [SMALL_STATE(3943)] = 154590, - [SMALL_STATE(3944)] = 154608, - [SMALL_STATE(3945)] = 154628, - [SMALL_STATE(3946)] = 154648, - [SMALL_STATE(3947)] = 154668, - [SMALL_STATE(3948)] = 154688, - [SMALL_STATE(3949)] = 154708, - [SMALL_STATE(3950)] = 154728, - [SMALL_STATE(3951)] = 154746, - [SMALL_STATE(3952)] = 154766, - [SMALL_STATE(3953)] = 154786, - [SMALL_STATE(3954)] = 154806, - [SMALL_STATE(3955)] = 154826, - [SMALL_STATE(3956)] = 154846, - [SMALL_STATE(3957)] = 154866, - [SMALL_STATE(3958)] = 154886, - [SMALL_STATE(3959)] = 154906, - [SMALL_STATE(3960)] = 154926, - [SMALL_STATE(3961)] = 154946, - [SMALL_STATE(3962)] = 154966, - [SMALL_STATE(3963)] = 154986, - [SMALL_STATE(3964)] = 155006, - [SMALL_STATE(3965)] = 155026, - [SMALL_STATE(3966)] = 155046, - [SMALL_STATE(3967)] = 155066, - [SMALL_STATE(3968)] = 155086, - [SMALL_STATE(3969)] = 155106, - [SMALL_STATE(3970)] = 155126, - [SMALL_STATE(3971)] = 155146, - [SMALL_STATE(3972)] = 155166, - [SMALL_STATE(3973)] = 155186, - [SMALL_STATE(3974)] = 155206, - [SMALL_STATE(3975)] = 155226, - [SMALL_STATE(3976)] = 155246, - [SMALL_STATE(3977)] = 155266, - [SMALL_STATE(3978)] = 155286, - [SMALL_STATE(3979)] = 155306, - [SMALL_STATE(3980)] = 155326, - [SMALL_STATE(3981)] = 155346, - [SMALL_STATE(3982)] = 155366, - [SMALL_STATE(3983)] = 155386, - [SMALL_STATE(3984)] = 155406, - [SMALL_STATE(3985)] = 155426, - [SMALL_STATE(3986)] = 155446, - [SMALL_STATE(3987)] = 155466, - [SMALL_STATE(3988)] = 155486, - [SMALL_STATE(3989)] = 155506, - [SMALL_STATE(3990)] = 155524, - [SMALL_STATE(3991)] = 155544, - [SMALL_STATE(3992)] = 155564, - [SMALL_STATE(3993)] = 155584, - [SMALL_STATE(3994)] = 155604, - [SMALL_STATE(3995)] = 155624, - [SMALL_STATE(3996)] = 155642, - [SMALL_STATE(3997)] = 155662, - [SMALL_STATE(3998)] = 155682, - [SMALL_STATE(3999)] = 155700, - [SMALL_STATE(4000)] = 155720, - [SMALL_STATE(4001)] = 155740, - [SMALL_STATE(4002)] = 155758, - [SMALL_STATE(4003)] = 155778, - [SMALL_STATE(4004)] = 155798, - [SMALL_STATE(4005)] = 155818, - [SMALL_STATE(4006)] = 155836, - [SMALL_STATE(4007)] = 155856, - [SMALL_STATE(4008)] = 155874, - [SMALL_STATE(4009)] = 155894, - [SMALL_STATE(4010)] = 155914, - [SMALL_STATE(4011)] = 155934, - [SMALL_STATE(4012)] = 155954, - [SMALL_STATE(4013)] = 155974, - [SMALL_STATE(4014)] = 155992, - [SMALL_STATE(4015)] = 156010, - [SMALL_STATE(4016)] = 156030, - [SMALL_STATE(4017)] = 156048, - [SMALL_STATE(4018)] = 156066, - [SMALL_STATE(4019)] = 156086, - [SMALL_STATE(4020)] = 156104, - [SMALL_STATE(4021)] = 156124, - [SMALL_STATE(4022)] = 156144, - [SMALL_STATE(4023)] = 156162, - [SMALL_STATE(4024)] = 156182, - [SMALL_STATE(4025)] = 156202, - [SMALL_STATE(4026)] = 156219, - [SMALL_STATE(4027)] = 156236, - [SMALL_STATE(4028)] = 156253, - [SMALL_STATE(4029)] = 156270, - [SMALL_STATE(4030)] = 156287, - [SMALL_STATE(4031)] = 156304, - [SMALL_STATE(4032)] = 156321, - [SMALL_STATE(4033)] = 156338, - [SMALL_STATE(4034)] = 156355, - [SMALL_STATE(4035)] = 156372, - [SMALL_STATE(4036)] = 156389, - [SMALL_STATE(4037)] = 156406, - [SMALL_STATE(4038)] = 156423, - [SMALL_STATE(4039)] = 156440, - [SMALL_STATE(4040)] = 156457, - [SMALL_STATE(4041)] = 156474, - [SMALL_STATE(4042)] = 156491, - [SMALL_STATE(4043)] = 156508, - [SMALL_STATE(4044)] = 156525, - [SMALL_STATE(4045)] = 156542, - [SMALL_STATE(4046)] = 156559, - [SMALL_STATE(4047)] = 156576, - [SMALL_STATE(4048)] = 156593, - [SMALL_STATE(4049)] = 156610, - [SMALL_STATE(4050)] = 156627, - [SMALL_STATE(4051)] = 156644, - [SMALL_STATE(4052)] = 156661, - [SMALL_STATE(4053)] = 156678, - [SMALL_STATE(4054)] = 156695, - [SMALL_STATE(4055)] = 156712, - [SMALL_STATE(4056)] = 156729, - [SMALL_STATE(4057)] = 156746, - [SMALL_STATE(4058)] = 156763, - [SMALL_STATE(4059)] = 156780, - [SMALL_STATE(4060)] = 156797, - [SMALL_STATE(4061)] = 156814, - [SMALL_STATE(4062)] = 156831, - [SMALL_STATE(4063)] = 156848, - [SMALL_STATE(4064)] = 156865, - [SMALL_STATE(4065)] = 156882, - [SMALL_STATE(4066)] = 156899, - [SMALL_STATE(4067)] = 156916, - [SMALL_STATE(4068)] = 156933, - [SMALL_STATE(4069)] = 156950, - [SMALL_STATE(4070)] = 156967, - [SMALL_STATE(4071)] = 156984, - [SMALL_STATE(4072)] = 157001, - [SMALL_STATE(4073)] = 157018, - [SMALL_STATE(4074)] = 157035, - [SMALL_STATE(4075)] = 157052, - [SMALL_STATE(4076)] = 157069, - [SMALL_STATE(4077)] = 157086, - [SMALL_STATE(4078)] = 157103, - [SMALL_STATE(4079)] = 157120, - [SMALL_STATE(4080)] = 157137, - [SMALL_STATE(4081)] = 157154, - [SMALL_STATE(4082)] = 157171, - [SMALL_STATE(4083)] = 157188, - [SMALL_STATE(4084)] = 157205, - [SMALL_STATE(4085)] = 157222, - [SMALL_STATE(4086)] = 157239, - [SMALL_STATE(4087)] = 157256, - [SMALL_STATE(4088)] = 157273, - [SMALL_STATE(4089)] = 157290, - [SMALL_STATE(4090)] = 157307, - [SMALL_STATE(4091)] = 157324, - [SMALL_STATE(4092)] = 157341, - [SMALL_STATE(4093)] = 157358, - [SMALL_STATE(4094)] = 157375, - [SMALL_STATE(4095)] = 157392, - [SMALL_STATE(4096)] = 157409, - [SMALL_STATE(4097)] = 157426, - [SMALL_STATE(4098)] = 157443, - [SMALL_STATE(4099)] = 157460, - [SMALL_STATE(4100)] = 157477, - [SMALL_STATE(4101)] = 157494, - [SMALL_STATE(4102)] = 157511, - [SMALL_STATE(4103)] = 157528, - [SMALL_STATE(4104)] = 157545, - [SMALL_STATE(4105)] = 157562, - [SMALL_STATE(4106)] = 157579, - [SMALL_STATE(4107)] = 157596, - [SMALL_STATE(4108)] = 157613, - [SMALL_STATE(4109)] = 157630, - [SMALL_STATE(4110)] = 157647, - [SMALL_STATE(4111)] = 157664, - [SMALL_STATE(4112)] = 157681, - [SMALL_STATE(4113)] = 157698, - [SMALL_STATE(4114)] = 157715, - [SMALL_STATE(4115)] = 157732, - [SMALL_STATE(4116)] = 157749, - [SMALL_STATE(4117)] = 157766, - [SMALL_STATE(4118)] = 157783, - [SMALL_STATE(4119)] = 157800, - [SMALL_STATE(4120)] = 157817, - [SMALL_STATE(4121)] = 157834, - [SMALL_STATE(4122)] = 157851, - [SMALL_STATE(4123)] = 157868, - [SMALL_STATE(4124)] = 157885, - [SMALL_STATE(4125)] = 157902, - [SMALL_STATE(4126)] = 157919, - [SMALL_STATE(4127)] = 157936, - [SMALL_STATE(4128)] = 157953, - [SMALL_STATE(4129)] = 157970, - [SMALL_STATE(4130)] = 157987, - [SMALL_STATE(4131)] = 158004, - [SMALL_STATE(4132)] = 158021, - [SMALL_STATE(4133)] = 158038, - [SMALL_STATE(4134)] = 158055, - [SMALL_STATE(4135)] = 158072, - [SMALL_STATE(4136)] = 158089, - [SMALL_STATE(4137)] = 158106, - [SMALL_STATE(4138)] = 158123, - [SMALL_STATE(4139)] = 158140, - [SMALL_STATE(4140)] = 158157, - [SMALL_STATE(4141)] = 158174, - [SMALL_STATE(4142)] = 158191, - [SMALL_STATE(4143)] = 158208, - [SMALL_STATE(4144)] = 158225, - [SMALL_STATE(4145)] = 158242, - [SMALL_STATE(4146)] = 158259, - [SMALL_STATE(4147)] = 158276, - [SMALL_STATE(4148)] = 158293, - [SMALL_STATE(4149)] = 158310, - [SMALL_STATE(4150)] = 158327, - [SMALL_STATE(4151)] = 158344, - [SMALL_STATE(4152)] = 158361, - [SMALL_STATE(4153)] = 158378, - [SMALL_STATE(4154)] = 158395, - [SMALL_STATE(4155)] = 158412, - [SMALL_STATE(4156)] = 158429, - [SMALL_STATE(4157)] = 158446, - [SMALL_STATE(4158)] = 158463, - [SMALL_STATE(4159)] = 158480, - [SMALL_STATE(4160)] = 158497, - [SMALL_STATE(4161)] = 158514, - [SMALL_STATE(4162)] = 158531, - [SMALL_STATE(4163)] = 158548, - [SMALL_STATE(4164)] = 158565, - [SMALL_STATE(4165)] = 158582, - [SMALL_STATE(4166)] = 158599, - [SMALL_STATE(4167)] = 158616, - [SMALL_STATE(4168)] = 158633, - [SMALL_STATE(4169)] = 158650, - [SMALL_STATE(4170)] = 158667, - [SMALL_STATE(4171)] = 158684, - [SMALL_STATE(4172)] = 158701, - [SMALL_STATE(4173)] = 158718, - [SMALL_STATE(4174)] = 158735, - [SMALL_STATE(4175)] = 158752, - [SMALL_STATE(4176)] = 158769, - [SMALL_STATE(4177)] = 158786, - [SMALL_STATE(4178)] = 158803, - [SMALL_STATE(4179)] = 158820, - [SMALL_STATE(4180)] = 158837, - [SMALL_STATE(4181)] = 158854, - [SMALL_STATE(4182)] = 158871, - [SMALL_STATE(4183)] = 158888, - [SMALL_STATE(4184)] = 158905, - [SMALL_STATE(4185)] = 158922, - [SMALL_STATE(4186)] = 158939, - [SMALL_STATE(4187)] = 158956, - [SMALL_STATE(4188)] = 158973, - [SMALL_STATE(4189)] = 158990, - [SMALL_STATE(4190)] = 159007, - [SMALL_STATE(4191)] = 159024, - [SMALL_STATE(4192)] = 159041, - [SMALL_STATE(4193)] = 159058, - [SMALL_STATE(4194)] = 159075, - [SMALL_STATE(4195)] = 159092, - [SMALL_STATE(4196)] = 159109, - [SMALL_STATE(4197)] = 159126, - [SMALL_STATE(4198)] = 159143, - [SMALL_STATE(4199)] = 159160, - [SMALL_STATE(4200)] = 159177, - [SMALL_STATE(4201)] = 159194, - [SMALL_STATE(4202)] = 159211, - [SMALL_STATE(4203)] = 159228, - [SMALL_STATE(4204)] = 159245, - [SMALL_STATE(4205)] = 159262, - [SMALL_STATE(4206)] = 159279, - [SMALL_STATE(4207)] = 159296, - [SMALL_STATE(4208)] = 159313, - [SMALL_STATE(4209)] = 159330, - [SMALL_STATE(4210)] = 159347, - [SMALL_STATE(4211)] = 159364, - [SMALL_STATE(4212)] = 159381, - [SMALL_STATE(4213)] = 159398, - [SMALL_STATE(4214)] = 159415, - [SMALL_STATE(4215)] = 159432, - [SMALL_STATE(4216)] = 159449, - [SMALL_STATE(4217)] = 159466, - [SMALL_STATE(4218)] = 159483, - [SMALL_STATE(4219)] = 159500, - [SMALL_STATE(4220)] = 159517, - [SMALL_STATE(4221)] = 159534, - [SMALL_STATE(4222)] = 159551, - [SMALL_STATE(4223)] = 159568, - [SMALL_STATE(4224)] = 159585, - [SMALL_STATE(4225)] = 159602, - [SMALL_STATE(4226)] = 159619, - [SMALL_STATE(4227)] = 159636, - [SMALL_STATE(4228)] = 159653, - [SMALL_STATE(4229)] = 159670, - [SMALL_STATE(4230)] = 159687, - [SMALL_STATE(4231)] = 159704, - [SMALL_STATE(4232)] = 159721, - [SMALL_STATE(4233)] = 159738, - [SMALL_STATE(4234)] = 159755, - [SMALL_STATE(4235)] = 159772, - [SMALL_STATE(4236)] = 159789, - [SMALL_STATE(4237)] = 159806, - [SMALL_STATE(4238)] = 159823, - [SMALL_STATE(4239)] = 159840, - [SMALL_STATE(4240)] = 159857, - [SMALL_STATE(4241)] = 159874, - [SMALL_STATE(4242)] = 159891, - [SMALL_STATE(4243)] = 159908, - [SMALL_STATE(4244)] = 159925, - [SMALL_STATE(4245)] = 159942, - [SMALL_STATE(4246)] = 159959, - [SMALL_STATE(4247)] = 159976, - [SMALL_STATE(4248)] = 159993, - [SMALL_STATE(4249)] = 160010, - [SMALL_STATE(4250)] = 160027, - [SMALL_STATE(4251)] = 160044, - [SMALL_STATE(4252)] = 160061, - [SMALL_STATE(4253)] = 160078, - [SMALL_STATE(4254)] = 160095, - [SMALL_STATE(4255)] = 160112, - [SMALL_STATE(4256)] = 160129, - [SMALL_STATE(4257)] = 160146, - [SMALL_STATE(4258)] = 160163, - [SMALL_STATE(4259)] = 160180, - [SMALL_STATE(4260)] = 160197, - [SMALL_STATE(4261)] = 160214, - [SMALL_STATE(4262)] = 160231, - [SMALL_STATE(4263)] = 160248, - [SMALL_STATE(4264)] = 160265, - [SMALL_STATE(4265)] = 160282, - [SMALL_STATE(4266)] = 160299, - [SMALL_STATE(4267)] = 160316, - [SMALL_STATE(4268)] = 160333, - [SMALL_STATE(4269)] = 160350, - [SMALL_STATE(4270)] = 160367, - [SMALL_STATE(4271)] = 160384, - [SMALL_STATE(4272)] = 160401, - [SMALL_STATE(4273)] = 160418, - [SMALL_STATE(4274)] = 160435, - [SMALL_STATE(4275)] = 160452, - [SMALL_STATE(4276)] = 160469, - [SMALL_STATE(4277)] = 160486, - [SMALL_STATE(4278)] = 160503, - [SMALL_STATE(4279)] = 160520, - [SMALL_STATE(4280)] = 160537, - [SMALL_STATE(4281)] = 160554, - [SMALL_STATE(4282)] = 160571, - [SMALL_STATE(4283)] = 160588, - [SMALL_STATE(4284)] = 160605, - [SMALL_STATE(4285)] = 160622, - [SMALL_STATE(4286)] = 160639, - [SMALL_STATE(4287)] = 160656, - [SMALL_STATE(4288)] = 160673, - [SMALL_STATE(4289)] = 160690, - [SMALL_STATE(4290)] = 160707, - [SMALL_STATE(4291)] = 160724, - [SMALL_STATE(4292)] = 160741, - [SMALL_STATE(4293)] = 160758, - [SMALL_STATE(4294)] = 160775, - [SMALL_STATE(4295)] = 160792, - [SMALL_STATE(4296)] = 160809, - [SMALL_STATE(4297)] = 160826, - [SMALL_STATE(4298)] = 160843, - [SMALL_STATE(4299)] = 160860, - [SMALL_STATE(4300)] = 160877, - [SMALL_STATE(4301)] = 160894, - [SMALL_STATE(4302)] = 160911, - [SMALL_STATE(4303)] = 160928, - [SMALL_STATE(4304)] = 160945, - [SMALL_STATE(4305)] = 160962, - [SMALL_STATE(4306)] = 160979, - [SMALL_STATE(4307)] = 160996, - [SMALL_STATE(4308)] = 161013, - [SMALL_STATE(4309)] = 161030, - [SMALL_STATE(4310)] = 161047, - [SMALL_STATE(4311)] = 161064, - [SMALL_STATE(4312)] = 161081, - [SMALL_STATE(4313)] = 161098, - [SMALL_STATE(4314)] = 161115, - [SMALL_STATE(4315)] = 161132, - [SMALL_STATE(4316)] = 161149, - [SMALL_STATE(4317)] = 161166, - [SMALL_STATE(4318)] = 161183, - [SMALL_STATE(4319)] = 161200, - [SMALL_STATE(4320)] = 161217, - [SMALL_STATE(4321)] = 161234, - [SMALL_STATE(4322)] = 161251, - [SMALL_STATE(4323)] = 161268, - [SMALL_STATE(4324)] = 161285, - [SMALL_STATE(4325)] = 161302, - [SMALL_STATE(4326)] = 161319, - [SMALL_STATE(4327)] = 161336, - [SMALL_STATE(4328)] = 161353, - [SMALL_STATE(4329)] = 161370, - [SMALL_STATE(4330)] = 161387, - [SMALL_STATE(4331)] = 161404, - [SMALL_STATE(4332)] = 161421, - [SMALL_STATE(4333)] = 161438, - [SMALL_STATE(4334)] = 161455, - [SMALL_STATE(4335)] = 161472, - [SMALL_STATE(4336)] = 161489, - [SMALL_STATE(4337)] = 161506, - [SMALL_STATE(4338)] = 161523, - [SMALL_STATE(4339)] = 161540, - [SMALL_STATE(4340)] = 161557, - [SMALL_STATE(4341)] = 161574, - [SMALL_STATE(4342)] = 161591, - [SMALL_STATE(4343)] = 161608, - [SMALL_STATE(4344)] = 161625, - [SMALL_STATE(4345)] = 161642, - [SMALL_STATE(4346)] = 161659, - [SMALL_STATE(4347)] = 161676, - [SMALL_STATE(4348)] = 161693, - [SMALL_STATE(4349)] = 161710, - [SMALL_STATE(4350)] = 161727, - [SMALL_STATE(4351)] = 161744, - [SMALL_STATE(4352)] = 161761, - [SMALL_STATE(4353)] = 161778, - [SMALL_STATE(4354)] = 161795, - [SMALL_STATE(4355)] = 161812, - [SMALL_STATE(4356)] = 161829, - [SMALL_STATE(4357)] = 161846, - [SMALL_STATE(4358)] = 161863, - [SMALL_STATE(4359)] = 161880, - [SMALL_STATE(4360)] = 161897, - [SMALL_STATE(4361)] = 161914, - [SMALL_STATE(4362)] = 161931, - [SMALL_STATE(4363)] = 161948, - [SMALL_STATE(4364)] = 161965, - [SMALL_STATE(4365)] = 161982, - [SMALL_STATE(4366)] = 161999, - [SMALL_STATE(4367)] = 162016, - [SMALL_STATE(4368)] = 162033, - [SMALL_STATE(4369)] = 162050, - [SMALL_STATE(4370)] = 162067, - [SMALL_STATE(4371)] = 162084, - [SMALL_STATE(4372)] = 162101, - [SMALL_STATE(4373)] = 162118, - [SMALL_STATE(4374)] = 162135, - [SMALL_STATE(4375)] = 162152, - [SMALL_STATE(4376)] = 162169, - [SMALL_STATE(4377)] = 162186, - [SMALL_STATE(4378)] = 162203, - [SMALL_STATE(4379)] = 162220, - [SMALL_STATE(4380)] = 162237, - [SMALL_STATE(4381)] = 162254, - [SMALL_STATE(4382)] = 162271, - [SMALL_STATE(4383)] = 162288, - [SMALL_STATE(4384)] = 162305, - [SMALL_STATE(4385)] = 162322, - [SMALL_STATE(4386)] = 162339, - [SMALL_STATE(4387)] = 162356, - [SMALL_STATE(4388)] = 162373, - [SMALL_STATE(4389)] = 162390, - [SMALL_STATE(4390)] = 162407, - [SMALL_STATE(4391)] = 162424, - [SMALL_STATE(4392)] = 162441, - [SMALL_STATE(4393)] = 162458, - [SMALL_STATE(4394)] = 162475, - [SMALL_STATE(4395)] = 162492, - [SMALL_STATE(4396)] = 162509, - [SMALL_STATE(4397)] = 162526, - [SMALL_STATE(4398)] = 162543, - [SMALL_STATE(4399)] = 162560, - [SMALL_STATE(4400)] = 162577, - [SMALL_STATE(4401)] = 162594, - [SMALL_STATE(4402)] = 162611, - [SMALL_STATE(4403)] = 162628, - [SMALL_STATE(4404)] = 162645, - [SMALL_STATE(4405)] = 162662, - [SMALL_STATE(4406)] = 162679, - [SMALL_STATE(4407)] = 162696, - [SMALL_STATE(4408)] = 162713, - [SMALL_STATE(4409)] = 162730, - [SMALL_STATE(4410)] = 162747, - [SMALL_STATE(4411)] = 162764, - [SMALL_STATE(4412)] = 162781, - [SMALL_STATE(4413)] = 162798, - [SMALL_STATE(4414)] = 162815, - [SMALL_STATE(4415)] = 162832, - [SMALL_STATE(4416)] = 162849, - [SMALL_STATE(4417)] = 162866, - [SMALL_STATE(4418)] = 162883, - [SMALL_STATE(4419)] = 162900, - [SMALL_STATE(4420)] = 162917, - [SMALL_STATE(4421)] = 162934, - [SMALL_STATE(4422)] = 162951, - [SMALL_STATE(4423)] = 162968, - [SMALL_STATE(4424)] = 162985, - [SMALL_STATE(4425)] = 163002, - [SMALL_STATE(4426)] = 163019, - [SMALL_STATE(4427)] = 163036, - [SMALL_STATE(4428)] = 163053, - [SMALL_STATE(4429)] = 163070, - [SMALL_STATE(4430)] = 163087, - [SMALL_STATE(4431)] = 163104, - [SMALL_STATE(4432)] = 163121, - [SMALL_STATE(4433)] = 163138, - [SMALL_STATE(4434)] = 163155, - [SMALL_STATE(4435)] = 163172, - [SMALL_STATE(4436)] = 163189, - [SMALL_STATE(4437)] = 163206, - [SMALL_STATE(4438)] = 163223, - [SMALL_STATE(4439)] = 163240, - [SMALL_STATE(4440)] = 163257, - [SMALL_STATE(4441)] = 163274, - [SMALL_STATE(4442)] = 163291, - [SMALL_STATE(4443)] = 163308, - [SMALL_STATE(4444)] = 163325, - [SMALL_STATE(4445)] = 163342, - [SMALL_STATE(4446)] = 163359, - [SMALL_STATE(4447)] = 163376, - [SMALL_STATE(4448)] = 163393, - [SMALL_STATE(4449)] = 163410, - [SMALL_STATE(4450)] = 163427, - [SMALL_STATE(4451)] = 163444, - [SMALL_STATE(4452)] = 163461, - [SMALL_STATE(4453)] = 163478, - [SMALL_STATE(4454)] = 163495, - [SMALL_STATE(4455)] = 163512, - [SMALL_STATE(4456)] = 163529, - [SMALL_STATE(4457)] = 163546, - [SMALL_STATE(4458)] = 163563, - [SMALL_STATE(4459)] = 163580, - [SMALL_STATE(4460)] = 163597, - [SMALL_STATE(4461)] = 163614, - [SMALL_STATE(4462)] = 163631, - [SMALL_STATE(4463)] = 163648, - [SMALL_STATE(4464)] = 163665, - [SMALL_STATE(4465)] = 163682, - [SMALL_STATE(4466)] = 163699, - [SMALL_STATE(4467)] = 163716, - [SMALL_STATE(4468)] = 163733, - [SMALL_STATE(4469)] = 163750, - [SMALL_STATE(4470)] = 163767, - [SMALL_STATE(4471)] = 163784, - [SMALL_STATE(4472)] = 163801, - [SMALL_STATE(4473)] = 163818, - [SMALL_STATE(4474)] = 163835, - [SMALL_STATE(4475)] = 163852, - [SMALL_STATE(4476)] = 163869, - [SMALL_STATE(4477)] = 163886, - [SMALL_STATE(4478)] = 163903, - [SMALL_STATE(4479)] = 163920, - [SMALL_STATE(4480)] = 163937, - [SMALL_STATE(4481)] = 163954, - [SMALL_STATE(4482)] = 163971, - [SMALL_STATE(4483)] = 163988, - [SMALL_STATE(4484)] = 164005, - [SMALL_STATE(4485)] = 164022, - [SMALL_STATE(4486)] = 164039, - [SMALL_STATE(4487)] = 164056, - [SMALL_STATE(4488)] = 164073, - [SMALL_STATE(4489)] = 164090, - [SMALL_STATE(4490)] = 164107, - [SMALL_STATE(4491)] = 164124, - [SMALL_STATE(4492)] = 164141, - [SMALL_STATE(4493)] = 164158, - [SMALL_STATE(4494)] = 164175, - [SMALL_STATE(4495)] = 164192, - [SMALL_STATE(4496)] = 164209, - [SMALL_STATE(4497)] = 164226, - [SMALL_STATE(4498)] = 164243, - [SMALL_STATE(4499)] = 164260, - [SMALL_STATE(4500)] = 164277, - [SMALL_STATE(4501)] = 164294, - [SMALL_STATE(4502)] = 164311, - [SMALL_STATE(4503)] = 164328, - [SMALL_STATE(4504)] = 164345, - [SMALL_STATE(4505)] = 164362, - [SMALL_STATE(4506)] = 164379, - [SMALL_STATE(4507)] = 164396, - [SMALL_STATE(4508)] = 164413, - [SMALL_STATE(4509)] = 164430, - [SMALL_STATE(4510)] = 164447, - [SMALL_STATE(4511)] = 164464, - [SMALL_STATE(4512)] = 164481, - [SMALL_STATE(4513)] = 164498, - [SMALL_STATE(4514)] = 164515, - [SMALL_STATE(4515)] = 164532, - [SMALL_STATE(4516)] = 164549, - [SMALL_STATE(4517)] = 164566, - [SMALL_STATE(4518)] = 164583, - [SMALL_STATE(4519)] = 164600, - [SMALL_STATE(4520)] = 164617, - [SMALL_STATE(4521)] = 164634, - [SMALL_STATE(4522)] = 164651, - [SMALL_STATE(4523)] = 164668, - [SMALL_STATE(4524)] = 164685, - [SMALL_STATE(4525)] = 164702, - [SMALL_STATE(4526)] = 164719, - [SMALL_STATE(4527)] = 164736, - [SMALL_STATE(4528)] = 164753, - [SMALL_STATE(4529)] = 164770, - [SMALL_STATE(4530)] = 164787, - [SMALL_STATE(4531)] = 164804, - [SMALL_STATE(4532)] = 164821, - [SMALL_STATE(4533)] = 164838, - [SMALL_STATE(4534)] = 164855, - [SMALL_STATE(4535)] = 164872, - [SMALL_STATE(4536)] = 164889, - [SMALL_STATE(4537)] = 164906, - [SMALL_STATE(4538)] = 164923, - [SMALL_STATE(4539)] = 164940, - [SMALL_STATE(4540)] = 164957, - [SMALL_STATE(4541)] = 164974, - [SMALL_STATE(4542)] = 164991, - [SMALL_STATE(4543)] = 165008, - [SMALL_STATE(4544)] = 165025, - [SMALL_STATE(4545)] = 165042, - [SMALL_STATE(4546)] = 165059, - [SMALL_STATE(4547)] = 165076, - [SMALL_STATE(4548)] = 165093, - [SMALL_STATE(4549)] = 165110, - [SMALL_STATE(4550)] = 165127, - [SMALL_STATE(4551)] = 165144, - [SMALL_STATE(4552)] = 165161, - [SMALL_STATE(4553)] = 165178, - [SMALL_STATE(4554)] = 165195, - [SMALL_STATE(4555)] = 165212, - [SMALL_STATE(4556)] = 165229, - [SMALL_STATE(4557)] = 165246, - [SMALL_STATE(4558)] = 165263, - [SMALL_STATE(4559)] = 165280, - [SMALL_STATE(4560)] = 165297, - [SMALL_STATE(4561)] = 165314, - [SMALL_STATE(4562)] = 165331, - [SMALL_STATE(4563)] = 165348, - [SMALL_STATE(4564)] = 165365, - [SMALL_STATE(4565)] = 165382, - [SMALL_STATE(4566)] = 165399, - [SMALL_STATE(4567)] = 165416, - [SMALL_STATE(4568)] = 165433, - [SMALL_STATE(4569)] = 165450, - [SMALL_STATE(4570)] = 165467, - [SMALL_STATE(4571)] = 165484, - [SMALL_STATE(4572)] = 165501, - [SMALL_STATE(4573)] = 165518, - [SMALL_STATE(4574)] = 165535, - [SMALL_STATE(4575)] = 165552, - [SMALL_STATE(4576)] = 165569, - [SMALL_STATE(4577)] = 165586, - [SMALL_STATE(4578)] = 165603, - [SMALL_STATE(4579)] = 165620, - [SMALL_STATE(4580)] = 165637, - [SMALL_STATE(4581)] = 165654, - [SMALL_STATE(4582)] = 165671, - [SMALL_STATE(4583)] = 165688, - [SMALL_STATE(4584)] = 165705, - [SMALL_STATE(4585)] = 165722, - [SMALL_STATE(4586)] = 165739, - [SMALL_STATE(4587)] = 165756, - [SMALL_STATE(4588)] = 165773, - [SMALL_STATE(4589)] = 165790, - [SMALL_STATE(4590)] = 165807, - [SMALL_STATE(4591)] = 165824, - [SMALL_STATE(4592)] = 165841, - [SMALL_STATE(4593)] = 165858, - [SMALL_STATE(4594)] = 165875, - [SMALL_STATE(4595)] = 165892, - [SMALL_STATE(4596)] = 165909, - [SMALL_STATE(4597)] = 165926, - [SMALL_STATE(4598)] = 165943, - [SMALL_STATE(4599)] = 165960, - [SMALL_STATE(4600)] = 165977, - [SMALL_STATE(4601)] = 165994, - [SMALL_STATE(4602)] = 166011, - [SMALL_STATE(4603)] = 166028, - [SMALL_STATE(4604)] = 166045, - [SMALL_STATE(4605)] = 166062, - [SMALL_STATE(4606)] = 166079, - [SMALL_STATE(4607)] = 166096, - [SMALL_STATE(4608)] = 166113, - [SMALL_STATE(4609)] = 166130, - [SMALL_STATE(4610)] = 166147, - [SMALL_STATE(4611)] = 166164, - [SMALL_STATE(4612)] = 166181, - [SMALL_STATE(4613)] = 166198, - [SMALL_STATE(4614)] = 166215, - [SMALL_STATE(4615)] = 166232, - [SMALL_STATE(4616)] = 166249, - [SMALL_STATE(4617)] = 166266, - [SMALL_STATE(4618)] = 166283, - [SMALL_STATE(4619)] = 166300, - [SMALL_STATE(4620)] = 166317, - [SMALL_STATE(4621)] = 166334, - [SMALL_STATE(4622)] = 166351, - [SMALL_STATE(4623)] = 166368, - [SMALL_STATE(4624)] = 166385, - [SMALL_STATE(4625)] = 166402, - [SMALL_STATE(4626)] = 166419, - [SMALL_STATE(4627)] = 166436, - [SMALL_STATE(4628)] = 166453, - [SMALL_STATE(4629)] = 166470, - [SMALL_STATE(4630)] = 166487, - [SMALL_STATE(4631)] = 166504, - [SMALL_STATE(4632)] = 166521, - [SMALL_STATE(4633)] = 166538, - [SMALL_STATE(4634)] = 166555, - [SMALL_STATE(4635)] = 166572, - [SMALL_STATE(4636)] = 166589, - [SMALL_STATE(4637)] = 166606, - [SMALL_STATE(4638)] = 166623, - [SMALL_STATE(4639)] = 166640, - [SMALL_STATE(4640)] = 166657, - [SMALL_STATE(4641)] = 166674, - [SMALL_STATE(4642)] = 166691, - [SMALL_STATE(4643)] = 166708, - [SMALL_STATE(4644)] = 166725, - [SMALL_STATE(4645)] = 166742, - [SMALL_STATE(4646)] = 166759, - [SMALL_STATE(4647)] = 166776, - [SMALL_STATE(4648)] = 166793, - [SMALL_STATE(4649)] = 166810, - [SMALL_STATE(4650)] = 166814, - [SMALL_STATE(4651)] = 166818, - [SMALL_STATE(4652)] = 166822, + [SMALL_STATE(309)] = 2470, + [SMALL_STATE(310)] = 2600, + [SMALL_STATE(311)] = 2729, + [SMALL_STATE(312)] = 2858, + [SMALL_STATE(313)] = 2987, + [SMALL_STATE(314)] = 3116, + [SMALL_STATE(315)] = 3245, + [SMALL_STATE(316)] = 3369, + [SMALL_STATE(317)] = 3484, + [SMALL_STATE(318)] = 3599, + [SMALL_STATE(319)] = 3716, + [SMALL_STATE(320)] = 3833, + [SMALL_STATE(321)] = 3950, + [SMALL_STATE(322)] = 4067, + [SMALL_STATE(323)] = 4182, + [SMALL_STATE(324)] = 4299, + [SMALL_STATE(325)] = 4414, + [SMALL_STATE(326)] = 4529, + [SMALL_STATE(327)] = 4643, + [SMALL_STATE(328)] = 4755, + [SMALL_STATE(329)] = 4825, + [SMALL_STATE(330)] = 4939, + [SMALL_STATE(331)] = 5051, + [SMALL_STATE(332)] = 5163, + [SMALL_STATE(333)] = 5277, + [SMALL_STATE(334)] = 5349, + [SMALL_STATE(335)] = 5463, + [SMALL_STATE(336)] = 5577, + [SMALL_STATE(337)] = 5689, + [SMALL_STATE(338)] = 5800, + [SMALL_STATE(339)] = 5911, + [SMALL_STATE(340)] = 6022, + [SMALL_STATE(341)] = 6133, + [SMALL_STATE(342)] = 6244, + [SMALL_STATE(343)] = 6355, + [SMALL_STATE(344)] = 6466, + [SMALL_STATE(345)] = 6577, + [SMALL_STATE(346)] = 6688, + [SMALL_STATE(347)] = 6799, + [SMALL_STATE(348)] = 6910, + [SMALL_STATE(349)] = 7021, + [SMALL_STATE(350)] = 7132, + [SMALL_STATE(351)] = 7243, + [SMALL_STATE(352)] = 7354, + [SMALL_STATE(353)] = 7465, + [SMALL_STATE(354)] = 7576, + [SMALL_STATE(355)] = 7687, + [SMALL_STATE(356)] = 7798, + [SMALL_STATE(357)] = 7909, + [SMALL_STATE(358)] = 8020, + [SMALL_STATE(359)] = 8131, + [SMALL_STATE(360)] = 8242, + [SMALL_STATE(361)] = 8353, + [SMALL_STATE(362)] = 8464, + [SMALL_STATE(363)] = 8575, + [SMALL_STATE(364)] = 8686, + [SMALL_STATE(365)] = 8797, + [SMALL_STATE(366)] = 8908, + [SMALL_STATE(367)] = 9019, + [SMALL_STATE(368)] = 9130, + [SMALL_STATE(369)] = 9241, + [SMALL_STATE(370)] = 9352, + [SMALL_STATE(371)] = 9463, + [SMALL_STATE(372)] = 9574, + [SMALL_STATE(373)] = 9685, + [SMALL_STATE(374)] = 9796, + [SMALL_STATE(375)] = 9907, + [SMALL_STATE(376)] = 10018, + [SMALL_STATE(377)] = 10129, + [SMALL_STATE(378)] = 10240, + [SMALL_STATE(379)] = 10351, + [SMALL_STATE(380)] = 10462, + [SMALL_STATE(381)] = 10573, + [SMALL_STATE(382)] = 10684, + [SMALL_STATE(383)] = 10795, + [SMALL_STATE(384)] = 10906, + [SMALL_STATE(385)] = 11017, + [SMALL_STATE(386)] = 11128, + [SMALL_STATE(387)] = 11239, + [SMALL_STATE(388)] = 11350, + [SMALL_STATE(389)] = 11461, + [SMALL_STATE(390)] = 11572, + [SMALL_STATE(391)] = 11683, + [SMALL_STATE(392)] = 11794, + [SMALL_STATE(393)] = 11905, + [SMALL_STATE(394)] = 12016, + [SMALL_STATE(395)] = 12127, + [SMALL_STATE(396)] = 12238, + [SMALL_STATE(397)] = 12349, + [SMALL_STATE(398)] = 12460, + [SMALL_STATE(399)] = 12571, + [SMALL_STATE(400)] = 12682, + [SMALL_STATE(401)] = 12793, + [SMALL_STATE(402)] = 12904, + [SMALL_STATE(403)] = 13015, + [SMALL_STATE(404)] = 13126, + [SMALL_STATE(405)] = 13237, + [SMALL_STATE(406)] = 13348, + [SMALL_STATE(407)] = 13459, + [SMALL_STATE(408)] = 13570, + [SMALL_STATE(409)] = 13681, + [SMALL_STATE(410)] = 13792, + [SMALL_STATE(411)] = 13903, + [SMALL_STATE(412)] = 14014, + [SMALL_STATE(413)] = 14125, + [SMALL_STATE(414)] = 14236, + [SMALL_STATE(415)] = 14347, + [SMALL_STATE(416)] = 14458, + [SMALL_STATE(417)] = 14569, + [SMALL_STATE(418)] = 14680, + [SMALL_STATE(419)] = 14791, + [SMALL_STATE(420)] = 14902, + [SMALL_STATE(421)] = 15013, + [SMALL_STATE(422)] = 15124, + [SMALL_STATE(423)] = 15235, + [SMALL_STATE(424)] = 15346, + [SMALL_STATE(425)] = 15457, + [SMALL_STATE(426)] = 15568, + [SMALL_STATE(427)] = 15679, + [SMALL_STATE(428)] = 15790, + [SMALL_STATE(429)] = 15901, + [SMALL_STATE(430)] = 16012, + [SMALL_STATE(431)] = 16123, + [SMALL_STATE(432)] = 16234, + [SMALL_STATE(433)] = 16345, + [SMALL_STATE(434)] = 16456, + [SMALL_STATE(435)] = 16567, + [SMALL_STATE(436)] = 16678, + [SMALL_STATE(437)] = 16789, + [SMALL_STATE(438)] = 16900, + [SMALL_STATE(439)] = 17011, + [SMALL_STATE(440)] = 17122, + [SMALL_STATE(441)] = 17233, + [SMALL_STATE(442)] = 17344, + [SMALL_STATE(443)] = 17455, + [SMALL_STATE(444)] = 17566, + [SMALL_STATE(445)] = 17677, + [SMALL_STATE(446)] = 17788, + [SMALL_STATE(447)] = 17899, + [SMALL_STATE(448)] = 18010, + [SMALL_STATE(449)] = 18121, + [SMALL_STATE(450)] = 18232, + [SMALL_STATE(451)] = 18343, + [SMALL_STATE(452)] = 18454, + [SMALL_STATE(453)] = 18565, + [SMALL_STATE(454)] = 18676, + [SMALL_STATE(455)] = 18787, + [SMALL_STATE(456)] = 18898, + [SMALL_STATE(457)] = 19009, + [SMALL_STATE(458)] = 19120, + [SMALL_STATE(459)] = 19231, + [SMALL_STATE(460)] = 19298, + [SMALL_STATE(461)] = 19409, + [SMALL_STATE(462)] = 19520, + [SMALL_STATE(463)] = 19631, + [SMALL_STATE(464)] = 19742, + [SMALL_STATE(465)] = 19853, + [SMALL_STATE(466)] = 19964, + [SMALL_STATE(467)] = 20075, + [SMALL_STATE(468)] = 20186, + [SMALL_STATE(469)] = 20297, + [SMALL_STATE(470)] = 20408, + [SMALL_STATE(471)] = 20519, + [SMALL_STATE(472)] = 20630, + [SMALL_STATE(473)] = 20741, + [SMALL_STATE(474)] = 20852, + [SMALL_STATE(475)] = 20963, + [SMALL_STATE(476)] = 21074, + [SMALL_STATE(477)] = 21185, + [SMALL_STATE(478)] = 21296, + [SMALL_STATE(479)] = 21407, + [SMALL_STATE(480)] = 21518, + [SMALL_STATE(481)] = 21629, + [SMALL_STATE(482)] = 21740, + [SMALL_STATE(483)] = 21851, + [SMALL_STATE(484)] = 21962, + [SMALL_STATE(485)] = 22073, + [SMALL_STATE(486)] = 22184, + [SMALL_STATE(487)] = 22295, + [SMALL_STATE(488)] = 22406, + [SMALL_STATE(489)] = 22517, + [SMALL_STATE(490)] = 22628, + [SMALL_STATE(491)] = 22739, + [SMALL_STATE(492)] = 22850, + [SMALL_STATE(493)] = 22961, + [SMALL_STATE(494)] = 23072, + [SMALL_STATE(495)] = 23183, + [SMALL_STATE(496)] = 23294, + [SMALL_STATE(497)] = 23405, + [SMALL_STATE(498)] = 23516, + [SMALL_STATE(499)] = 23627, + [SMALL_STATE(500)] = 23738, + [SMALL_STATE(501)] = 23849, + [SMALL_STATE(502)] = 23960, + [SMALL_STATE(503)] = 24071, + [SMALL_STATE(504)] = 24182, + [SMALL_STATE(505)] = 24293, + [SMALL_STATE(506)] = 24404, + [SMALL_STATE(507)] = 24515, + [SMALL_STATE(508)] = 24626, + [SMALL_STATE(509)] = 24737, + [SMALL_STATE(510)] = 24848, + [SMALL_STATE(511)] = 24959, + [SMALL_STATE(512)] = 25070, + [SMALL_STATE(513)] = 25181, + [SMALL_STATE(514)] = 25259, + [SMALL_STATE(515)] = 25337, + [SMALL_STATE(516)] = 25415, + [SMALL_STATE(517)] = 25493, + [SMALL_STATE(518)] = 25571, + [SMALL_STATE(519)] = 25649, + [SMALL_STATE(520)] = 25727, + [SMALL_STATE(521)] = 25799, + [SMALL_STATE(522)] = 25875, + [SMALL_STATE(523)] = 25953, + [SMALL_STATE(524)] = 26027, + [SMALL_STATE(525)] = 26101, + [SMALL_STATE(526)] = 26175, + [SMALL_STATE(527)] = 26239, + [SMALL_STATE(528)] = 26305, + [SMALL_STATE(529)] = 26371, + [SMALL_STATE(530)] = 26437, + [SMALL_STATE(531)] = 26501, + [SMALL_STATE(532)] = 26567, + [SMALL_STATE(533)] = 26658, + [SMALL_STATE(534)] = 26721, + [SMALL_STATE(535)] = 26812, + [SMALL_STATE(536)] = 26875, + [SMALL_STATE(537)] = 26966, + [SMALL_STATE(538)] = 27027, + [SMALL_STATE(539)] = 27118, + [SMALL_STATE(540)] = 27181, + [SMALL_STATE(541)] = 27272, + [SMALL_STATE(542)] = 27363, + [SMALL_STATE(543)] = 27454, + [SMALL_STATE(544)] = 27545, + [SMALL_STATE(545)] = 27606, + [SMALL_STATE(546)] = 27697, + [SMALL_STATE(547)] = 27788, + [SMALL_STATE(548)] = 27848, + [SMALL_STATE(549)] = 27908, + [SMALL_STATE(550)] = 27970, + [SMALL_STATE(551)] = 28030, + [SMALL_STATE(552)] = 28090, + [SMALL_STATE(553)] = 28150, + [SMALL_STATE(554)] = 28210, + [SMALL_STATE(555)] = 28270, + [SMALL_STATE(556)] = 28352, + [SMALL_STATE(557)] = 28414, + [SMALL_STATE(558)] = 28474, + [SMALL_STATE(559)] = 28534, + [SMALL_STATE(560)] = 28594, + [SMALL_STATE(561)] = 28654, + [SMALL_STATE(562)] = 28714, + [SMALL_STATE(563)] = 28774, + [SMALL_STATE(564)] = 28834, + [SMALL_STATE(565)] = 28894, + [SMALL_STATE(566)] = 28954, + [SMALL_STATE(567)] = 29014, + [SMALL_STATE(568)] = 29074, + [SMALL_STATE(569)] = 29134, + [SMALL_STATE(570)] = 29194, + [SMALL_STATE(571)] = 29254, + [SMALL_STATE(572)] = 29314, + [SMALL_STATE(573)] = 29374, + [SMALL_STATE(574)] = 29434, + [SMALL_STATE(575)] = 29494, + [SMALL_STATE(576)] = 29554, + [SMALL_STATE(577)] = 29614, + [SMALL_STATE(578)] = 29674, + [SMALL_STATE(579)] = 29734, + [SMALL_STATE(580)] = 29794, + [SMALL_STATE(581)] = 29873, + [SMALL_STATE(582)] = 29952, + [SMALL_STATE(583)] = 30031, + [SMALL_STATE(584)] = 30123, + [SMALL_STATE(585)] = 30215, + [SMALL_STATE(586)] = 30307, + [SMALL_STATE(587)] = 30375, + [SMALL_STATE(588)] = 30467, + [SMALL_STATE(589)] = 30559, + [SMALL_STATE(590)] = 30651, + [SMALL_STATE(591)] = 30743, + [SMALL_STATE(592)] = 30835, + [SMALL_STATE(593)] = 30927, + [SMALL_STATE(594)] = 31019, + [SMALL_STATE(595)] = 31111, + [SMALL_STATE(596)] = 31203, + [SMALL_STATE(597)] = 31295, + [SMALL_STATE(598)] = 31363, + [SMALL_STATE(599)] = 31455, + [SMALL_STATE(600)] = 31532, + [SMALL_STATE(601)] = 31609, + [SMALL_STATE(602)] = 31686, + [SMALL_STATE(603)] = 31755, + [SMALL_STATE(604)] = 31830, + [SMALL_STATE(605)] = 31907, + [SMALL_STATE(606)] = 31984, + [SMALL_STATE(607)] = 32049, + [SMALL_STATE(608)] = 32126, + [SMALL_STATE(609)] = 32203, + [SMALL_STATE(610)] = 32274, + [SMALL_STATE(611)] = 32332, + [SMALL_STATE(612)] = 32392, + [SMALL_STATE(613)] = 32475, + [SMALL_STATE(614)] = 32558, + [SMALL_STATE(615)] = 32641, + [SMALL_STATE(616)] = 32700, + [SMALL_STATE(617)] = 32757, + [SMALL_STATE(618)] = 32840, + [SMALL_STATE(619)] = 32899, + [SMALL_STATE(620)] = 32982, + [SMALL_STATE(621)] = 33065, + [SMALL_STATE(622)] = 33130, + [SMALL_STATE(623)] = 33213, + [SMALL_STATE(624)] = 33296, + [SMALL_STATE(625)] = 33379, + [SMALL_STATE(626)] = 33434, + [SMALL_STATE(627)] = 33517, + [SMALL_STATE(628)] = 33582, + [SMALL_STATE(629)] = 33641, + [SMALL_STATE(630)] = 33715, + [SMALL_STATE(631)] = 33769, + [SMALL_STATE(632)] = 33841, + [SMALL_STATE(633)] = 33913, + [SMALL_STATE(634)] = 33985, + [SMALL_STATE(635)] = 34047, + [SMALL_STATE(636)] = 34113, + [SMALL_STATE(637)] = 34185, + [SMALL_STATE(638)] = 34257, + [SMALL_STATE(639)] = 34325, + [SMALL_STATE(640)] = 34395, + [SMALL_STATE(641)] = 34467, + [SMALL_STATE(642)] = 34539, + [SMALL_STATE(643)] = 34605, + [SMALL_STATE(644)] = 34661, + [SMALL_STATE(645)] = 34733, + [SMALL_STATE(646)] = 34805, + [SMALL_STATE(647)] = 34861, + [SMALL_STATE(648)] = 34917, + [SMALL_STATE(649)] = 34979, + [SMALL_STATE(650)] = 35051, + [SMALL_STATE(651)] = 35119, + [SMALL_STATE(652)] = 35191, + [SMALL_STATE(653)] = 35247, + [SMALL_STATE(654)] = 35317, + [SMALL_STATE(655)] = 35389, + [SMALL_STATE(656)] = 35461, + [SMALL_STATE(657)] = 35517, + [SMALL_STATE(658)] = 35589, + [SMALL_STATE(659)] = 35674, + [SMALL_STATE(660)] = 35727, + [SMALL_STATE(661)] = 35780, + [SMALL_STATE(662)] = 35833, + [SMALL_STATE(663)] = 35886, + [SMALL_STATE(664)] = 35939, + [SMALL_STATE(665)] = 35992, + [SMALL_STATE(666)] = 36077, + [SMALL_STATE(667)] = 36130, + [SMALL_STATE(668)] = 36215, + [SMALL_STATE(669)] = 36286, + [SMALL_STATE(670)] = 36371, + [SMALL_STATE(671)] = 36424, + [SMALL_STATE(672)] = 36495, + [SMALL_STATE(673)] = 36580, + [SMALL_STATE(674)] = 36633, + [SMALL_STATE(675)] = 36688, + [SMALL_STATE(676)] = 36741, + [SMALL_STATE(677)] = 36794, + [SMALL_STATE(678)] = 36847, + [SMALL_STATE(679)] = 36900, + [SMALL_STATE(680)] = 36953, + [SMALL_STATE(681)] = 37006, + [SMALL_STATE(682)] = 37059, + [SMALL_STATE(683)] = 37112, + [SMALL_STATE(684)] = 37197, + [SMALL_STATE(685)] = 37282, + [SMALL_STATE(686)] = 37335, + [SMALL_STATE(687)] = 37388, + [SMALL_STATE(688)] = 37441, + [SMALL_STATE(689)] = 37526, + [SMALL_STATE(690)] = 37597, + [SMALL_STATE(691)] = 37650, + [SMALL_STATE(692)] = 37703, + [SMALL_STATE(693)] = 37756, + [SMALL_STATE(694)] = 37841, + [SMALL_STATE(695)] = 37926, + [SMALL_STATE(696)] = 37979, + [SMALL_STATE(697)] = 38064, + [SMALL_STATE(698)] = 38117, + [SMALL_STATE(699)] = 38170, + [SMALL_STATE(700)] = 38223, + [SMALL_STATE(701)] = 38308, + [SMALL_STATE(702)] = 38393, + [SMALL_STATE(703)] = 38446, + [SMALL_STATE(704)] = 38499, + [SMALL_STATE(705)] = 38552, + [SMALL_STATE(706)] = 38637, + [SMALL_STATE(707)] = 38722, + [SMALL_STATE(708)] = 38779, + [SMALL_STATE(709)] = 38831, + [SMALL_STATE(710)] = 38887, + [SMALL_STATE(711)] = 38941, + [SMALL_STATE(712)] = 38997, + [SMALL_STATE(713)] = 39049, + [SMALL_STATE(714)] = 39105, + [SMALL_STATE(715)] = 39155, + [SMALL_STATE(716)] = 39225, + [SMALL_STATE(717)] = 39278, + [SMALL_STATE(718)] = 39375, + [SMALL_STATE(719)] = 39428, + [SMALL_STATE(720)] = 39481, + [SMALL_STATE(721)] = 39534, + [SMALL_STATE(722)] = 39585, + [SMALL_STATE(723)] = 39634, + [SMALL_STATE(724)] = 39687, + [SMALL_STATE(725)] = 39740, + [SMALL_STATE(726)] = 39793, + [SMALL_STATE(727)] = 39843, + [SMALL_STATE(728)] = 39893, + [SMALL_STATE(729)] = 39943, + [SMALL_STATE(730)] = 40011, + [SMALL_STATE(731)] = 40061, + [SMALL_STATE(732)] = 40111, + [SMALL_STATE(733)] = 40161, + [SMALL_STATE(734)] = 40211, + [SMALL_STATE(735)] = 40261, + [SMALL_STATE(736)] = 40311, + [SMALL_STATE(737)] = 40361, + [SMALL_STATE(738)] = 40411, + [SMALL_STATE(739)] = 40461, + [SMALL_STATE(740)] = 40511, + [SMALL_STATE(741)] = 40561, + [SMALL_STATE(742)] = 40611, + [SMALL_STATE(743)] = 40661, + [SMALL_STATE(744)] = 40711, + [SMALL_STATE(745)] = 40761, + [SMALL_STATE(746)] = 40811, + [SMALL_STATE(747)] = 40861, + [SMALL_STATE(748)] = 40911, + [SMALL_STATE(749)] = 40961, + [SMALL_STATE(750)] = 41011, + [SMALL_STATE(751)] = 41061, + [SMALL_STATE(752)] = 41111, + [SMALL_STATE(753)] = 41161, + [SMALL_STATE(754)] = 41211, + [SMALL_STATE(755)] = 41261, + [SMALL_STATE(756)] = 41311, + [SMALL_STATE(757)] = 41361, + [SMALL_STATE(758)] = 41420, + [SMALL_STATE(759)] = 41489, + [SMALL_STATE(760)] = 41548, + [SMALL_STATE(761)] = 41610, + [SMALL_STATE(762)] = 41664, + [SMALL_STATE(763)] = 41718, + [SMALL_STATE(764)] = 41780, + [SMALL_STATE(765)] = 41840, + [SMALL_STATE(766)] = 41896, + [SMALL_STATE(767)] = 41948, + [SMALL_STATE(768)] = 42010, + [SMALL_STATE(769)] = 42068, + [SMALL_STATE(770)] = 42130, + [SMALL_STATE(771)] = 42186, + [SMALL_STATE(772)] = 42252, + [SMALL_STATE(773)] = 42304, + [SMALL_STATE(774)] = 42388, + [SMALL_STATE(775)] = 42438, + [SMALL_STATE(776)] = 42500, + [SMALL_STATE(777)] = 42552, + [SMALL_STATE(778)] = 42614, + [SMALL_STATE(779)] = 42664, + [SMALL_STATE(780)] = 42720, + [SMALL_STATE(781)] = 42782, + [SMALL_STATE(782)] = 42844, + [SMALL_STATE(783)] = 42899, + [SMALL_STATE(784)] = 42948, + [SMALL_STATE(785)] = 43001, + [SMALL_STATE(786)] = 43058, + [SMALL_STATE(787)] = 43117, + [SMALL_STATE(788)] = 43174, + [SMALL_STATE(789)] = 43221, + [SMALL_STATE(790)] = 43280, + [SMALL_STATE(791)] = 43331, + [SMALL_STATE(792)] = 43390, + [SMALL_STATE(793)] = 43461, + [SMALL_STATE(794)] = 43532, + [SMALL_STATE(795)] = 43591, + [SMALL_STATE(796)] = 43638, + [SMALL_STATE(797)] = 43709, + [SMALL_STATE(798)] = 43774, + [SMALL_STATE(799)] = 43845, + [SMALL_STATE(800)] = 43916, + [SMALL_STATE(801)] = 43973, + [SMALL_STATE(802)] = 44032, + [SMALL_STATE(803)] = 44091, + [SMALL_STATE(804)] = 44150, + [SMALL_STATE(805)] = 44209, + [SMALL_STATE(806)] = 44257, + [SMALL_STATE(807)] = 44317, + [SMALL_STATE(808)] = 44377, + [SMALL_STATE(809)] = 44435, + [SMALL_STATE(810)] = 44481, + [SMALL_STATE(811)] = 44531, + [SMALL_STATE(812)] = 44585, + [SMALL_STATE(813)] = 44641, + [SMALL_STATE(814)] = 44691, + [SMALL_STATE(815)] = 44737, + [SMALL_STATE(816)] = 44787, + [SMALL_STATE(817)] = 44851, + [SMALL_STATE(818)] = 44911, + [SMALL_STATE(819)] = 44971, + [SMALL_STATE(820)] = 45031, + [SMALL_STATE(821)] = 45091, + [SMALL_STATE(822)] = 45151, + [SMALL_STATE(823)] = 45199, + [SMALL_STATE(824)] = 45259, + [SMALL_STATE(825)] = 45304, + [SMALL_STATE(826)] = 45349, + [SMALL_STATE(827)] = 45392, + [SMALL_STATE(828)] = 45435, + [SMALL_STATE(829)] = 45478, + [SMALL_STATE(830)] = 45521, + [SMALL_STATE(831)] = 45566, + [SMALL_STATE(832)] = 45609, + [SMALL_STATE(833)] = 45652, + [SMALL_STATE(834)] = 45695, + [SMALL_STATE(835)] = 45740, + [SMALL_STATE(836)] = 45785, + [SMALL_STATE(837)] = 45830, + [SMALL_STATE(838)] = 45875, + [SMALL_STATE(839)] = 45918, + [SMALL_STATE(840)] = 45961, + [SMALL_STATE(841)] = 46004, + [SMALL_STATE(842)] = 46047, + [SMALL_STATE(843)] = 46090, + [SMALL_STATE(844)] = 46133, + [SMALL_STATE(845)] = 46176, + [SMALL_STATE(846)] = 46219, + [SMALL_STATE(847)] = 46262, + [SMALL_STATE(848)] = 46305, + [SMALL_STATE(849)] = 46348, + [SMALL_STATE(850)] = 46391, + [SMALL_STATE(851)] = 46434, + [SMALL_STATE(852)] = 46479, + [SMALL_STATE(853)] = 46524, + [SMALL_STATE(854)] = 46569, + [SMALL_STATE(855)] = 46614, + [SMALL_STATE(856)] = 46659, + [SMALL_STATE(857)] = 46704, + [SMALL_STATE(858)] = 46747, + [SMALL_STATE(859)] = 46792, + [SMALL_STATE(860)] = 46837, + [SMALL_STATE(861)] = 46882, + [SMALL_STATE(862)] = 46927, + [SMALL_STATE(863)] = 46972, + [SMALL_STATE(864)] = 47017, + [SMALL_STATE(865)] = 47062, + [SMALL_STATE(866)] = 47107, + [SMALL_STATE(867)] = 47152, + [SMALL_STATE(868)] = 47197, + [SMALL_STATE(869)] = 47242, + [SMALL_STATE(870)] = 47287, + [SMALL_STATE(871)] = 47332, + [SMALL_STATE(872)] = 47377, + [SMALL_STATE(873)] = 47422, + [SMALL_STATE(874)] = 47467, + [SMALL_STATE(875)] = 47512, + [SMALL_STATE(876)] = 47557, + [SMALL_STATE(877)] = 47602, + [SMALL_STATE(878)] = 47647, + [SMALL_STATE(879)] = 47692, + [SMALL_STATE(880)] = 47737, + [SMALL_STATE(881)] = 47782, + [SMALL_STATE(882)] = 47827, + [SMALL_STATE(883)] = 47872, + [SMALL_STATE(884)] = 47917, + [SMALL_STATE(885)] = 47960, + [SMALL_STATE(886)] = 48005, + [SMALL_STATE(887)] = 48050, + [SMALL_STATE(888)] = 48095, + [SMALL_STATE(889)] = 48140, + [SMALL_STATE(890)] = 48185, + [SMALL_STATE(891)] = 48230, + [SMALL_STATE(892)] = 48275, + [SMALL_STATE(893)] = 48320, + [SMALL_STATE(894)] = 48365, + [SMALL_STATE(895)] = 48410, + [SMALL_STATE(896)] = 48455, + [SMALL_STATE(897)] = 48500, + [SMALL_STATE(898)] = 48543, + [SMALL_STATE(899)] = 48588, + [SMALL_STATE(900)] = 48633, + [SMALL_STATE(901)] = 48678, + [SMALL_STATE(902)] = 48723, + [SMALL_STATE(903)] = 48768, + [SMALL_STATE(904)] = 48813, + [SMALL_STATE(905)] = 48858, + [SMALL_STATE(906)] = 48903, + [SMALL_STATE(907)] = 48948, + [SMALL_STATE(908)] = 48993, + [SMALL_STATE(909)] = 49038, + [SMALL_STATE(910)] = 49083, + [SMALL_STATE(911)] = 49128, + [SMALL_STATE(912)] = 49173, + [SMALL_STATE(913)] = 49218, + [SMALL_STATE(914)] = 49261, + [SMALL_STATE(915)] = 49308, + [SMALL_STATE(916)] = 49353, + [SMALL_STATE(917)] = 49398, + [SMALL_STATE(918)] = 49443, + [SMALL_STATE(919)] = 49488, + [SMALL_STATE(920)] = 49533, + [SMALL_STATE(921)] = 49578, + [SMALL_STATE(922)] = 49623, + [SMALL_STATE(923)] = 49668, + [SMALL_STATE(924)] = 49713, + [SMALL_STATE(925)] = 49758, + [SMALL_STATE(926)] = 49803, + [SMALL_STATE(927)] = 49846, + [SMALL_STATE(928)] = 49891, + [SMALL_STATE(929)] = 49936, + [SMALL_STATE(930)] = 49981, + [SMALL_STATE(931)] = 50026, + [SMALL_STATE(932)] = 50071, + [SMALL_STATE(933)] = 50116, + [SMALL_STATE(934)] = 50161, + [SMALL_STATE(935)] = 50204, + [SMALL_STATE(936)] = 50251, + [SMALL_STATE(937)] = 50294, + [SMALL_STATE(938)] = 50339, + [SMALL_STATE(939)] = 50384, + [SMALL_STATE(940)] = 50429, + [SMALL_STATE(941)] = 50474, + [SMALL_STATE(942)] = 50519, + [SMALL_STATE(943)] = 50564, + [SMALL_STATE(944)] = 50609, + [SMALL_STATE(945)] = 50654, + [SMALL_STATE(946)] = 50699, + [SMALL_STATE(947)] = 50744, + [SMALL_STATE(948)] = 50789, + [SMALL_STATE(949)] = 50834, + [SMALL_STATE(950)] = 50877, + [SMALL_STATE(951)] = 50920, + [SMALL_STATE(952)] = 50963, + [SMALL_STATE(953)] = 51006, + [SMALL_STATE(954)] = 51051, + [SMALL_STATE(955)] = 51094, + [SMALL_STATE(956)] = 51137, + [SMALL_STATE(957)] = 51180, + [SMALL_STATE(958)] = 51223, + [SMALL_STATE(959)] = 51268, + [SMALL_STATE(960)] = 51313, + [SMALL_STATE(961)] = 51356, + [SMALL_STATE(962)] = 51401, + [SMALL_STATE(963)] = 51446, + [SMALL_STATE(964)] = 51491, + [SMALL_STATE(965)] = 51536, + [SMALL_STATE(966)] = 51581, + [SMALL_STATE(967)] = 51626, + [SMALL_STATE(968)] = 51669, + [SMALL_STATE(969)] = 51714, + [SMALL_STATE(970)] = 51759, + [SMALL_STATE(971)] = 51802, + [SMALL_STATE(972)] = 51845, + [SMALL_STATE(973)] = 51888, + [SMALL_STATE(974)] = 51931, + [SMALL_STATE(975)] = 51974, + [SMALL_STATE(976)] = 52017, + [SMALL_STATE(977)] = 52060, + [SMALL_STATE(978)] = 52103, + [SMALL_STATE(979)] = 52146, + [SMALL_STATE(980)] = 52189, + [SMALL_STATE(981)] = 52232, + [SMALL_STATE(982)] = 52275, + [SMALL_STATE(983)] = 52322, + [SMALL_STATE(984)] = 52365, + [SMALL_STATE(985)] = 52408, + [SMALL_STATE(986)] = 52453, + [SMALL_STATE(987)] = 52496, + [SMALL_STATE(988)] = 52539, + [SMALL_STATE(989)] = 52582, + [SMALL_STATE(990)] = 52627, + [SMALL_STATE(991)] = 52672, + [SMALL_STATE(992)] = 52717, + [SMALL_STATE(993)] = 52762, + [SMALL_STATE(994)] = 52807, + [SMALL_STATE(995)] = 52850, + [SMALL_STATE(996)] = 52897, + [SMALL_STATE(997)] = 52940, + [SMALL_STATE(998)] = 52983, + [SMALL_STATE(999)] = 53026, + [SMALL_STATE(1000)] = 53069, + [SMALL_STATE(1001)] = 53112, + [SMALL_STATE(1002)] = 53155, + [SMALL_STATE(1003)] = 53198, + [SMALL_STATE(1004)] = 53245, + [SMALL_STATE(1005)] = 53290, + [SMALL_STATE(1006)] = 53333, + [SMALL_STATE(1007)] = 53378, + [SMALL_STATE(1008)] = 53421, + [SMALL_STATE(1009)] = 53464, + [SMALL_STATE(1010)] = 53509, + [SMALL_STATE(1011)] = 53552, + [SMALL_STATE(1012)] = 53595, + [SMALL_STATE(1013)] = 53638, + [SMALL_STATE(1014)] = 53681, + [SMALL_STATE(1015)] = 53724, + [SMALL_STATE(1016)] = 53767, + [SMALL_STATE(1017)] = 53810, + [SMALL_STATE(1018)] = 53853, + [SMALL_STATE(1019)] = 53896, + [SMALL_STATE(1020)] = 53939, + [SMALL_STATE(1021)] = 53982, + [SMALL_STATE(1022)] = 54027, + [SMALL_STATE(1023)] = 54070, + [SMALL_STATE(1024)] = 54113, + [SMALL_STATE(1025)] = 54162, + [SMALL_STATE(1026)] = 54205, + [SMALL_STATE(1027)] = 54248, + [SMALL_STATE(1028)] = 54291, + [SMALL_STATE(1029)] = 54334, + [SMALL_STATE(1030)] = 54377, + [SMALL_STATE(1031)] = 54420, + [SMALL_STATE(1032)] = 54463, + [SMALL_STATE(1033)] = 54506, + [SMALL_STATE(1034)] = 54549, + [SMALL_STATE(1035)] = 54594, + [SMALL_STATE(1036)] = 54637, + [SMALL_STATE(1037)] = 54680, + [SMALL_STATE(1038)] = 54723, + [SMALL_STATE(1039)] = 54768, + [SMALL_STATE(1040)] = 54813, + [SMALL_STATE(1041)] = 54858, + [SMALL_STATE(1042)] = 54903, + [SMALL_STATE(1043)] = 54948, + [SMALL_STATE(1044)] = 54991, + [SMALL_STATE(1045)] = 55038, + [SMALL_STATE(1046)] = 55081, + [SMALL_STATE(1047)] = 55124, + [SMALL_STATE(1048)] = 55169, + [SMALL_STATE(1049)] = 55212, + [SMALL_STATE(1050)] = 55259, + [SMALL_STATE(1051)] = 55302, + [SMALL_STATE(1052)] = 55347, + [SMALL_STATE(1053)] = 55390, + [SMALL_STATE(1054)] = 55433, + [SMALL_STATE(1055)] = 55476, + [SMALL_STATE(1056)] = 55519, + [SMALL_STATE(1057)] = 55562, + [SMALL_STATE(1058)] = 55609, + [SMALL_STATE(1059)] = 55654, + [SMALL_STATE(1060)] = 55697, + [SMALL_STATE(1061)] = 55740, + [SMALL_STATE(1062)] = 55783, + [SMALL_STATE(1063)] = 55826, + [SMALL_STATE(1064)] = 55869, + [SMALL_STATE(1065)] = 55914, + [SMALL_STATE(1066)] = 55993, + [SMALL_STATE(1067)] = 56038, + [SMALL_STATE(1068)] = 56081, + [SMALL_STATE(1069)] = 56126, + [SMALL_STATE(1070)] = 56173, + [SMALL_STATE(1071)] = 56218, + [SMALL_STATE(1072)] = 56263, + [SMALL_STATE(1073)] = 56306, + [SMALL_STATE(1074)] = 56349, + [SMALL_STATE(1075)] = 56392, + [SMALL_STATE(1076)] = 56435, + [SMALL_STATE(1077)] = 56478, + [SMALL_STATE(1078)] = 56521, + [SMALL_STATE(1079)] = 56566, + [SMALL_STATE(1080)] = 56609, + [SMALL_STATE(1081)] = 56672, + [SMALL_STATE(1082)] = 56715, + [SMALL_STATE(1083)] = 56778, + [SMALL_STATE(1084)] = 56821, + [SMALL_STATE(1085)] = 56864, + [SMALL_STATE(1086)] = 56907, + [SMALL_STATE(1087)] = 56950, + [SMALL_STATE(1088)] = 56995, + [SMALL_STATE(1089)] = 57038, + [SMALL_STATE(1090)] = 57081, + [SMALL_STATE(1091)] = 57124, + [SMALL_STATE(1092)] = 57167, + [SMALL_STATE(1093)] = 57230, + [SMALL_STATE(1094)] = 57273, + [SMALL_STATE(1095)] = 57336, + [SMALL_STATE(1096)] = 57379, + [SMALL_STATE(1097)] = 57424, + [SMALL_STATE(1098)] = 57469, + [SMALL_STATE(1099)] = 57514, + [SMALL_STATE(1100)] = 57557, + [SMALL_STATE(1101)] = 57600, + [SMALL_STATE(1102)] = 57643, + [SMALL_STATE(1103)] = 57686, + [SMALL_STATE(1104)] = 57729, + [SMALL_STATE(1105)] = 57772, + [SMALL_STATE(1106)] = 57817, + [SMALL_STATE(1107)] = 57860, + [SMALL_STATE(1108)] = 57903, + [SMALL_STATE(1109)] = 57946, + [SMALL_STATE(1110)] = 57989, + [SMALL_STATE(1111)] = 58032, + [SMALL_STATE(1112)] = 58075, + [SMALL_STATE(1113)] = 58119, + [SMALL_STATE(1114)] = 58163, + [SMALL_STATE(1115)] = 58207, + [SMALL_STATE(1116)] = 58269, + [SMALL_STATE(1117)] = 58313, + [SMALL_STATE(1118)] = 58357, + [SMALL_STATE(1119)] = 58401, + [SMALL_STATE(1120)] = 58445, + [SMALL_STATE(1121)] = 58487, + [SMALL_STATE(1122)] = 58529, + [SMALL_STATE(1123)] = 58571, + [SMALL_STATE(1124)] = 58613, + [SMALL_STATE(1125)] = 58655, + [SMALL_STATE(1126)] = 58697, + [SMALL_STATE(1127)] = 58739, + [SMALL_STATE(1128)] = 58801, + [SMALL_STATE(1129)] = 58855, + [SMALL_STATE(1130)] = 58917, + [SMALL_STATE(1131)] = 58971, + [SMALL_STATE(1132)] = 59015, + [SMALL_STATE(1133)] = 59077, + [SMALL_STATE(1134)] = 59131, + [SMALL_STATE(1135)] = 59193, + [SMALL_STATE(1136)] = 59255, + [SMALL_STATE(1137)] = 59297, + [SMALL_STATE(1138)] = 59341, + [SMALL_STATE(1139)] = 59383, + [SMALL_STATE(1140)] = 59427, + [SMALL_STATE(1141)] = 59469, + [SMALL_STATE(1142)] = 59519, + [SMALL_STATE(1143)] = 59563, + [SMALL_STATE(1144)] = 59605, + [SMALL_STATE(1145)] = 59649, + [SMALL_STATE(1146)] = 59711, + [SMALL_STATE(1147)] = 59765, + [SMALL_STATE(1148)] = 59809, + [SMALL_STATE(1149)] = 59871, + [SMALL_STATE(1150)] = 59933, + [SMALL_STATE(1151)] = 59975, + [SMALL_STATE(1152)] = 60017, + [SMALL_STATE(1153)] = 60079, + [SMALL_STATE(1154)] = 60123, + [SMALL_STATE(1155)] = 60167, + [SMALL_STATE(1156)] = 60209, + [SMALL_STATE(1157)] = 60271, + [SMALL_STATE(1158)] = 60313, + [SMALL_STATE(1159)] = 60355, + [SMALL_STATE(1160)] = 60397, + [SMALL_STATE(1161)] = 60459, + [SMALL_STATE(1162)] = 60503, + [SMALL_STATE(1163)] = 60547, + [SMALL_STATE(1164)] = 60591, + [SMALL_STATE(1165)] = 60635, + [SMALL_STATE(1166)] = 60679, + [SMALL_STATE(1167)] = 60721, + [SMALL_STATE(1168)] = 60763, + [SMALL_STATE(1169)] = 60805, + [SMALL_STATE(1170)] = 60849, + [SMALL_STATE(1171)] = 60893, + [SMALL_STATE(1172)] = 60937, + [SMALL_STATE(1173)] = 60979, + [SMALL_STATE(1174)] = 61023, + [SMALL_STATE(1175)] = 61067, + [SMALL_STATE(1176)] = 61109, + [SMALL_STATE(1177)] = 61171, + [SMALL_STATE(1178)] = 61215, + [SMALL_STATE(1179)] = 61259, + [SMALL_STATE(1180)] = 61321, + [SMALL_STATE(1181)] = 61365, + [SMALL_STATE(1182)] = 61409, + [SMALL_STATE(1183)] = 61471, + [SMALL_STATE(1184)] = 61515, + [SMALL_STATE(1185)] = 61569, + [SMALL_STATE(1186)] = 61611, + [SMALL_STATE(1187)] = 61655, + [SMALL_STATE(1188)] = 61717, + [SMALL_STATE(1189)] = 61761, + [SMALL_STATE(1190)] = 61805, + [SMALL_STATE(1191)] = 61849, + [SMALL_STATE(1192)] = 61891, + [SMALL_STATE(1193)] = 61935, + [SMALL_STATE(1194)] = 61979, + [SMALL_STATE(1195)] = 62023, + [SMALL_STATE(1196)] = 62065, + [SMALL_STATE(1197)] = 62109, + [SMALL_STATE(1198)] = 62151, + [SMALL_STATE(1199)] = 62195, + [SMALL_STATE(1200)] = 62237, + [SMALL_STATE(1201)] = 62281, + [SMALL_STATE(1202)] = 62325, + [SMALL_STATE(1203)] = 62369, + [SMALL_STATE(1204)] = 62413, + [SMALL_STATE(1205)] = 62457, + [SMALL_STATE(1206)] = 62505, + [SMALL_STATE(1207)] = 62547, + [SMALL_STATE(1208)] = 62589, + [SMALL_STATE(1209)] = 62633, + [SMALL_STATE(1210)] = 62675, + [SMALL_STATE(1211)] = 62717, + [SMALL_STATE(1212)] = 62763, + [SMALL_STATE(1213)] = 62805, + [SMALL_STATE(1214)] = 62847, + [SMALL_STATE(1215)] = 62889, + [SMALL_STATE(1216)] = 62931, + [SMALL_STATE(1217)] = 62993, + [SMALL_STATE(1218)] = 63037, + [SMALL_STATE(1219)] = 63081, + [SMALL_STATE(1220)] = 63125, + [SMALL_STATE(1221)] = 63169, + [SMALL_STATE(1222)] = 63211, + [SMALL_STATE(1223)] = 63255, + [SMALL_STATE(1224)] = 63297, + [SMALL_STATE(1225)] = 63341, + [SMALL_STATE(1226)] = 63383, + [SMALL_STATE(1227)] = 63427, + [SMALL_STATE(1228)] = 63471, + [SMALL_STATE(1229)] = 63513, + [SMALL_STATE(1230)] = 63557, + [SMALL_STATE(1231)] = 63601, + [SMALL_STATE(1232)] = 63643, + [SMALL_STATE(1233)] = 63685, + [SMALL_STATE(1234)] = 63727, + [SMALL_STATE(1235)] = 63771, + [SMALL_STATE(1236)] = 63815, + [SMALL_STATE(1237)] = 63859, + [SMALL_STATE(1238)] = 63921, + [SMALL_STATE(1239)] = 63963, + [SMALL_STATE(1240)] = 64047, + [SMALL_STATE(1241)] = 64091, + [SMALL_STATE(1242)] = 64133, + [SMALL_STATE(1243)] = 64195, + [SMALL_STATE(1244)] = 64237, + [SMALL_STATE(1245)] = 64321, + [SMALL_STATE(1246)] = 64365, + [SMALL_STATE(1247)] = 64409, + [SMALL_STATE(1248)] = 64451, + [SMALL_STATE(1249)] = 64495, + [SMALL_STATE(1250)] = 64537, + [SMALL_STATE(1251)] = 64579, + [SMALL_STATE(1252)] = 64623, + [SMALL_STATE(1253)] = 64667, + [SMALL_STATE(1254)] = 64711, + [SMALL_STATE(1255)] = 64755, + [SMALL_STATE(1256)] = 64799, + [SMALL_STATE(1257)] = 64841, + [SMALL_STATE(1258)] = 64885, + [SMALL_STATE(1259)] = 64929, + [SMALL_STATE(1260)] = 64973, + [SMALL_STATE(1261)] = 65017, + [SMALL_STATE(1262)] = 65061, + [SMALL_STATE(1263)] = 65105, + [SMALL_STATE(1264)] = 65147, + [SMALL_STATE(1265)] = 65189, + [SMALL_STATE(1266)] = 65237, + [SMALL_STATE(1267)] = 65281, + [SMALL_STATE(1268)] = 65323, + [SMALL_STATE(1269)] = 65407, + [SMALL_STATE(1270)] = 65451, + [SMALL_STATE(1271)] = 65495, + [SMALL_STATE(1272)] = 65557, + [SMALL_STATE(1273)] = 65601, + [SMALL_STATE(1274)] = 65645, + [SMALL_STATE(1275)] = 65689, + [SMALL_STATE(1276)] = 65733, + [SMALL_STATE(1277)] = 65795, + [SMALL_STATE(1278)] = 65839, + [SMALL_STATE(1279)] = 65883, + [SMALL_STATE(1280)] = 65927, + [SMALL_STATE(1281)] = 65971, + [SMALL_STATE(1282)] = 66015, + [SMALL_STATE(1283)] = 66057, + [SMALL_STATE(1284)] = 66101, + [SMALL_STATE(1285)] = 66145, + [SMALL_STATE(1286)] = 66187, + [SMALL_STATE(1287)] = 66231, + [SMALL_STATE(1288)] = 66275, + [SMALL_STATE(1289)] = 66319, + [SMALL_STATE(1290)] = 66363, + [SMALL_STATE(1291)] = 66407, + [SMALL_STATE(1292)] = 66451, + [SMALL_STATE(1293)] = 66495, + [SMALL_STATE(1294)] = 66539, + [SMALL_STATE(1295)] = 66583, + [SMALL_STATE(1296)] = 66627, + [SMALL_STATE(1297)] = 66689, + [SMALL_STATE(1298)] = 66733, + [SMALL_STATE(1299)] = 66775, + [SMALL_STATE(1300)] = 66819, + [SMALL_STATE(1301)] = 66861, + [SMALL_STATE(1302)] = 66909, + [SMALL_STATE(1303)] = 66953, + [SMALL_STATE(1304)] = 66997, + [SMALL_STATE(1305)] = 67041, + [SMALL_STATE(1306)] = 67085, + [SMALL_STATE(1307)] = 67127, + [SMALL_STATE(1308)] = 67169, + [SMALL_STATE(1309)] = 67211, + [SMALL_STATE(1310)] = 67255, + [SMALL_STATE(1311)] = 67299, + [SMALL_STATE(1312)] = 67343, + [SMALL_STATE(1313)] = 67385, + [SMALL_STATE(1314)] = 67427, + [SMALL_STATE(1315)] = 67471, + [SMALL_STATE(1316)] = 67513, + [SMALL_STATE(1317)] = 67555, + [SMALL_STATE(1318)] = 67597, + [SMALL_STATE(1319)] = 67639, + [SMALL_STATE(1320)] = 67683, + [SMALL_STATE(1321)] = 67727, + [SMALL_STATE(1322)] = 67769, + [SMALL_STATE(1323)] = 67813, + [SMALL_STATE(1324)] = 67875, + [SMALL_STATE(1325)] = 67959, + [SMALL_STATE(1326)] = 68003, + [SMALL_STATE(1327)] = 68065, + [SMALL_STATE(1328)] = 68127, + [SMALL_STATE(1329)] = 68171, + [SMALL_STATE(1330)] = 68215, + [SMALL_STATE(1331)] = 68259, + [SMALL_STATE(1332)] = 68303, + [SMALL_STATE(1333)] = 68347, + [SMALL_STATE(1334)] = 68401, + [SMALL_STATE(1335)] = 68445, + [SMALL_STATE(1336)] = 68489, + [SMALL_STATE(1337)] = 68533, + [SMALL_STATE(1338)] = 68577, + [SMALL_STATE(1339)] = 68621, + [SMALL_STATE(1340)] = 68665, + [SMALL_STATE(1341)] = 68709, + [SMALL_STATE(1342)] = 68753, + [SMALL_STATE(1343)] = 68815, + [SMALL_STATE(1344)] = 68859, + [SMALL_STATE(1345)] = 68903, + [SMALL_STATE(1346)] = 68947, + [SMALL_STATE(1347)] = 68991, + [SMALL_STATE(1348)] = 69035, + [SMALL_STATE(1349)] = 69079, + [SMALL_STATE(1350)] = 69123, + [SMALL_STATE(1351)] = 69207, + [SMALL_STATE(1352)] = 69251, + [SMALL_STATE(1353)] = 69295, + [SMALL_STATE(1354)] = 69339, + [SMALL_STATE(1355)] = 69383, + [SMALL_STATE(1356)] = 69427, + [SMALL_STATE(1357)] = 69471, + [SMALL_STATE(1358)] = 69515, + [SMALL_STATE(1359)] = 69559, + [SMALL_STATE(1360)] = 69601, + [SMALL_STATE(1361)] = 69645, + [SMALL_STATE(1362)] = 69689, + [SMALL_STATE(1363)] = 69733, + [SMALL_STATE(1364)] = 69777, + [SMALL_STATE(1365)] = 69839, + [SMALL_STATE(1366)] = 69883, + [SMALL_STATE(1367)] = 69945, + [SMALL_STATE(1368)] = 69989, + [SMALL_STATE(1369)] = 70033, + [SMALL_STATE(1370)] = 70095, + [SMALL_STATE(1371)] = 70139, + [SMALL_STATE(1372)] = 70183, + [SMALL_STATE(1373)] = 70245, + [SMALL_STATE(1374)] = 70289, + [SMALL_STATE(1375)] = 70333, + [SMALL_STATE(1376)] = 70377, + [SMALL_STATE(1377)] = 70421, + [SMALL_STATE(1378)] = 70465, + [SMALL_STATE(1379)] = 70509, + [SMALL_STATE(1380)] = 70553, + [SMALL_STATE(1381)] = 70597, + [SMALL_STATE(1382)] = 70659, + [SMALL_STATE(1383)] = 70703, + [SMALL_STATE(1384)] = 70747, + [SMALL_STATE(1385)] = 70789, + [SMALL_STATE(1386)] = 70873, + [SMALL_STATE(1387)] = 70917, + [SMALL_STATE(1388)] = 70961, + [SMALL_STATE(1389)] = 71005, + [SMALL_STATE(1390)] = 71049, + [SMALL_STATE(1391)] = 71093, + [SMALL_STATE(1392)] = 71137, + [SMALL_STATE(1393)] = 71181, + [SMALL_STATE(1394)] = 71225, + [SMALL_STATE(1395)] = 71287, + [SMALL_STATE(1396)] = 71331, + [SMALL_STATE(1397)] = 71373, + [SMALL_STATE(1398)] = 71457, + [SMALL_STATE(1399)] = 71501, + [SMALL_STATE(1400)] = 71545, + [SMALL_STATE(1401)] = 71589, + [SMALL_STATE(1402)] = 71651, + [SMALL_STATE(1403)] = 71695, + [SMALL_STATE(1404)] = 71739, + [SMALL_STATE(1405)] = 71783, + [SMALL_STATE(1406)] = 71827, + [SMALL_STATE(1407)] = 71871, + [SMALL_STATE(1408)] = 71915, + [SMALL_STATE(1409)] = 71957, + [SMALL_STATE(1410)] = 71999, + [SMALL_STATE(1411)] = 72041, + [SMALL_STATE(1412)] = 72083, + [SMALL_STATE(1413)] = 72125, + [SMALL_STATE(1414)] = 72169, + [SMALL_STATE(1415)] = 72213, + [SMALL_STATE(1416)] = 72297, + [SMALL_STATE(1417)] = 72341, + [SMALL_STATE(1418)] = 72385, + [SMALL_STATE(1419)] = 72427, + [SMALL_STATE(1420)] = 72469, + [SMALL_STATE(1421)] = 72511, + [SMALL_STATE(1422)] = 72553, + [SMALL_STATE(1423)] = 72595, + [SMALL_STATE(1424)] = 72637, + [SMALL_STATE(1425)] = 72699, + [SMALL_STATE(1426)] = 72741, + [SMALL_STATE(1427)] = 72783, + [SMALL_STATE(1428)] = 72825, + [SMALL_STATE(1429)] = 72867, + [SMALL_STATE(1430)] = 72909, + [SMALL_STATE(1431)] = 72951, + [SMALL_STATE(1432)] = 72993, + [SMALL_STATE(1433)] = 73035, + [SMALL_STATE(1434)] = 73077, + [SMALL_STATE(1435)] = 73139, + [SMALL_STATE(1436)] = 73201, + [SMALL_STATE(1437)] = 73245, + [SMALL_STATE(1438)] = 73287, + [SMALL_STATE(1439)] = 73331, + [SMALL_STATE(1440)] = 73373, + [SMALL_STATE(1441)] = 73415, + [SMALL_STATE(1442)] = 73457, + [SMALL_STATE(1443)] = 73499, + [SMALL_STATE(1444)] = 73543, + [SMALL_STATE(1445)] = 73585, + [SMALL_STATE(1446)] = 73627, + [SMALL_STATE(1447)] = 73669, + [SMALL_STATE(1448)] = 73711, + [SMALL_STATE(1449)] = 73753, + [SMALL_STATE(1450)] = 73795, + [SMALL_STATE(1451)] = 73839, + [SMALL_STATE(1452)] = 73883, + [SMALL_STATE(1453)] = 73925, + [SMALL_STATE(1454)] = 73967, + [SMALL_STATE(1455)] = 74009, + [SMALL_STATE(1456)] = 74071, + [SMALL_STATE(1457)] = 74115, + [SMALL_STATE(1458)] = 74157, + [SMALL_STATE(1459)] = 74199, + [SMALL_STATE(1460)] = 74247, + [SMALL_STATE(1461)] = 74289, + [SMALL_STATE(1462)] = 74331, + [SMALL_STATE(1463)] = 74373, + [SMALL_STATE(1464)] = 74415, + [SMALL_STATE(1465)] = 74459, + [SMALL_STATE(1466)] = 74501, + [SMALL_STATE(1467)] = 74543, + [SMALL_STATE(1468)] = 74585, + [SMALL_STATE(1469)] = 74627, + [SMALL_STATE(1470)] = 74669, + [SMALL_STATE(1471)] = 74711, + [SMALL_STATE(1472)] = 74755, + [SMALL_STATE(1473)] = 74797, + [SMALL_STATE(1474)] = 74841, + [SMALL_STATE(1475)] = 74883, + [SMALL_STATE(1476)] = 74925, + [SMALL_STATE(1477)] = 74969, + [SMALL_STATE(1478)] = 75053, + [SMALL_STATE(1479)] = 75095, + [SMALL_STATE(1480)] = 75137, + [SMALL_STATE(1481)] = 75179, + [SMALL_STATE(1482)] = 75221, + [SMALL_STATE(1483)] = 75263, + [SMALL_STATE(1484)] = 75305, + [SMALL_STATE(1485)] = 75349, + [SMALL_STATE(1486)] = 75391, + [SMALL_STATE(1487)] = 75433, + [SMALL_STATE(1488)] = 75475, + [SMALL_STATE(1489)] = 75517, + [SMALL_STATE(1490)] = 75559, + [SMALL_STATE(1491)] = 75601, + [SMALL_STATE(1492)] = 75643, + [SMALL_STATE(1493)] = 75685, + [SMALL_STATE(1494)] = 75727, + [SMALL_STATE(1495)] = 75789, + [SMALL_STATE(1496)] = 75831, + [SMALL_STATE(1497)] = 75873, + [SMALL_STATE(1498)] = 75915, + [SMALL_STATE(1499)] = 75957, + [SMALL_STATE(1500)] = 76001, + [SMALL_STATE(1501)] = 76043, + [SMALL_STATE(1502)] = 76085, + [SMALL_STATE(1503)] = 76127, + [SMALL_STATE(1504)] = 76169, + [SMALL_STATE(1505)] = 76211, + [SMALL_STATE(1506)] = 76253, + [SMALL_STATE(1507)] = 76337, + [SMALL_STATE(1508)] = 76379, + [SMALL_STATE(1509)] = 76421, + [SMALL_STATE(1510)] = 76463, + [SMALL_STATE(1511)] = 76505, + [SMALL_STATE(1512)] = 76547, + [SMALL_STATE(1513)] = 76589, + [SMALL_STATE(1514)] = 76631, + [SMALL_STATE(1515)] = 76673, + [SMALL_STATE(1516)] = 76715, + [SMALL_STATE(1517)] = 76757, + [SMALL_STATE(1518)] = 76799, + [SMALL_STATE(1519)] = 76843, + [SMALL_STATE(1520)] = 76885, + [SMALL_STATE(1521)] = 76927, + [SMALL_STATE(1522)] = 76971, + [SMALL_STATE(1523)] = 77013, + [SMALL_STATE(1524)] = 77055, + [SMALL_STATE(1525)] = 77096, + [SMALL_STATE(1526)] = 77137, + [SMALL_STATE(1527)] = 77178, + [SMALL_STATE(1528)] = 77219, + [SMALL_STATE(1529)] = 77260, + [SMALL_STATE(1530)] = 77301, + [SMALL_STATE(1531)] = 77342, + [SMALL_STATE(1532)] = 77383, + [SMALL_STATE(1533)] = 77424, + [SMALL_STATE(1534)] = 77465, + [SMALL_STATE(1535)] = 77510, + [SMALL_STATE(1536)] = 77551, + [SMALL_STATE(1537)] = 77592, + [SMALL_STATE(1538)] = 77637, + [SMALL_STATE(1539)] = 77678, + [SMALL_STATE(1540)] = 77719, + [SMALL_STATE(1541)] = 77764, + [SMALL_STATE(1542)] = 77805, + [SMALL_STATE(1543)] = 77846, + [SMALL_STATE(1544)] = 77893, + [SMALL_STATE(1545)] = 77934, + [SMALL_STATE(1546)] = 77975, + [SMALL_STATE(1547)] = 78016, + [SMALL_STATE(1548)] = 78057, + [SMALL_STATE(1549)] = 78098, + [SMALL_STATE(1550)] = 78139, + [SMALL_STATE(1551)] = 78180, + [SMALL_STATE(1552)] = 78223, + [SMALL_STATE(1553)] = 78264, + [SMALL_STATE(1554)] = 78305, + [SMALL_STATE(1555)] = 78384, + [SMALL_STATE(1556)] = 78425, + [SMALL_STATE(1557)] = 78466, + [SMALL_STATE(1558)] = 78507, + [SMALL_STATE(1559)] = 78548, + [SMALL_STATE(1560)] = 78589, + [SMALL_STATE(1561)] = 78633, + [SMALL_STATE(1562)] = 78675, + [SMALL_STATE(1563)] = 78717, + [SMALL_STATE(1564)] = 78759, + [SMALL_STATE(1565)] = 78801, + [SMALL_STATE(1566)] = 78879, + [SMALL_STATE(1567)] = 78957, + [SMALL_STATE(1568)] = 79001, + [SMALL_STATE(1569)] = 79079, + [SMALL_STATE(1570)] = 79157, + [SMALL_STATE(1571)] = 79199, + [SMALL_STATE(1572)] = 79277, + [SMALL_STATE(1573)] = 79319, + [SMALL_STATE(1574)] = 79361, + [SMALL_STATE(1575)] = 79403, + [SMALL_STATE(1576)] = 79445, + [SMALL_STATE(1577)] = 79513, + [SMALL_STATE(1578)] = 79555, + [SMALL_STATE(1579)] = 79597, + [SMALL_STATE(1580)] = 79675, + [SMALL_STATE(1581)] = 79717, + [SMALL_STATE(1582)] = 79759, + [SMALL_STATE(1583)] = 79837, + [SMALL_STATE(1584)] = 79915, + [SMALL_STATE(1585)] = 79981, + [SMALL_STATE(1586)] = 80023, + [SMALL_STATE(1587)] = 80065, + [SMALL_STATE(1588)] = 80107, + [SMALL_STATE(1589)] = 80149, + [SMALL_STATE(1590)] = 80191, + [SMALL_STATE(1591)] = 80233, + [SMALL_STATE(1592)] = 80275, + [SMALL_STATE(1593)] = 80317, + [SMALL_STATE(1594)] = 80359, + [SMALL_STATE(1595)] = 80401, + [SMALL_STATE(1596)] = 80443, + [SMALL_STATE(1597)] = 80485, + [SMALL_STATE(1598)] = 80563, + [SMALL_STATE(1599)] = 80641, + [SMALL_STATE(1600)] = 80683, + [SMALL_STATE(1601)] = 80725, + [SMALL_STATE(1602)] = 80767, + [SMALL_STATE(1603)] = 80809, + [SMALL_STATE(1604)] = 80851, + [SMALL_STATE(1605)] = 80919, + [SMALL_STATE(1606)] = 80960, + [SMALL_STATE(1607)] = 81001, + [SMALL_STATE(1608)] = 81074, + [SMALL_STATE(1609)] = 81120, + [SMALL_STATE(1610)] = 81166, + [SMALL_STATE(1611)] = 81212, + [SMALL_STATE(1612)] = 81284, + [SMALL_STATE(1613)] = 81330, + [SMALL_STATE(1614)] = 81366, + [SMALL_STATE(1615)] = 81412, + [SMALL_STATE(1616)] = 81458, + [SMALL_STATE(1617)] = 81494, + [SMALL_STATE(1618)] = 81566, + [SMALL_STATE(1619)] = 81632, + [SMALL_STATE(1620)] = 81704, + [SMALL_STATE(1621)] = 81776, + [SMALL_STATE(1622)] = 81822, + [SMALL_STATE(1623)] = 81894, + [SMALL_STATE(1624)] = 81960, + [SMALL_STATE(1625)] = 82006, + [SMALL_STATE(1626)] = 82052, + [SMALL_STATE(1627)] = 82098, + [SMALL_STATE(1628)] = 82134, + [SMALL_STATE(1629)] = 82180, + [SMALL_STATE(1630)] = 82226, + [SMALL_STATE(1631)] = 82272, + [SMALL_STATE(1632)] = 82344, + [SMALL_STATE(1633)] = 82410, + [SMALL_STATE(1634)] = 82446, + [SMALL_STATE(1635)] = 82518, + [SMALL_STATE(1636)] = 82564, + [SMALL_STATE(1637)] = 82610, + [SMALL_STATE(1638)] = 82656, + [SMALL_STATE(1639)] = 82702, + [SMALL_STATE(1640)] = 82748, + [SMALL_STATE(1641)] = 82820, + [SMALL_STATE(1642)] = 82866, + [SMALL_STATE(1643)] = 82932, + [SMALL_STATE(1644)] = 83004, + [SMALL_STATE(1645)] = 83050, + [SMALL_STATE(1646)] = 83122, + [SMALL_STATE(1647)] = 83168, + [SMALL_STATE(1648)] = 83204, + [SMALL_STATE(1649)] = 83250, + [SMALL_STATE(1650)] = 83296, + [SMALL_STATE(1651)] = 83365, + [SMALL_STATE(1652)] = 83434, + [SMALL_STATE(1653)] = 83503, + [SMALL_STATE(1654)] = 83572, + [SMALL_STATE(1655)] = 83641, + [SMALL_STATE(1656)] = 83710, + [SMALL_STATE(1657)] = 83777, + [SMALL_STATE(1658)] = 83846, + [SMALL_STATE(1659)] = 83915, + [SMALL_STATE(1660)] = 83984, + [SMALL_STATE(1661)] = 84053, + [SMALL_STATE(1662)] = 84122, + [SMALL_STATE(1663)] = 84191, + [SMALL_STATE(1664)] = 84260, + [SMALL_STATE(1665)] = 84329, + [SMALL_STATE(1666)] = 84398, + [SMALL_STATE(1667)] = 84467, + [SMALL_STATE(1668)] = 84536, + [SMALL_STATE(1669)] = 84605, + [SMALL_STATE(1670)] = 84674, + [SMALL_STATE(1671)] = 84743, + [SMALL_STATE(1672)] = 84789, + [SMALL_STATE(1673)] = 84849, + [SMALL_STATE(1674)] = 84909, + [SMALL_STATE(1675)] = 84955, + [SMALL_STATE(1676)] = 85015, + [SMALL_STATE(1677)] = 85075, + [SMALL_STATE(1678)] = 85115, + [SMALL_STATE(1679)] = 85175, + [SMALL_STATE(1680)] = 85239, + [SMALL_STATE(1681)] = 85285, + [SMALL_STATE(1682)] = 85345, + [SMALL_STATE(1683)] = 85405, + [SMALL_STATE(1684)] = 85465, + [SMALL_STATE(1685)] = 85525, + [SMALL_STATE(1686)] = 85571, + [SMALL_STATE(1687)] = 85631, + [SMALL_STATE(1688)] = 85691, + [SMALL_STATE(1689)] = 85737, + [SMALL_STATE(1690)] = 85783, + [SMALL_STATE(1691)] = 85843, + [SMALL_STATE(1692)] = 85903, + [SMALL_STATE(1693)] = 85963, + [SMALL_STATE(1694)] = 86027, + [SMALL_STATE(1695)] = 86063, + [SMALL_STATE(1696)] = 86107, + [SMALL_STATE(1697)] = 86153, + [SMALL_STATE(1698)] = 86199, + [SMALL_STATE(1699)] = 86245, + [SMALL_STATE(1700)] = 86291, + [SMALL_STATE(1701)] = 86351, + [SMALL_STATE(1702)] = 86411, + [SMALL_STATE(1703)] = 86471, + [SMALL_STATE(1704)] = 86531, + [SMALL_STATE(1705)] = 86591, + [SMALL_STATE(1706)] = 86651, + [SMALL_STATE(1707)] = 86711, + [SMALL_STATE(1708)] = 86774, + [SMALL_STATE(1709)] = 86837, + [SMALL_STATE(1710)] = 86900, + [SMALL_STATE(1711)] = 86963, + [SMALL_STATE(1712)] = 87026, + [SMALL_STATE(1713)] = 87089, + [SMALL_STATE(1714)] = 87152, + [SMALL_STATE(1715)] = 87215, + [SMALL_STATE(1716)] = 87278, + [SMALL_STATE(1717)] = 87341, + [SMALL_STATE(1718)] = 87404, + [SMALL_STATE(1719)] = 87467, + [SMALL_STATE(1720)] = 87530, + [SMALL_STATE(1721)] = 87593, + [SMALL_STATE(1722)] = 87656, + [SMALL_STATE(1723)] = 87719, + [SMALL_STATE(1724)] = 87782, + [SMALL_STATE(1725)] = 87845, + [SMALL_STATE(1726)] = 87908, + [SMALL_STATE(1727)] = 87971, + [SMALL_STATE(1728)] = 88034, + [SMALL_STATE(1729)] = 88097, + [SMALL_STATE(1730)] = 88160, + [SMALL_STATE(1731)] = 88223, + [SMALL_STATE(1732)] = 88286, + [SMALL_STATE(1733)] = 88349, + [SMALL_STATE(1734)] = 88412, + [SMALL_STATE(1735)] = 88475, + [SMALL_STATE(1736)] = 88538, + [SMALL_STATE(1737)] = 88601, + [SMALL_STATE(1738)] = 88664, + [SMALL_STATE(1739)] = 88727, + [SMALL_STATE(1740)] = 88790, + [SMALL_STATE(1741)] = 88853, + [SMALL_STATE(1742)] = 88916, + [SMALL_STATE(1743)] = 88979, + [SMALL_STATE(1744)] = 89042, + [SMALL_STATE(1745)] = 89105, + [SMALL_STATE(1746)] = 89168, + [SMALL_STATE(1747)] = 89231, + [SMALL_STATE(1748)] = 89294, + [SMALL_STATE(1749)] = 89357, + [SMALL_STATE(1750)] = 89414, + [SMALL_STATE(1751)] = 89477, + [SMALL_STATE(1752)] = 89540, + [SMALL_STATE(1753)] = 89603, + [SMALL_STATE(1754)] = 89666, + [SMALL_STATE(1755)] = 89729, + [SMALL_STATE(1756)] = 89792, + [SMALL_STATE(1757)] = 89855, + [SMALL_STATE(1758)] = 89918, + [SMALL_STATE(1759)] = 89981, + [SMALL_STATE(1760)] = 90044, + [SMALL_STATE(1761)] = 90107, + [SMALL_STATE(1762)] = 90170, + [SMALL_STATE(1763)] = 90233, + [SMALL_STATE(1764)] = 90296, + [SMALL_STATE(1765)] = 90359, + [SMALL_STATE(1766)] = 90422, + [SMALL_STATE(1767)] = 90485, + [SMALL_STATE(1768)] = 90548, + [SMALL_STATE(1769)] = 90611, + [SMALL_STATE(1770)] = 90674, + [SMALL_STATE(1771)] = 90737, + [SMALL_STATE(1772)] = 90800, + [SMALL_STATE(1773)] = 90863, + [SMALL_STATE(1774)] = 90926, + [SMALL_STATE(1775)] = 90989, + [SMALL_STATE(1776)] = 91052, + [SMALL_STATE(1777)] = 91115, + [SMALL_STATE(1778)] = 91178, + [SMALL_STATE(1779)] = 91212, + [SMALL_STATE(1780)] = 91250, + [SMALL_STATE(1781)] = 91284, + [SMALL_STATE(1782)] = 91318, + [SMALL_STATE(1783)] = 91352, + [SMALL_STATE(1784)] = 91386, + [SMALL_STATE(1785)] = 91444, + [SMALL_STATE(1786)] = 91478, + [SMALL_STATE(1787)] = 91536, + [SMALL_STATE(1788)] = 91594, + [SMALL_STATE(1789)] = 91652, + [SMALL_STATE(1790)] = 91710, + [SMALL_STATE(1791)] = 91768, + [SMALL_STATE(1792)] = 91802, + [SMALL_STATE(1793)] = 91860, + [SMALL_STATE(1794)] = 91907, + [SMALL_STATE(1795)] = 91954, + [SMALL_STATE(1796)] = 92001, + [SMALL_STATE(1797)] = 92048, + [SMALL_STATE(1798)] = 92095, + [SMALL_STATE(1799)] = 92142, + [SMALL_STATE(1800)] = 92189, + [SMALL_STATE(1801)] = 92236, + [SMALL_STATE(1802)] = 92283, + [SMALL_STATE(1803)] = 92330, + [SMALL_STATE(1804)] = 92377, + [SMALL_STATE(1805)] = 92431, + [SMALL_STATE(1806)] = 92485, + [SMALL_STATE(1807)] = 92539, + [SMALL_STATE(1808)] = 92585, + [SMALL_STATE(1809)] = 92631, + [SMALL_STATE(1810)] = 92685, + [SMALL_STATE(1811)] = 92727, + [SMALL_STATE(1812)] = 92781, + [SMALL_STATE(1813)] = 92813, + [SMALL_STATE(1814)] = 92845, + [SMALL_STATE(1815)] = 92897, + [SMALL_STATE(1816)] = 92939, + [SMALL_STATE(1817)] = 92993, + [SMALL_STATE(1818)] = 93025, + [SMALL_STATE(1819)] = 93071, + [SMALL_STATE(1820)] = 93115, + [SMALL_STATE(1821)] = 93167, + [SMALL_STATE(1822)] = 93219, + [SMALL_STATE(1823)] = 93271, + [SMALL_STATE(1824)] = 93317, + [SMALL_STATE(1825)] = 93371, + [SMALL_STATE(1826)] = 93423, + [SMALL_STATE(1827)] = 93465, + [SMALL_STATE(1828)] = 93511, + [SMALL_STATE(1829)] = 93565, + [SMALL_STATE(1830)] = 93599, + [SMALL_STATE(1831)] = 93653, + [SMALL_STATE(1832)] = 93707, + [SMALL_STATE(1833)] = 93753, + [SMALL_STATE(1834)] = 93808, + [SMALL_STATE(1835)] = 93855, + [SMALL_STATE(1836)] = 93902, + [SMALL_STATE(1837)] = 93949, + [SMALL_STATE(1838)] = 93996, + [SMALL_STATE(1839)] = 94051, + [SMALL_STATE(1840)] = 94098, + [SMALL_STATE(1841)] = 94145, + [SMALL_STATE(1842)] = 94192, + [SMALL_STATE(1843)] = 94239, + [SMALL_STATE(1844)] = 94286, + [SMALL_STATE(1845)] = 94333, + [SMALL_STATE(1846)] = 94380, + [SMALL_STATE(1847)] = 94435, + [SMALL_STATE(1848)] = 94482, + [SMALL_STATE(1849)] = 94529, + [SMALL_STATE(1850)] = 94576, + [SMALL_STATE(1851)] = 94631, + [SMALL_STATE(1852)] = 94664, + [SMALL_STATE(1853)] = 94711, + [SMALL_STATE(1854)] = 94758, + [SMALL_STATE(1855)] = 94805, + [SMALL_STATE(1856)] = 94850, + [SMALL_STATE(1857)] = 94897, + [SMALL_STATE(1858)] = 94930, + [SMALL_STATE(1859)] = 94985, + [SMALL_STATE(1860)] = 95032, + [SMALL_STATE(1861)] = 95087, + [SMALL_STATE(1862)] = 95142, + [SMALL_STATE(1863)] = 95189, + [SMALL_STATE(1864)] = 95236, + [SMALL_STATE(1865)] = 95283, + [SMALL_STATE(1866)] = 95338, + [SMALL_STATE(1867)] = 95393, + [SMALL_STATE(1868)] = 95440, + [SMALL_STATE(1869)] = 95495, + [SMALL_STATE(1870)] = 95542, + [SMALL_STATE(1871)] = 95589, + [SMALL_STATE(1872)] = 95636, + [SMALL_STATE(1873)] = 95683, + [SMALL_STATE(1874)] = 95730, + [SMALL_STATE(1875)] = 95763, + [SMALL_STATE(1876)] = 95811, + [SMALL_STATE(1877)] = 95853, + [SMALL_STATE(1878)] = 95889, + [SMALL_STATE(1879)] = 95933, + [SMALL_STATE(1880)] = 95977, + [SMALL_STATE(1881)] = 96021, + [SMALL_STATE(1882)] = 96061, + [SMALL_STATE(1883)] = 96109, + [SMALL_STATE(1884)] = 96155, + [SMALL_STATE(1885)] = 96203, + [SMALL_STATE(1886)] = 96249, + [SMALL_STATE(1887)] = 96297, + [SMALL_STATE(1888)] = 96345, + [SMALL_STATE(1889)] = 96389, + [SMALL_STATE(1890)] = 96435, + [SMALL_STATE(1891)] = 96479, + [SMALL_STATE(1892)] = 96525, + [SMALL_STATE(1893)] = 96569, + [SMALL_STATE(1894)] = 96613, + [SMALL_STATE(1895)] = 96649, + [SMALL_STATE(1896)] = 96689, + [SMALL_STATE(1897)] = 96737, + [SMALL_STATE(1898)] = 96783, + [SMALL_STATE(1899)] = 96829, + [SMALL_STATE(1900)] = 96877, + [SMALL_STATE(1901)] = 96925, + [SMALL_STATE(1902)] = 96971, + [SMALL_STATE(1903)] = 97015, + [SMALL_STATE(1904)] = 97061, + [SMALL_STATE(1905)] = 97107, + [SMALL_STATE(1906)] = 97151, + [SMALL_STATE(1907)] = 97199, + [SMALL_STATE(1908)] = 97243, + [SMALL_STATE(1909)] = 97287, + [SMALL_STATE(1910)] = 97335, + [SMALL_STATE(1911)] = 97379, + [SMALL_STATE(1912)] = 97423, + [SMALL_STATE(1913)] = 97467, + [SMALL_STATE(1914)] = 97513, + [SMALL_STATE(1915)] = 97557, + [SMALL_STATE(1916)] = 97586, + [SMALL_STATE(1917)] = 97621, + [SMALL_STATE(1918)] = 97656, + [SMALL_STATE(1919)] = 97689, + [SMALL_STATE(1920)] = 97720, + [SMALL_STATE(1921)] = 97753, + [SMALL_STATE(1922)] = 97798, + [SMALL_STATE(1923)] = 97841, + [SMALL_STATE(1924)] = 97886, + [SMALL_STATE(1925)] = 97932, + [SMALL_STATE(1926)] = 97978, + [SMALL_STATE(1927)] = 98024, + [SMALL_STATE(1928)] = 98066, + [SMALL_STATE(1929)] = 98104, + [SMALL_STATE(1930)] = 98150, + [SMALL_STATE(1931)] = 98192, + [SMALL_STATE(1932)] = 98224, + [SMALL_STATE(1933)] = 98270, + [SMALL_STATE(1934)] = 98316, + [SMALL_STATE(1935)] = 98362, + [SMALL_STATE(1936)] = 98404, + [SMALL_STATE(1937)] = 98446, + [SMALL_STATE(1938)] = 98484, + [SMALL_STATE(1939)] = 98522, + [SMALL_STATE(1940)] = 98558, + [SMALL_STATE(1941)] = 98604, + [SMALL_STATE(1942)] = 98642, + [SMALL_STATE(1943)] = 98680, + [SMALL_STATE(1944)] = 98726, + [SMALL_STATE(1945)] = 98764, + [SMALL_STATE(1946)] = 98810, + [SMALL_STATE(1947)] = 98842, + [SMALL_STATE(1948)] = 98884, + [SMALL_STATE(1949)] = 98930, + [SMALL_STATE(1950)] = 98968, + [SMALL_STATE(1951)] = 99014, + [SMALL_STATE(1952)] = 99060, + [SMALL_STATE(1953)] = 99106, + [SMALL_STATE(1954)] = 99148, + [SMALL_STATE(1955)] = 99190, + [SMALL_STATE(1956)] = 99236, + [SMALL_STATE(1957)] = 99266, + [SMALL_STATE(1958)] = 99300, + [SMALL_STATE(1959)] = 99346, + [SMALL_STATE(1960)] = 99392, + [SMALL_STATE(1961)] = 99430, + [SMALL_STATE(1962)] = 99476, + [SMALL_STATE(1963)] = 99522, + [SMALL_STATE(1964)] = 99556, + [SMALL_STATE(1965)] = 99602, + [SMALL_STATE(1966)] = 99648, + [SMALL_STATE(1967)] = 99686, + [SMALL_STATE(1968)] = 99714, + [SMALL_STATE(1969)] = 99752, + [SMALL_STATE(1970)] = 99798, + [SMALL_STATE(1971)] = 99836, + [SMALL_STATE(1972)] = 99866, + [SMALL_STATE(1973)] = 99904, + [SMALL_STATE(1974)] = 99946, + [SMALL_STATE(1975)] = 99992, + [SMALL_STATE(1976)] = 100034, + [SMALL_STATE(1977)] = 100076, + [SMALL_STATE(1978)] = 100114, + [SMALL_STATE(1979)] = 100160, + [SMALL_STATE(1980)] = 100206, + [SMALL_STATE(1981)] = 100244, + [SMALL_STATE(1982)] = 100290, + [SMALL_STATE(1983)] = 100336, + [SMALL_STATE(1984)] = 100382, + [SMALL_STATE(1985)] = 100428, + [SMALL_STATE(1986)] = 100466, + [SMALL_STATE(1987)] = 100512, + [SMALL_STATE(1988)] = 100559, + [SMALL_STATE(1989)] = 100606, + [SMALL_STATE(1990)] = 100653, + [SMALL_STATE(1991)] = 100692, + [SMALL_STATE(1992)] = 100719, + [SMALL_STATE(1993)] = 100766, + [SMALL_STATE(1994)] = 100813, + [SMALL_STATE(1995)] = 100860, + [SMALL_STATE(1996)] = 100899, + [SMALL_STATE(1997)] = 100938, + [SMALL_STATE(1998)] = 100985, + [SMALL_STATE(1999)] = 101032, + [SMALL_STATE(2000)] = 101071, + [SMALL_STATE(2001)] = 101110, + [SMALL_STATE(2002)] = 101139, + [SMALL_STATE(2003)] = 101168, + [SMALL_STATE(2004)] = 101207, + [SMALL_STATE(2005)] = 101236, + [SMALL_STATE(2006)] = 101265, + [SMALL_STATE(2007)] = 101312, + [SMALL_STATE(2008)] = 101351, + [SMALL_STATE(2009)] = 101390, + [SMALL_STATE(2010)] = 101429, + [SMALL_STATE(2011)] = 101466, + [SMALL_STATE(2012)] = 101503, + [SMALL_STATE(2013)] = 101532, + [SMALL_STATE(2014)] = 101561, + [SMALL_STATE(2015)] = 101596, + [SMALL_STATE(2016)] = 101635, + [SMALL_STATE(2017)] = 101664, + [SMALL_STATE(2018)] = 101711, + [SMALL_STATE(2019)] = 101750, + [SMALL_STATE(2020)] = 101785, + [SMALL_STATE(2021)] = 101832, + [SMALL_STATE(2022)] = 101879, + [SMALL_STATE(2023)] = 101914, + [SMALL_STATE(2024)] = 101961, + [SMALL_STATE(2025)] = 102000, + [SMALL_STATE(2026)] = 102029, + [SMALL_STATE(2027)] = 102076, + [SMALL_STATE(2028)] = 102105, + [SMALL_STATE(2029)] = 102152, + [SMALL_STATE(2030)] = 102191, + [SMALL_STATE(2031)] = 102220, + [SMALL_STATE(2032)] = 102259, + [SMALL_STATE(2033)] = 102306, + [SMALL_STATE(2034)] = 102353, + [SMALL_STATE(2035)] = 102400, + [SMALL_STATE(2036)] = 102429, + [SMALL_STATE(2037)] = 102458, + [SMALL_STATE(2038)] = 102497, + [SMALL_STATE(2039)] = 102544, + [SMALL_STATE(2040)] = 102591, + [SMALL_STATE(2041)] = 102620, + [SMALL_STATE(2042)] = 102659, + [SMALL_STATE(2043)] = 102698, + [SMALL_STATE(2044)] = 102737, + [SMALL_STATE(2045)] = 102776, + [SMALL_STATE(2046)] = 102823, + [SMALL_STATE(2047)] = 102858, + [SMALL_STATE(2048)] = 102897, + [SMALL_STATE(2049)] = 102944, + [SMALL_STATE(2050)] = 102983, + [SMALL_STATE(2051)] = 103030, + [SMALL_STATE(2052)] = 103077, + [SMALL_STATE(2053)] = 103114, + [SMALL_STATE(2054)] = 103143, + [SMALL_STATE(2055)] = 103190, + [SMALL_STATE(2056)] = 103219, + [SMALL_STATE(2057)] = 103246, + [SMALL_STATE(2058)] = 103293, + [SMALL_STATE(2059)] = 103340, + [SMALL_STATE(2060)] = 103387, + [SMALL_STATE(2061)] = 103426, + [SMALL_STATE(2062)] = 103465, + [SMALL_STATE(2063)] = 103512, + [SMALL_STATE(2064)] = 103559, + [SMALL_STATE(2065)] = 103598, + [SMALL_STATE(2066)] = 103645, + [SMALL_STATE(2067)] = 103672, + [SMALL_STATE(2068)] = 103719, + [SMALL_STATE(2069)] = 103758, + [SMALL_STATE(2070)] = 103805, + [SMALL_STATE(2071)] = 103844, + [SMALL_STATE(2072)] = 103883, + [SMALL_STATE(2073)] = 103910, + [SMALL_STATE(2074)] = 103957, + [SMALL_STATE(2075)] = 103984, + [SMALL_STATE(2076)] = 104031, + [SMALL_STATE(2077)] = 104070, + [SMALL_STATE(2078)] = 104117, + [SMALL_STATE(2079)] = 104164, + [SMALL_STATE(2080)] = 104211, + [SMALL_STATE(2081)] = 104258, + [SMALL_STATE(2082)] = 104305, + [SMALL_STATE(2083)] = 104342, + [SMALL_STATE(2084)] = 104373, + [SMALL_STATE(2085)] = 104420, + [SMALL_STATE(2086)] = 104467, + [SMALL_STATE(2087)] = 104514, + [SMALL_STATE(2088)] = 104561, + [SMALL_STATE(2089)] = 104608, + [SMALL_STATE(2090)] = 104647, + [SMALL_STATE(2091)] = 104686, + [SMALL_STATE(2092)] = 104733, + [SMALL_STATE(2093)] = 104770, + [SMALL_STATE(2094)] = 104817, + [SMALL_STATE(2095)] = 104864, + [SMALL_STATE(2096)] = 104901, + [SMALL_STATE(2097)] = 104948, + [SMALL_STATE(2098)] = 104995, + [SMALL_STATE(2099)] = 105035, + [SMALL_STATE(2100)] = 105063, + [SMALL_STATE(2101)] = 105089, + [SMALL_STATE(2102)] = 105129, + [SMALL_STATE(2103)] = 105159, + [SMALL_STATE(2104)] = 105201, + [SMALL_STATE(2105)] = 105245, + [SMALL_STATE(2106)] = 105271, + [SMALL_STATE(2107)] = 105311, + [SMALL_STATE(2108)] = 105351, + [SMALL_STATE(2109)] = 105377, + [SMALL_STATE(2110)] = 105403, + [SMALL_STATE(2111)] = 105443, + [SMALL_STATE(2112)] = 105487, + [SMALL_STATE(2113)] = 105527, + [SMALL_STATE(2114)] = 105567, + [SMALL_STATE(2115)] = 105605, + [SMALL_STATE(2116)] = 105645, + [SMALL_STATE(2117)] = 105689, + [SMALL_STATE(2118)] = 105729, + [SMALL_STATE(2119)] = 105767, + [SMALL_STATE(2120)] = 105807, + [SMALL_STATE(2121)] = 105847, + [SMALL_STATE(2122)] = 105887, + [SMALL_STATE(2123)] = 105927, + [SMALL_STATE(2124)] = 105967, + [SMALL_STATE(2125)] = 106011, + [SMALL_STATE(2126)] = 106037, + [SMALL_STATE(2127)] = 106075, + [SMALL_STATE(2128)] = 106113, + [SMALL_STATE(2129)] = 106141, + [SMALL_STATE(2130)] = 106179, + [SMALL_STATE(2131)] = 106223, + [SMALL_STATE(2132)] = 106267, + [SMALL_STATE(2133)] = 106311, + [SMALL_STATE(2134)] = 106351, + [SMALL_STATE(2135)] = 106395, + [SMALL_STATE(2136)] = 106435, + [SMALL_STATE(2137)] = 106479, + [SMALL_STATE(2138)] = 106519, + [SMALL_STATE(2139)] = 106559, + [SMALL_STATE(2140)] = 106599, + [SMALL_STATE(2141)] = 106641, + [SMALL_STATE(2142)] = 106669, + [SMALL_STATE(2143)] = 106711, + [SMALL_STATE(2144)] = 106751, + [SMALL_STATE(2145)] = 106793, + [SMALL_STATE(2146)] = 106837, + [SMALL_STATE(2147)] = 106877, + [SMALL_STATE(2148)] = 106921, + [SMALL_STATE(2149)] = 106965, + [SMALL_STATE(2150)] = 107009, + [SMALL_STATE(2151)] = 107049, + [SMALL_STATE(2152)] = 107089, + [SMALL_STATE(2153)] = 107129, + [SMALL_STATE(2154)] = 107169, + [SMALL_STATE(2155)] = 107209, + [SMALL_STATE(2156)] = 107243, + [SMALL_STATE(2157)] = 107287, + [SMALL_STATE(2158)] = 107331, + [SMALL_STATE(2159)] = 107371, + [SMALL_STATE(2160)] = 107401, + [SMALL_STATE(2161)] = 107441, + [SMALL_STATE(2162)] = 107469, + [SMALL_STATE(2163)] = 107513, + [SMALL_STATE(2164)] = 107557, + [SMALL_STATE(2165)] = 107595, + [SMALL_STATE(2166)] = 107635, + [SMALL_STATE(2167)] = 107679, + [SMALL_STATE(2168)] = 107719, + [SMALL_STATE(2169)] = 107747, + [SMALL_STATE(2170)] = 107787, + [SMALL_STATE(2171)] = 107825, + [SMALL_STATE(2172)] = 107869, + [SMALL_STATE(2173)] = 107909, + [SMALL_STATE(2174)] = 107951, + [SMALL_STATE(2175)] = 107995, + [SMALL_STATE(2176)] = 108039, + [SMALL_STATE(2177)] = 108083, + [SMALL_STATE(2178)] = 108123, + [SMALL_STATE(2179)] = 108167, + [SMALL_STATE(2180)] = 108207, + [SMALL_STATE(2181)] = 108251, + [SMALL_STATE(2182)] = 108287, + [SMALL_STATE(2183)] = 108331, + [SMALL_STATE(2184)] = 108359, + [SMALL_STATE(2185)] = 108399, + [SMALL_STATE(2186)] = 108432, + [SMALL_STATE(2187)] = 108465, + [SMALL_STATE(2188)] = 108498, + [SMALL_STATE(2189)] = 108531, + [SMALL_STATE(2190)] = 108564, + [SMALL_STATE(2191)] = 108597, + [SMALL_STATE(2192)] = 108630, + [SMALL_STATE(2193)] = 108663, + [SMALL_STATE(2194)] = 108696, + [SMALL_STATE(2195)] = 108729, + [SMALL_STATE(2196)] = 108762, + [SMALL_STATE(2197)] = 108795, + [SMALL_STATE(2198)] = 108828, + [SMALL_STATE(2199)] = 108861, + [SMALL_STATE(2200)] = 108894, + [SMALL_STATE(2201)] = 108927, + [SMALL_STATE(2202)] = 108952, + [SMALL_STATE(2203)] = 108985, + [SMALL_STATE(2204)] = 109014, + [SMALL_STATE(2205)] = 109043, + [SMALL_STATE(2206)] = 109076, + [SMALL_STATE(2207)] = 109109, + [SMALL_STATE(2208)] = 109142, + [SMALL_STATE(2209)] = 109175, + [SMALL_STATE(2210)] = 109208, + [SMALL_STATE(2211)] = 109241, + [SMALL_STATE(2212)] = 109274, + [SMALL_STATE(2213)] = 109307, + [SMALL_STATE(2214)] = 109340, + [SMALL_STATE(2215)] = 109371, + [SMALL_STATE(2216)] = 109404, + [SMALL_STATE(2217)] = 109437, + [SMALL_STATE(2218)] = 109472, + [SMALL_STATE(2219)] = 109505, + [SMALL_STATE(2220)] = 109538, + [SMALL_STATE(2221)] = 109571, + [SMALL_STATE(2222)] = 109604, + [SMALL_STATE(2223)] = 109637, + [SMALL_STATE(2224)] = 109670, + [SMALL_STATE(2225)] = 109703, + [SMALL_STATE(2226)] = 109736, + [SMALL_STATE(2227)] = 109769, + [SMALL_STATE(2228)] = 109802, + [SMALL_STATE(2229)] = 109835, + [SMALL_STATE(2230)] = 109868, + [SMALL_STATE(2231)] = 109901, + [SMALL_STATE(2232)] = 109934, + [SMALL_STATE(2233)] = 109967, + [SMALL_STATE(2234)] = 110000, + [SMALL_STATE(2235)] = 110033, + [SMALL_STATE(2236)] = 110066, + [SMALL_STATE(2237)] = 110099, + [SMALL_STATE(2238)] = 110132, + [SMALL_STATE(2239)] = 110165, + [SMALL_STATE(2240)] = 110198, + [SMALL_STATE(2241)] = 110231, + [SMALL_STATE(2242)] = 110264, + [SMALL_STATE(2243)] = 110297, + [SMALL_STATE(2244)] = 110330, + [SMALL_STATE(2245)] = 110363, + [SMALL_STATE(2246)] = 110396, + [SMALL_STATE(2247)] = 110429, + [SMALL_STATE(2248)] = 110462, + [SMALL_STATE(2249)] = 110495, + [SMALL_STATE(2250)] = 110522, + [SMALL_STATE(2251)] = 110555, + [SMALL_STATE(2252)] = 110588, + [SMALL_STATE(2253)] = 110621, + [SMALL_STATE(2254)] = 110654, + [SMALL_STATE(2255)] = 110687, + [SMALL_STATE(2256)] = 110720, + [SMALL_STATE(2257)] = 110753, + [SMALL_STATE(2258)] = 110786, + [SMALL_STATE(2259)] = 110819, + [SMALL_STATE(2260)] = 110852, + [SMALL_STATE(2261)] = 110885, + [SMALL_STATE(2262)] = 110918, + [SMALL_STATE(2263)] = 110951, + [SMALL_STATE(2264)] = 110984, + [SMALL_STATE(2265)] = 111017, + [SMALL_STATE(2266)] = 111050, + [SMALL_STATE(2267)] = 111083, + [SMALL_STATE(2268)] = 111116, + [SMALL_STATE(2269)] = 111149, + [SMALL_STATE(2270)] = 111182, + [SMALL_STATE(2271)] = 111215, + [SMALL_STATE(2272)] = 111248, + [SMALL_STATE(2273)] = 111281, + [SMALL_STATE(2274)] = 111314, + [SMALL_STATE(2275)] = 111347, + [SMALL_STATE(2276)] = 111380, + [SMALL_STATE(2277)] = 111413, + [SMALL_STATE(2278)] = 111446, + [SMALL_STATE(2279)] = 111481, + [SMALL_STATE(2280)] = 111514, + [SMALL_STATE(2281)] = 111539, + [SMALL_STATE(2282)] = 111572, + [SMALL_STATE(2283)] = 111605, + [SMALL_STATE(2284)] = 111634, + [SMALL_STATE(2285)] = 111663, + [SMALL_STATE(2286)] = 111696, + [SMALL_STATE(2287)] = 111729, + [SMALL_STATE(2288)] = 111760, + [SMALL_STATE(2289)] = 111793, + [SMALL_STATE(2290)] = 111824, + [SMALL_STATE(2291)] = 111851, + [SMALL_STATE(2292)] = 111884, + [SMALL_STATE(2293)] = 111917, + [SMALL_STATE(2294)] = 111950, + [SMALL_STATE(2295)] = 111983, + [SMALL_STATE(2296)] = 112016, + [SMALL_STATE(2297)] = 112041, + [SMALL_STATE(2298)] = 112070, + [SMALL_STATE(2299)] = 112103, + [SMALL_STATE(2300)] = 112136, + [SMALL_STATE(2301)] = 112169, + [SMALL_STATE(2302)] = 112202, + [SMALL_STATE(2303)] = 112235, + [SMALL_STATE(2304)] = 112268, + [SMALL_STATE(2305)] = 112301, + [SMALL_STATE(2306)] = 112334, + [SMALL_STATE(2307)] = 112367, + [SMALL_STATE(2308)] = 112400, + [SMALL_STATE(2309)] = 112433, + [SMALL_STATE(2310)] = 112466, + [SMALL_STATE(2311)] = 112499, + [SMALL_STATE(2312)] = 112532, + [SMALL_STATE(2313)] = 112565, + [SMALL_STATE(2314)] = 112598, + [SMALL_STATE(2315)] = 112631, + [SMALL_STATE(2316)] = 112667, + [SMALL_STATE(2317)] = 112705, + [SMALL_STATE(2318)] = 112741, + [SMALL_STATE(2319)] = 112777, + [SMALL_STATE(2320)] = 112813, + [SMALL_STATE(2321)] = 112849, + [SMALL_STATE(2322)] = 112885, + [SMALL_STATE(2323)] = 112915, + [SMALL_STATE(2324)] = 112951, + [SMALL_STATE(2325)] = 112987, + [SMALL_STATE(2326)] = 113023, + [SMALL_STATE(2327)] = 113059, + [SMALL_STATE(2328)] = 113083, + [SMALL_STATE(2329)] = 113113, + [SMALL_STATE(2330)] = 113149, + [SMALL_STATE(2331)] = 113173, + [SMALL_STATE(2332)] = 113209, + [SMALL_STATE(2333)] = 113245, + [SMALL_STATE(2334)] = 113281, + [SMALL_STATE(2335)] = 113317, + [SMALL_STATE(2336)] = 113347, + [SMALL_STATE(2337)] = 113383, + [SMALL_STATE(2338)] = 113419, + [SMALL_STATE(2339)] = 113447, + [SMALL_STATE(2340)] = 113483, + [SMALL_STATE(2341)] = 113519, + [SMALL_STATE(2342)] = 113555, + [SMALL_STATE(2343)] = 113593, + [SMALL_STATE(2344)] = 113627, + [SMALL_STATE(2345)] = 113663, + [SMALL_STATE(2346)] = 113699, + [SMALL_STATE(2347)] = 113735, + [SMALL_STATE(2348)] = 113771, + [SMALL_STATE(2349)] = 113801, + [SMALL_STATE(2350)] = 113837, + [SMALL_STATE(2351)] = 113873, + [SMALL_STATE(2352)] = 113897, + [SMALL_STATE(2353)] = 113931, + [SMALL_STATE(2354)] = 113961, + [SMALL_STATE(2355)] = 113996, + [SMALL_STATE(2356)] = 114021, + [SMALL_STATE(2357)] = 114052, + [SMALL_STATE(2358)] = 114085, + [SMALL_STATE(2359)] = 114116, + [SMALL_STATE(2360)] = 114147, + [SMALL_STATE(2361)] = 114180, + [SMALL_STATE(2362)] = 114213, + [SMALL_STATE(2363)] = 114248, + [SMALL_STATE(2364)] = 114281, + [SMALL_STATE(2365)] = 114316, + [SMALL_STATE(2366)] = 114343, + [SMALL_STATE(2367)] = 114374, + [SMALL_STATE(2368)] = 114409, + [SMALL_STATE(2369)] = 114440, + [SMALL_STATE(2370)] = 114463, + [SMALL_STATE(2371)] = 114494, + [SMALL_STATE(2372)] = 114529, + [SMALL_STATE(2373)] = 114562, + [SMALL_STATE(2374)] = 114597, + [SMALL_STATE(2375)] = 114622, + [SMALL_STATE(2376)] = 114645, + [SMALL_STATE(2377)] = 114670, + [SMALL_STATE(2378)] = 114695, + [SMALL_STATE(2379)] = 114720, + [SMALL_STATE(2380)] = 114751, + [SMALL_STATE(2381)] = 114782, + [SMALL_STATE(2382)] = 114815, + [SMALL_STATE(2383)] = 114838, + [SMALL_STATE(2384)] = 114861, + [SMALL_STATE(2385)] = 114886, + [SMALL_STATE(2386)] = 114921, + [SMALL_STATE(2387)] = 114946, + [SMALL_STATE(2388)] = 114969, + [SMALL_STATE(2389)] = 115004, + [SMALL_STATE(2390)] = 115039, + [SMALL_STATE(2391)] = 115074, + [SMALL_STATE(2392)] = 115109, + [SMALL_STATE(2393)] = 115132, + [SMALL_STATE(2394)] = 115157, + [SMALL_STATE(2395)] = 115190, + [SMALL_STATE(2396)] = 115215, + [SMALL_STATE(2397)] = 115246, + [SMALL_STATE(2398)] = 115271, + [SMALL_STATE(2399)] = 115304, + [SMALL_STATE(2400)] = 115329, + [SMALL_STATE(2401)] = 115364, + [SMALL_STATE(2402)] = 115397, + [SMALL_STATE(2403)] = 115432, + [SMALL_STATE(2404)] = 115467, + [SMALL_STATE(2405)] = 115492, + [SMALL_STATE(2406)] = 115525, + [SMALL_STATE(2407)] = 115558, + [SMALL_STATE(2408)] = 115593, + [SMALL_STATE(2409)] = 115628, + [SMALL_STATE(2410)] = 115663, + [SMALL_STATE(2411)] = 115698, + [SMALL_STATE(2412)] = 115731, + [SMALL_STATE(2413)] = 115764, + [SMALL_STATE(2414)] = 115789, + [SMALL_STATE(2415)] = 115814, + [SMALL_STATE(2416)] = 115839, + [SMALL_STATE(2417)] = 115874, + [SMALL_STATE(2418)] = 115899, + [SMALL_STATE(2419)] = 115934, + [SMALL_STATE(2420)] = 115959, + [SMALL_STATE(2421)] = 115988, + [SMALL_STATE(2422)] = 116015, + [SMALL_STATE(2423)] = 116040, + [SMALL_STATE(2424)] = 116073, + [SMALL_STATE(2425)] = 116108, + [SMALL_STATE(2426)] = 116139, + [SMALL_STATE(2427)] = 116164, + [SMALL_STATE(2428)] = 116189, + [SMALL_STATE(2429)] = 116222, + [SMALL_STATE(2430)] = 116247, + [SMALL_STATE(2431)] = 116272, + [SMALL_STATE(2432)] = 116307, + [SMALL_STATE(2433)] = 116342, + [SMALL_STATE(2434)] = 116367, + [SMALL_STATE(2435)] = 116392, + [SMALL_STATE(2436)] = 116427, + [SMALL_STATE(2437)] = 116462, + [SMALL_STATE(2438)] = 116497, + [SMALL_STATE(2439)] = 116532, + [SMALL_STATE(2440)] = 116557, + [SMALL_STATE(2441)] = 116592, + [SMALL_STATE(2442)] = 116627, + [SMALL_STATE(2443)] = 116652, + [SMALL_STATE(2444)] = 116687, + [SMALL_STATE(2445)] = 116722, + [SMALL_STATE(2446)] = 116757, + [SMALL_STATE(2447)] = 116792, + [SMALL_STATE(2448)] = 116823, + [SMALL_STATE(2449)] = 116858, + [SMALL_STATE(2450)] = 116883, + [SMALL_STATE(2451)] = 116916, + [SMALL_STATE(2452)] = 116951, + [SMALL_STATE(2453)] = 116984, + [SMALL_STATE(2454)] = 117007, + [SMALL_STATE(2455)] = 117042, + [SMALL_STATE(2456)] = 117077, + [SMALL_STATE(2457)] = 117112, + [SMALL_STATE(2458)] = 117145, + [SMALL_STATE(2459)] = 117180, + [SMALL_STATE(2460)] = 117215, + [SMALL_STATE(2461)] = 117246, + [SMALL_STATE(2462)] = 117271, + [SMALL_STATE(2463)] = 117306, + [SMALL_STATE(2464)] = 117341, + [SMALL_STATE(2465)] = 117366, + [SMALL_STATE(2466)] = 117401, + [SMALL_STATE(2467)] = 117432, + [SMALL_STATE(2468)] = 117467, + [SMALL_STATE(2469)] = 117502, + [SMALL_STATE(2470)] = 117537, + [SMALL_STATE(2471)] = 117572, + [SMALL_STATE(2472)] = 117607, + [SMALL_STATE(2473)] = 117642, + [SMALL_STATE(2474)] = 117675, + [SMALL_STATE(2475)] = 117710, + [SMALL_STATE(2476)] = 117745, + [SMALL_STATE(2477)] = 117780, + [SMALL_STATE(2478)] = 117811, + [SMALL_STATE(2479)] = 117846, + [SMALL_STATE(2480)] = 117879, + [SMALL_STATE(2481)] = 117912, + [SMALL_STATE(2482)] = 117947, + [SMALL_STATE(2483)] = 117978, + [SMALL_STATE(2484)] = 118003, + [SMALL_STATE(2485)] = 118036, + [SMALL_STATE(2486)] = 118071, + [SMALL_STATE(2487)] = 118102, + [SMALL_STATE(2488)] = 118137, + [SMALL_STATE(2489)] = 118172, + [SMALL_STATE(2490)] = 118207, + [SMALL_STATE(2491)] = 118242, + [SMALL_STATE(2492)] = 118267, + [SMALL_STATE(2493)] = 118292, + [SMALL_STATE(2494)] = 118317, + [SMALL_STATE(2495)] = 118352, + [SMALL_STATE(2496)] = 118382, + [SMALL_STATE(2497)] = 118414, + [SMALL_STATE(2498)] = 118446, + [SMALL_STATE(2499)] = 118476, + [SMALL_STATE(2500)] = 118506, + [SMALL_STATE(2501)] = 118538, + [SMALL_STATE(2502)] = 118570, + [SMALL_STATE(2503)] = 118602, + [SMALL_STATE(2504)] = 118634, + [SMALL_STATE(2505)] = 118666, + [SMALL_STATE(2506)] = 118698, + [SMALL_STATE(2507)] = 118728, + [SMALL_STATE(2508)] = 118760, + [SMALL_STATE(2509)] = 118792, + [SMALL_STATE(2510)] = 118824, + [SMALL_STATE(2511)] = 118850, + [SMALL_STATE(2512)] = 118880, + [SMALL_STATE(2513)] = 118910, + [SMALL_STATE(2514)] = 118942, + [SMALL_STATE(2515)] = 118972, + [SMALL_STATE(2516)] = 119002, + [SMALL_STATE(2517)] = 119032, + [SMALL_STATE(2518)] = 119062, + [SMALL_STATE(2519)] = 119092, + [SMALL_STATE(2520)] = 119122, + [SMALL_STATE(2521)] = 119152, + [SMALL_STATE(2522)] = 119182, + [SMALL_STATE(2523)] = 119214, + [SMALL_STATE(2524)] = 119244, + [SMALL_STATE(2525)] = 119274, + [SMALL_STATE(2526)] = 119304, + [SMALL_STATE(2527)] = 119336, + [SMALL_STATE(2528)] = 119366, + [SMALL_STATE(2529)] = 119396, + [SMALL_STATE(2530)] = 119428, + [SMALL_STATE(2531)] = 119460, + [SMALL_STATE(2532)] = 119492, + [SMALL_STATE(2533)] = 119524, + [SMALL_STATE(2534)] = 119552, + [SMALL_STATE(2535)] = 119584, + [SMALL_STATE(2536)] = 119614, + [SMALL_STATE(2537)] = 119646, + [SMALL_STATE(2538)] = 119676, + [SMALL_STATE(2539)] = 119708, + [SMALL_STATE(2540)] = 119738, + [SMALL_STATE(2541)] = 119768, + [SMALL_STATE(2542)] = 119800, + [SMALL_STATE(2543)] = 119830, + [SMALL_STATE(2544)] = 119862, + [SMALL_STATE(2545)] = 119894, + [SMALL_STATE(2546)] = 119926, + [SMALL_STATE(2547)] = 119956, + [SMALL_STATE(2548)] = 119978, + [SMALL_STATE(2549)] = 120008, + [SMALL_STATE(2550)] = 120040, + [SMALL_STATE(2551)] = 120068, + [SMALL_STATE(2552)] = 120098, + [SMALL_STATE(2553)] = 120120, + [SMALL_STATE(2554)] = 120152, + [SMALL_STATE(2555)] = 120182, + [SMALL_STATE(2556)] = 120212, + [SMALL_STATE(2557)] = 120242, + [SMALL_STATE(2558)] = 120272, + [SMALL_STATE(2559)] = 120300, + [SMALL_STATE(2560)] = 120332, + [SMALL_STATE(2561)] = 120364, + [SMALL_STATE(2562)] = 120394, + [SMALL_STATE(2563)] = 120424, + [SMALL_STATE(2564)] = 120454, + [SMALL_STATE(2565)] = 120486, + [SMALL_STATE(2566)] = 120518, + [SMALL_STATE(2567)] = 120550, + [SMALL_STATE(2568)] = 120580, + [SMALL_STATE(2569)] = 120610, + [SMALL_STATE(2570)] = 120640, + [SMALL_STATE(2571)] = 120672, + [SMALL_STATE(2572)] = 120704, + [SMALL_STATE(2573)] = 120736, + [SMALL_STATE(2574)] = 120768, + [SMALL_STATE(2575)] = 120800, + [SMALL_STATE(2576)] = 120832, + [SMALL_STATE(2577)] = 120864, + [SMALL_STATE(2578)] = 120886, + [SMALL_STATE(2579)] = 120918, + [SMALL_STATE(2580)] = 120942, + [SMALL_STATE(2581)] = 120974, + [SMALL_STATE(2582)] = 121006, + [SMALL_STATE(2583)] = 121038, + [SMALL_STATE(2584)] = 121068, + [SMALL_STATE(2585)] = 121098, + [SMALL_STATE(2586)] = 121128, + [SMALL_STATE(2587)] = 121160, + [SMALL_STATE(2588)] = 121190, + [SMALL_STATE(2589)] = 121212, + [SMALL_STATE(2590)] = 121244, + [SMALL_STATE(2591)] = 121274, + [SMALL_STATE(2592)] = 121306, + [SMALL_STATE(2593)] = 121338, + [SMALL_STATE(2594)] = 121370, + [SMALL_STATE(2595)] = 121400, + [SMALL_STATE(2596)] = 121430, + [SMALL_STATE(2597)] = 121460, + [SMALL_STATE(2598)] = 121490, + [SMALL_STATE(2599)] = 121520, + [SMALL_STATE(2600)] = 121550, + [SMALL_STATE(2601)] = 121582, + [SMALL_STATE(2602)] = 121612, + [SMALL_STATE(2603)] = 121640, + [SMALL_STATE(2604)] = 121672, + [SMALL_STATE(2605)] = 121702, + [SMALL_STATE(2606)] = 121734, + [SMALL_STATE(2607)] = 121764, + [SMALL_STATE(2608)] = 121796, + [SMALL_STATE(2609)] = 121828, + [SMALL_STATE(2610)] = 121860, + [SMALL_STATE(2611)] = 121892, + [SMALL_STATE(2612)] = 121922, + [SMALL_STATE(2613)] = 121954, + [SMALL_STATE(2614)] = 121984, + [SMALL_STATE(2615)] = 122014, + [SMALL_STATE(2616)] = 122044, + [SMALL_STATE(2617)] = 122074, + [SMALL_STATE(2618)] = 122104, + [SMALL_STATE(2619)] = 122134, + [SMALL_STATE(2620)] = 122164, + [SMALL_STATE(2621)] = 122194, + [SMALL_STATE(2622)] = 122224, + [SMALL_STATE(2623)] = 122252, + [SMALL_STATE(2624)] = 122284, + [SMALL_STATE(2625)] = 122314, + [SMALL_STATE(2626)] = 122344, + [SMALL_STATE(2627)] = 122374, + [SMALL_STATE(2628)] = 122404, + [SMALL_STATE(2629)] = 122434, + [SMALL_STATE(2630)] = 122464, + [SMALL_STATE(2631)] = 122496, + [SMALL_STATE(2632)] = 122528, + [SMALL_STATE(2633)] = 122560, + [SMALL_STATE(2634)] = 122592, + [SMALL_STATE(2635)] = 122622, + [SMALL_STATE(2636)] = 122646, + [SMALL_STATE(2637)] = 122676, + [SMALL_STATE(2638)] = 122706, + [SMALL_STATE(2639)] = 122736, + [SMALL_STATE(2640)] = 122766, + [SMALL_STATE(2641)] = 122796, + [SMALL_STATE(2642)] = 122818, + [SMALL_STATE(2643)] = 122848, + [SMALL_STATE(2644)] = 122878, + [SMALL_STATE(2645)] = 122908, + [SMALL_STATE(2646)] = 122938, + [SMALL_STATE(2647)] = 122968, + [SMALL_STATE(2648)] = 122998, + [SMALL_STATE(2649)] = 123030, + [SMALL_STATE(2650)] = 123060, + [SMALL_STATE(2651)] = 123092, + [SMALL_STATE(2652)] = 123122, + [SMALL_STATE(2653)] = 123152, + [SMALL_STATE(2654)] = 123182, + [SMALL_STATE(2655)] = 123212, + [SMALL_STATE(2656)] = 123242, + [SMALL_STATE(2657)] = 123272, + [SMALL_STATE(2658)] = 123302, + [SMALL_STATE(2659)] = 123332, + [SMALL_STATE(2660)] = 123362, + [SMALL_STATE(2661)] = 123392, + [SMALL_STATE(2662)] = 123422, + [SMALL_STATE(2663)] = 123452, + [SMALL_STATE(2664)] = 123482, + [SMALL_STATE(2665)] = 123514, + [SMALL_STATE(2666)] = 123543, + [SMALL_STATE(2667)] = 123566, + [SMALL_STATE(2668)] = 123595, + [SMALL_STATE(2669)] = 123620, + [SMALL_STATE(2670)] = 123645, + [SMALL_STATE(2671)] = 123670, + [SMALL_STATE(2672)] = 123699, + [SMALL_STATE(2673)] = 123724, + [SMALL_STATE(2674)] = 123753, + [SMALL_STATE(2675)] = 123776, + [SMALL_STATE(2676)] = 123801, + [SMALL_STATE(2677)] = 123828, + [SMALL_STATE(2678)] = 123857, + [SMALL_STATE(2679)] = 123886, + [SMALL_STATE(2680)] = 123915, + [SMALL_STATE(2681)] = 123938, + [SMALL_STATE(2682)] = 123963, + [SMALL_STATE(2683)] = 123988, + [SMALL_STATE(2684)] = 124009, + [SMALL_STATE(2685)] = 124038, + [SMALL_STATE(2686)] = 124059, + [SMALL_STATE(2687)] = 124088, + [SMALL_STATE(2688)] = 124117, + [SMALL_STATE(2689)] = 124142, + [SMALL_STATE(2690)] = 124169, + [SMALL_STATE(2691)] = 124198, + [SMALL_STATE(2692)] = 124227, + [SMALL_STATE(2693)] = 124256, + [SMALL_STATE(2694)] = 124285, + [SMALL_STATE(2695)] = 124308, + [SMALL_STATE(2696)] = 124337, + [SMALL_STATE(2697)] = 124358, + [SMALL_STATE(2698)] = 124387, + [SMALL_STATE(2699)] = 124408, + [SMALL_STATE(2700)] = 124437, + [SMALL_STATE(2701)] = 124466, + [SMALL_STATE(2702)] = 124495, + [SMALL_STATE(2703)] = 124524, + [SMALL_STATE(2704)] = 124553, + [SMALL_STATE(2705)] = 124582, + [SMALL_STATE(2706)] = 124611, + [SMALL_STATE(2707)] = 124640, + [SMALL_STATE(2708)] = 124669, + [SMALL_STATE(2709)] = 124698, + [SMALL_STATE(2710)] = 124727, + [SMALL_STATE(2711)] = 124748, + [SMALL_STATE(2712)] = 124777, + [SMALL_STATE(2713)] = 124800, + [SMALL_STATE(2714)] = 124829, + [SMALL_STATE(2715)] = 124858, + [SMALL_STATE(2716)] = 124883, + [SMALL_STATE(2717)] = 124906, + [SMALL_STATE(2718)] = 124935, + [SMALL_STATE(2719)] = 124958, + [SMALL_STATE(2720)] = 124987, + [SMALL_STATE(2721)] = 125016, + [SMALL_STATE(2722)] = 125041, + [SMALL_STATE(2723)] = 125070, + [SMALL_STATE(2724)] = 125099, + [SMALL_STATE(2725)] = 125128, + [SMALL_STATE(2726)] = 125157, + [SMALL_STATE(2727)] = 125182, + [SMALL_STATE(2728)] = 125211, + [SMALL_STATE(2729)] = 125240, + [SMALL_STATE(2730)] = 125263, + [SMALL_STATE(2731)] = 125288, + [SMALL_STATE(2732)] = 125311, + [SMALL_STATE(2733)] = 125332, + [SMALL_STATE(2734)] = 125355, + [SMALL_STATE(2735)] = 125384, + [SMALL_STATE(2736)] = 125409, + [SMALL_STATE(2737)] = 125436, + [SMALL_STATE(2738)] = 125461, + [SMALL_STATE(2739)] = 125490, + [SMALL_STATE(2740)] = 125515, + [SMALL_STATE(2741)] = 125544, + [SMALL_STATE(2742)] = 125573, + [SMALL_STATE(2743)] = 125596, + [SMALL_STATE(2744)] = 125625, + [SMALL_STATE(2745)] = 125654, + [SMALL_STATE(2746)] = 125679, + [SMALL_STATE(2747)] = 125704, + [SMALL_STATE(2748)] = 125731, + [SMALL_STATE(2749)] = 125760, + [SMALL_STATE(2750)] = 125785, + [SMALL_STATE(2751)] = 125806, + [SMALL_STATE(2752)] = 125835, + [SMALL_STATE(2753)] = 125864, + [SMALL_STATE(2754)] = 125893, + [SMALL_STATE(2755)] = 125922, + [SMALL_STATE(2756)] = 125951, + [SMALL_STATE(2757)] = 125980, + [SMALL_STATE(2758)] = 126009, + [SMALL_STATE(2759)] = 126038, + [SMALL_STATE(2760)] = 126067, + [SMALL_STATE(2761)] = 126090, + [SMALL_STATE(2762)] = 126119, + [SMALL_STATE(2763)] = 126142, + [SMALL_STATE(2764)] = 126171, + [SMALL_STATE(2765)] = 126196, + [SMALL_STATE(2766)] = 126219, + [SMALL_STATE(2767)] = 126248, + [SMALL_STATE(2768)] = 126277, + [SMALL_STATE(2769)] = 126306, + [SMALL_STATE(2770)] = 126335, + [SMALL_STATE(2771)] = 126364, + [SMALL_STATE(2772)] = 126389, + [SMALL_STATE(2773)] = 126414, + [SMALL_STATE(2774)] = 126439, + [SMALL_STATE(2775)] = 126462, + [SMALL_STATE(2776)] = 126491, + [SMALL_STATE(2777)] = 126516, + [SMALL_STATE(2778)] = 126539, + [SMALL_STATE(2779)] = 126568, + [SMALL_STATE(2780)] = 126597, + [SMALL_STATE(2781)] = 126620, + [SMALL_STATE(2782)] = 126645, + [SMALL_STATE(2783)] = 126674, + [SMALL_STATE(2784)] = 126701, + [SMALL_STATE(2785)] = 126728, + [SMALL_STATE(2786)] = 126753, + [SMALL_STATE(2787)] = 126782, + [SMALL_STATE(2788)] = 126811, + [SMALL_STATE(2789)] = 126836, + [SMALL_STATE(2790)] = 126861, + [SMALL_STATE(2791)] = 126890, + [SMALL_STATE(2792)] = 126915, + [SMALL_STATE(2793)] = 126944, + [SMALL_STATE(2794)] = 126973, + [SMALL_STATE(2795)] = 126996, + [SMALL_STATE(2796)] = 127025, + [SMALL_STATE(2797)] = 127048, + [SMALL_STATE(2798)] = 127071, + [SMALL_STATE(2799)] = 127096, + [SMALL_STATE(2800)] = 127121, + [SMALL_STATE(2801)] = 127146, + [SMALL_STATE(2802)] = 127175, + [SMALL_STATE(2803)] = 127204, + [SMALL_STATE(2804)] = 127233, + [SMALL_STATE(2805)] = 127262, + [SMALL_STATE(2806)] = 127285, + [SMALL_STATE(2807)] = 127310, + [SMALL_STATE(2808)] = 127335, + [SMALL_STATE(2809)] = 127364, + [SMALL_STATE(2810)] = 127393, + [SMALL_STATE(2811)] = 127422, + [SMALL_STATE(2812)] = 127451, + [SMALL_STATE(2813)] = 127480, + [SMALL_STATE(2814)] = 127503, + [SMALL_STATE(2815)] = 127532, + [SMALL_STATE(2816)] = 127561, + [SMALL_STATE(2817)] = 127586, + [SMALL_STATE(2818)] = 127615, + [SMALL_STATE(2819)] = 127644, + [SMALL_STATE(2820)] = 127669, + [SMALL_STATE(2821)] = 127692, + [SMALL_STATE(2822)] = 127721, + [SMALL_STATE(2823)] = 127750, + [SMALL_STATE(2824)] = 127773, + [SMALL_STATE(2825)] = 127800, + [SMALL_STATE(2826)] = 127829, + [SMALL_STATE(2827)] = 127852, + [SMALL_STATE(2828)] = 127875, + [SMALL_STATE(2829)] = 127904, + [SMALL_STATE(2830)] = 127929, + [SMALL_STATE(2831)] = 127952, + [SMALL_STATE(2832)] = 127981, + [SMALL_STATE(2833)] = 128004, + [SMALL_STATE(2834)] = 128027, + [SMALL_STATE(2835)] = 128056, + [SMALL_STATE(2836)] = 128081, + [SMALL_STATE(2837)] = 128110, + [SMALL_STATE(2838)] = 128133, + [SMALL_STATE(2839)] = 128156, + [SMALL_STATE(2840)] = 128185, + [SMALL_STATE(2841)] = 128208, + [SMALL_STATE(2842)] = 128237, + [SMALL_STATE(2843)] = 128260, + [SMALL_STATE(2844)] = 128285, + [SMALL_STATE(2845)] = 128310, + [SMALL_STATE(2846)] = 128333, + [SMALL_STATE(2847)] = 128362, + [SMALL_STATE(2848)] = 128391, + [SMALL_STATE(2849)] = 128420, + [SMALL_STATE(2850)] = 128449, + [SMALL_STATE(2851)] = 128474, + [SMALL_STATE(2852)] = 128499, + [SMALL_STATE(2853)] = 128522, + [SMALL_STATE(2854)] = 128551, + [SMALL_STATE(2855)] = 128574, + [SMALL_STATE(2856)] = 128597, + [SMALL_STATE(2857)] = 128622, + [SMALL_STATE(2858)] = 128651, + [SMALL_STATE(2859)] = 128680, + [SMALL_STATE(2860)] = 128709, + [SMALL_STATE(2861)] = 128738, + [SMALL_STATE(2862)] = 128761, + [SMALL_STATE(2863)] = 128790, + [SMALL_STATE(2864)] = 128815, + [SMALL_STATE(2865)] = 128844, + [SMALL_STATE(2866)] = 128867, + [SMALL_STATE(2867)] = 128896, + [SMALL_STATE(2868)] = 128925, + [SMALL_STATE(2869)] = 128948, + [SMALL_STATE(2870)] = 128977, + [SMALL_STATE(2871)] = 129003, + [SMALL_STATE(2872)] = 129029, + [SMALL_STATE(2873)] = 129051, + [SMALL_STATE(2874)] = 129071, + [SMALL_STATE(2875)] = 129097, + [SMALL_STATE(2876)] = 129121, + [SMALL_STATE(2877)] = 129147, + [SMALL_STATE(2878)] = 129171, + [SMALL_STATE(2879)] = 129197, + [SMALL_STATE(2880)] = 129223, + [SMALL_STATE(2881)] = 129243, + [SMALL_STATE(2882)] = 129269, + [SMALL_STATE(2883)] = 129295, + [SMALL_STATE(2884)] = 129317, + [SMALL_STATE(2885)] = 129341, + [SMALL_STATE(2886)] = 129367, + [SMALL_STATE(2887)] = 129389, + [SMALL_STATE(2888)] = 129409, + [SMALL_STATE(2889)] = 129431, + [SMALL_STATE(2890)] = 129457, + [SMALL_STATE(2891)] = 129483, + [SMALL_STATE(2892)] = 129505, + [SMALL_STATE(2893)] = 129529, + [SMALL_STATE(2894)] = 129555, + [SMALL_STATE(2895)] = 129575, + [SMALL_STATE(2896)] = 129595, + [SMALL_STATE(2897)] = 129619, + [SMALL_STATE(2898)] = 129643, + [SMALL_STATE(2899)] = 129669, + [SMALL_STATE(2900)] = 129695, + [SMALL_STATE(2901)] = 129715, + [SMALL_STATE(2902)] = 129739, + [SMALL_STATE(2903)] = 129765, + [SMALL_STATE(2904)] = 129791, + [SMALL_STATE(2905)] = 129815, + [SMALL_STATE(2906)] = 129839, + [SMALL_STATE(2907)] = 129863, + [SMALL_STATE(2908)] = 129887, + [SMALL_STATE(2909)] = 129913, + [SMALL_STATE(2910)] = 129939, + [SMALL_STATE(2911)] = 129965, + [SMALL_STATE(2912)] = 129991, + [SMALL_STATE(2913)] = 130011, + [SMALL_STATE(2914)] = 130037, + [SMALL_STATE(2915)] = 130063, + [SMALL_STATE(2916)] = 130089, + [SMALL_STATE(2917)] = 130109, + [SMALL_STATE(2918)] = 130133, + [SMALL_STATE(2919)] = 130157, + [SMALL_STATE(2920)] = 130181, + [SMALL_STATE(2921)] = 130203, + [SMALL_STATE(2922)] = 130227, + [SMALL_STATE(2923)] = 130251, + [SMALL_STATE(2924)] = 130275, + [SMALL_STATE(2925)] = 130301, + [SMALL_STATE(2926)] = 130321, + [SMALL_STATE(2927)] = 130345, + [SMALL_STATE(2928)] = 130369, + [SMALL_STATE(2929)] = 130389, + [SMALL_STATE(2930)] = 130413, + [SMALL_STATE(2931)] = 130437, + [SMALL_STATE(2932)] = 130461, + [SMALL_STATE(2933)] = 130481, + [SMALL_STATE(2934)] = 130503, + [SMALL_STATE(2935)] = 130523, + [SMALL_STATE(2936)] = 130547, + [SMALL_STATE(2937)] = 130571, + [SMALL_STATE(2938)] = 130595, + [SMALL_STATE(2939)] = 130619, + [SMALL_STATE(2940)] = 130643, + [SMALL_STATE(2941)] = 130663, + [SMALL_STATE(2942)] = 130683, + [SMALL_STATE(2943)] = 130707, + [SMALL_STATE(2944)] = 130727, + [SMALL_STATE(2945)] = 130747, + [SMALL_STATE(2946)] = 130771, + [SMALL_STATE(2947)] = 130795, + [SMALL_STATE(2948)] = 130817, + [SMALL_STATE(2949)] = 130839, + [SMALL_STATE(2950)] = 130865, + [SMALL_STATE(2951)] = 130887, + [SMALL_STATE(2952)] = 130907, + [SMALL_STATE(2953)] = 130931, + [SMALL_STATE(2954)] = 130957, + [SMALL_STATE(2955)] = 130983, + [SMALL_STATE(2956)] = 131009, + [SMALL_STATE(2957)] = 131033, + [SMALL_STATE(2958)] = 131059, + [SMALL_STATE(2959)] = 131085, + [SMALL_STATE(2960)] = 131111, + [SMALL_STATE(2961)] = 131137, + [SMALL_STATE(2962)] = 131161, + [SMALL_STATE(2963)] = 131185, + [SMALL_STATE(2964)] = 131211, + [SMALL_STATE(2965)] = 131233, + [SMALL_STATE(2966)] = 131259, + [SMALL_STATE(2967)] = 131283, + [SMALL_STATE(2968)] = 131307, + [SMALL_STATE(2969)] = 131331, + [SMALL_STATE(2970)] = 131355, + [SMALL_STATE(2971)] = 131375, + [SMALL_STATE(2972)] = 131401, + [SMALL_STATE(2973)] = 131421, + [SMALL_STATE(2974)] = 131441, + [SMALL_STATE(2975)] = 131461, + [SMALL_STATE(2976)] = 131487, + [SMALL_STATE(2977)] = 131513, + [SMALL_STATE(2978)] = 131539, + [SMALL_STATE(2979)] = 131563, + [SMALL_STATE(2980)] = 131585, + [SMALL_STATE(2981)] = 131611, + [SMALL_STATE(2982)] = 131631, + [SMALL_STATE(2983)] = 131653, + [SMALL_STATE(2984)] = 131679, + [SMALL_STATE(2985)] = 131701, + [SMALL_STATE(2986)] = 131723, + [SMALL_STATE(2987)] = 131749, + [SMALL_STATE(2988)] = 131773, + [SMALL_STATE(2989)] = 131793, + [SMALL_STATE(2990)] = 131817, + [SMALL_STATE(2991)] = 131841, + [SMALL_STATE(2992)] = 131861, + [SMALL_STATE(2993)] = 131887, + [SMALL_STATE(2994)] = 131907, + [SMALL_STATE(2995)] = 131931, + [SMALL_STATE(2996)] = 131957, + [SMALL_STATE(2997)] = 131981, + [SMALL_STATE(2998)] = 132005, + [SMALL_STATE(2999)] = 132031, + [SMALL_STATE(3000)] = 132053, + [SMALL_STATE(3001)] = 132079, + [SMALL_STATE(3002)] = 132105, + [SMALL_STATE(3003)] = 132129, + [SMALL_STATE(3004)] = 132153, + [SMALL_STATE(3005)] = 132175, + [SMALL_STATE(3006)] = 132199, + [SMALL_STATE(3007)] = 132221, + [SMALL_STATE(3008)] = 132244, + [SMALL_STATE(3009)] = 132267, + [SMALL_STATE(3010)] = 132286, + [SMALL_STATE(3011)] = 132309, + [SMALL_STATE(3012)] = 132328, + [SMALL_STATE(3013)] = 132351, + [SMALL_STATE(3014)] = 132370, + [SMALL_STATE(3015)] = 132389, + [SMALL_STATE(3016)] = 132408, + [SMALL_STATE(3017)] = 132431, + [SMALL_STATE(3018)] = 132454, + [SMALL_STATE(3019)] = 132477, + [SMALL_STATE(3020)] = 132500, + [SMALL_STATE(3021)] = 132519, + [SMALL_STATE(3022)] = 132538, + [SMALL_STATE(3023)] = 132557, + [SMALL_STATE(3024)] = 132576, + [SMALL_STATE(3025)] = 132595, + [SMALL_STATE(3026)] = 132614, + [SMALL_STATE(3027)] = 132633, + [SMALL_STATE(3028)] = 132656, + [SMALL_STATE(3029)] = 132675, + [SMALL_STATE(3030)] = 132694, + [SMALL_STATE(3031)] = 132717, + [SMALL_STATE(3032)] = 132740, + [SMALL_STATE(3033)] = 132763, + [SMALL_STATE(3034)] = 132786, + [SMALL_STATE(3035)] = 132805, + [SMALL_STATE(3036)] = 132824, + [SMALL_STATE(3037)] = 132843, + [SMALL_STATE(3038)] = 132862, + [SMALL_STATE(3039)] = 132885, + [SMALL_STATE(3040)] = 132908, + [SMALL_STATE(3041)] = 132931, + [SMALL_STATE(3042)] = 132954, + [SMALL_STATE(3043)] = 132977, + [SMALL_STATE(3044)] = 133000, + [SMALL_STATE(3045)] = 133023, + [SMALL_STATE(3046)] = 133046, + [SMALL_STATE(3047)] = 133069, + [SMALL_STATE(3048)] = 133090, + [SMALL_STATE(3049)] = 133109, + [SMALL_STATE(3050)] = 133132, + [SMALL_STATE(3051)] = 133151, + [SMALL_STATE(3052)] = 133174, + [SMALL_STATE(3053)] = 133197, + [SMALL_STATE(3054)] = 133220, + [SMALL_STATE(3055)] = 133243, + [SMALL_STATE(3056)] = 133262, + [SMALL_STATE(3057)] = 133285, + [SMALL_STATE(3058)] = 133304, + [SMALL_STATE(3059)] = 133327, + [SMALL_STATE(3060)] = 133350, + [SMALL_STATE(3061)] = 133373, + [SMALL_STATE(3062)] = 133396, + [SMALL_STATE(3063)] = 133419, + [SMALL_STATE(3064)] = 133442, + [SMALL_STATE(3065)] = 133465, + [SMALL_STATE(3066)] = 133488, + [SMALL_STATE(3067)] = 133511, + [SMALL_STATE(3068)] = 133530, + [SMALL_STATE(3069)] = 133553, + [SMALL_STATE(3070)] = 133576, + [SMALL_STATE(3071)] = 133595, + [SMALL_STATE(3072)] = 133618, + [SMALL_STATE(3073)] = 133637, + [SMALL_STATE(3074)] = 133658, + [SMALL_STATE(3075)] = 133681, + [SMALL_STATE(3076)] = 133702, + [SMALL_STATE(3077)] = 133725, + [SMALL_STATE(3078)] = 133748, + [SMALL_STATE(3079)] = 133771, + [SMALL_STATE(3080)] = 133790, + [SMALL_STATE(3081)] = 133813, + [SMALL_STATE(3082)] = 133836, + [SMALL_STATE(3083)] = 133855, + [SMALL_STATE(3084)] = 133878, + [SMALL_STATE(3085)] = 133901, + [SMALL_STATE(3086)] = 133920, + [SMALL_STATE(3087)] = 133943, + [SMALL_STATE(3088)] = 133966, + [SMALL_STATE(3089)] = 133989, + [SMALL_STATE(3090)] = 134012, + [SMALL_STATE(3091)] = 134035, + [SMALL_STATE(3092)] = 134058, + [SMALL_STATE(3093)] = 134081, + [SMALL_STATE(3094)] = 134100, + [SMALL_STATE(3095)] = 134123, + [SMALL_STATE(3096)] = 134146, + [SMALL_STATE(3097)] = 134165, + [SMALL_STATE(3098)] = 134188, + [SMALL_STATE(3099)] = 134211, + [SMALL_STATE(3100)] = 134234, + [SMALL_STATE(3101)] = 134257, + [SMALL_STATE(3102)] = 134280, + [SMALL_STATE(3103)] = 134299, + [SMALL_STATE(3104)] = 134322, + [SMALL_STATE(3105)] = 134341, + [SMALL_STATE(3106)] = 134364, + [SMALL_STATE(3107)] = 134387, + [SMALL_STATE(3108)] = 134406, + [SMALL_STATE(3109)] = 134429, + [SMALL_STATE(3110)] = 134452, + [SMALL_STATE(3111)] = 134471, + [SMALL_STATE(3112)] = 134490, + [SMALL_STATE(3113)] = 134513, + [SMALL_STATE(3114)] = 134536, + [SMALL_STATE(3115)] = 134559, + [SMALL_STATE(3116)] = 134578, + [SMALL_STATE(3117)] = 134601, + [SMALL_STATE(3118)] = 134624, + [SMALL_STATE(3119)] = 134647, + [SMALL_STATE(3120)] = 134666, + [SMALL_STATE(3121)] = 134689, + [SMALL_STATE(3122)] = 134712, + [SMALL_STATE(3123)] = 134731, + [SMALL_STATE(3124)] = 134750, + [SMALL_STATE(3125)] = 134773, + [SMALL_STATE(3126)] = 134796, + [SMALL_STATE(3127)] = 134819, + [SMALL_STATE(3128)] = 134842, + [SMALL_STATE(3129)] = 134865, + [SMALL_STATE(3130)] = 134888, + [SMALL_STATE(3131)] = 134907, + [SMALL_STATE(3132)] = 134930, + [SMALL_STATE(3133)] = 134953, + [SMALL_STATE(3134)] = 134976, + [SMALL_STATE(3135)] = 134999, + [SMALL_STATE(3136)] = 135022, + [SMALL_STATE(3137)] = 135045, + [SMALL_STATE(3138)] = 135068, + [SMALL_STATE(3139)] = 135091, + [SMALL_STATE(3140)] = 135110, + [SMALL_STATE(3141)] = 135133, + [SMALL_STATE(3142)] = 135156, + [SMALL_STATE(3143)] = 135179, + [SMALL_STATE(3144)] = 135202, + [SMALL_STATE(3145)] = 135225, + [SMALL_STATE(3146)] = 135248, + [SMALL_STATE(3147)] = 135271, + [SMALL_STATE(3148)] = 135294, + [SMALL_STATE(3149)] = 135313, + [SMALL_STATE(3150)] = 135336, + [SMALL_STATE(3151)] = 135355, + [SMALL_STATE(3152)] = 135376, + [SMALL_STATE(3153)] = 135399, + [SMALL_STATE(3154)] = 135422, + [SMALL_STATE(3155)] = 135441, + [SMALL_STATE(3156)] = 135464, + [SMALL_STATE(3157)] = 135483, + [SMALL_STATE(3158)] = 135506, + [SMALL_STATE(3159)] = 135529, + [SMALL_STATE(3160)] = 135552, + [SMALL_STATE(3161)] = 135575, + [SMALL_STATE(3162)] = 135598, + [SMALL_STATE(3163)] = 135621, + [SMALL_STATE(3164)] = 135644, + [SMALL_STATE(3165)] = 135667, + [SMALL_STATE(3166)] = 135690, + [SMALL_STATE(3167)] = 135713, + [SMALL_STATE(3168)] = 135736, + [SMALL_STATE(3169)] = 135759, + [SMALL_STATE(3170)] = 135778, + [SMALL_STATE(3171)] = 135801, + [SMALL_STATE(3172)] = 135820, + [SMALL_STATE(3173)] = 135839, + [SMALL_STATE(3174)] = 135862, + [SMALL_STATE(3175)] = 135881, + [SMALL_STATE(3176)] = 135904, + [SMALL_STATE(3177)] = 135927, + [SMALL_STATE(3178)] = 135950, + [SMALL_STATE(3179)] = 135973, + [SMALL_STATE(3180)] = 135994, + [SMALL_STATE(3181)] = 136015, + [SMALL_STATE(3182)] = 136038, + [SMALL_STATE(3183)] = 136057, + [SMALL_STATE(3184)] = 136080, + [SMALL_STATE(3185)] = 136103, + [SMALL_STATE(3186)] = 136122, + [SMALL_STATE(3187)] = 136145, + [SMALL_STATE(3188)] = 136164, + [SMALL_STATE(3189)] = 136187, + [SMALL_STATE(3190)] = 136210, + [SMALL_STATE(3191)] = 136233, + [SMALL_STATE(3192)] = 136256, + [SMALL_STATE(3193)] = 136279, + [SMALL_STATE(3194)] = 136302, + [SMALL_STATE(3195)] = 136325, + [SMALL_STATE(3196)] = 136344, + [SMALL_STATE(3197)] = 136363, + [SMALL_STATE(3198)] = 136386, + [SMALL_STATE(3199)] = 136409, + [SMALL_STATE(3200)] = 136432, + [SMALL_STATE(3201)] = 136455, + [SMALL_STATE(3202)] = 136474, + [SMALL_STATE(3203)] = 136497, + [SMALL_STATE(3204)] = 136520, + [SMALL_STATE(3205)] = 136543, + [SMALL_STATE(3206)] = 136566, + [SMALL_STATE(3207)] = 136589, + [SMALL_STATE(3208)] = 136612, + [SMALL_STATE(3209)] = 136635, + [SMALL_STATE(3210)] = 136658, + [SMALL_STATE(3211)] = 136681, + [SMALL_STATE(3212)] = 136700, + [SMALL_STATE(3213)] = 136723, + [SMALL_STATE(3214)] = 136746, + [SMALL_STATE(3215)] = 136769, + [SMALL_STATE(3216)] = 136788, + [SMALL_STATE(3217)] = 136811, + [SMALL_STATE(3218)] = 136834, + [SMALL_STATE(3219)] = 136857, + [SMALL_STATE(3220)] = 136876, + [SMALL_STATE(3221)] = 136899, + [SMALL_STATE(3222)] = 136922, + [SMALL_STATE(3223)] = 136945, + [SMALL_STATE(3224)] = 136968, + [SMALL_STATE(3225)] = 136991, + [SMALL_STATE(3226)] = 137014, + [SMALL_STATE(3227)] = 137033, + [SMALL_STATE(3228)] = 137056, + [SMALL_STATE(3229)] = 137079, + [SMALL_STATE(3230)] = 137102, + [SMALL_STATE(3231)] = 137121, + [SMALL_STATE(3232)] = 137144, + [SMALL_STATE(3233)] = 137167, + [SMALL_STATE(3234)] = 137190, + [SMALL_STATE(3235)] = 137213, + [SMALL_STATE(3236)] = 137236, + [SMALL_STATE(3237)] = 137259, + [SMALL_STATE(3238)] = 137278, + [SMALL_STATE(3239)] = 137301, + [SMALL_STATE(3240)] = 137324, + [SMALL_STATE(3241)] = 137343, + [SMALL_STATE(3242)] = 137366, + [SMALL_STATE(3243)] = 137385, + [SMALL_STATE(3244)] = 137408, + [SMALL_STATE(3245)] = 137431, + [SMALL_STATE(3246)] = 137450, + [SMALL_STATE(3247)] = 137473, + [SMALL_STATE(3248)] = 137496, + [SMALL_STATE(3249)] = 137515, + [SMALL_STATE(3250)] = 137538, + [SMALL_STATE(3251)] = 137561, + [SMALL_STATE(3252)] = 137584, + [SMALL_STATE(3253)] = 137607, + [SMALL_STATE(3254)] = 137630, + [SMALL_STATE(3255)] = 137649, + [SMALL_STATE(3256)] = 137672, + [SMALL_STATE(3257)] = 137695, + [SMALL_STATE(3258)] = 137718, + [SMALL_STATE(3259)] = 137741, + [SMALL_STATE(3260)] = 137760, + [SMALL_STATE(3261)] = 137783, + [SMALL_STATE(3262)] = 137802, + [SMALL_STATE(3263)] = 137825, + [SMALL_STATE(3264)] = 137848, + [SMALL_STATE(3265)] = 137867, + [SMALL_STATE(3266)] = 137890, + [SMALL_STATE(3267)] = 137909, + [SMALL_STATE(3268)] = 137932, + [SMALL_STATE(3269)] = 137955, + [SMALL_STATE(3270)] = 137978, + [SMALL_STATE(3271)] = 138001, + [SMALL_STATE(3272)] = 138024, + [SMALL_STATE(3273)] = 138047, + [SMALL_STATE(3274)] = 138070, + [SMALL_STATE(3275)] = 138089, + [SMALL_STATE(3276)] = 138112, + [SMALL_STATE(3277)] = 138135, + [SMALL_STATE(3278)] = 138158, + [SMALL_STATE(3279)] = 138177, + [SMALL_STATE(3280)] = 138200, + [SMALL_STATE(3281)] = 138223, + [SMALL_STATE(3282)] = 138246, + [SMALL_STATE(3283)] = 138269, + [SMALL_STATE(3284)] = 138292, + [SMALL_STATE(3285)] = 138315, + [SMALL_STATE(3286)] = 138338, + [SMALL_STATE(3287)] = 138361, + [SMALL_STATE(3288)] = 138384, + [SMALL_STATE(3289)] = 138407, + [SMALL_STATE(3290)] = 138426, + [SMALL_STATE(3291)] = 138449, + [SMALL_STATE(3292)] = 138468, + [SMALL_STATE(3293)] = 138491, + [SMALL_STATE(3294)] = 138512, + [SMALL_STATE(3295)] = 138535, + [SMALL_STATE(3296)] = 138558, + [SMALL_STATE(3297)] = 138581, + [SMALL_STATE(3298)] = 138600, + [SMALL_STATE(3299)] = 138623, + [SMALL_STATE(3300)] = 138646, + [SMALL_STATE(3301)] = 138665, + [SMALL_STATE(3302)] = 138688, + [SMALL_STATE(3303)] = 138711, + [SMALL_STATE(3304)] = 138730, + [SMALL_STATE(3305)] = 138753, + [SMALL_STATE(3306)] = 138776, + [SMALL_STATE(3307)] = 138799, + [SMALL_STATE(3308)] = 138822, + [SMALL_STATE(3309)] = 138845, + [SMALL_STATE(3310)] = 138868, + [SMALL_STATE(3311)] = 138891, + [SMALL_STATE(3312)] = 138914, + [SMALL_STATE(3313)] = 138937, + [SMALL_STATE(3314)] = 138960, + [SMALL_STATE(3315)] = 138983, + [SMALL_STATE(3316)] = 139006, + [SMALL_STATE(3317)] = 139029, + [SMALL_STATE(3318)] = 139052, + [SMALL_STATE(3319)] = 139075, + [SMALL_STATE(3320)] = 139098, + [SMALL_STATE(3321)] = 139121, + [SMALL_STATE(3322)] = 139144, + [SMALL_STATE(3323)] = 139167, + [SMALL_STATE(3324)] = 139190, + [SMALL_STATE(3325)] = 139213, + [SMALL_STATE(3326)] = 139236, + [SMALL_STATE(3327)] = 139259, + [SMALL_STATE(3328)] = 139282, + [SMALL_STATE(3329)] = 139305, + [SMALL_STATE(3330)] = 139324, + [SMALL_STATE(3331)] = 139347, + [SMALL_STATE(3332)] = 139370, + [SMALL_STATE(3333)] = 139393, + [SMALL_STATE(3334)] = 139416, + [SMALL_STATE(3335)] = 139439, + [SMALL_STATE(3336)] = 139458, + [SMALL_STATE(3337)] = 139481, + [SMALL_STATE(3338)] = 139504, + [SMALL_STATE(3339)] = 139527, + [SMALL_STATE(3340)] = 139550, + [SMALL_STATE(3341)] = 139573, + [SMALL_STATE(3342)] = 139596, + [SMALL_STATE(3343)] = 139617, + [SMALL_STATE(3344)] = 139640, + [SMALL_STATE(3345)] = 139663, + [SMALL_STATE(3346)] = 139686, + [SMALL_STATE(3347)] = 139709, + [SMALL_STATE(3348)] = 139730, + [SMALL_STATE(3349)] = 139753, + [SMALL_STATE(3350)] = 139776, + [SMALL_STATE(3351)] = 139795, + [SMALL_STATE(3352)] = 139818, + [SMALL_STATE(3353)] = 139837, + [SMALL_STATE(3354)] = 139856, + [SMALL_STATE(3355)] = 139879, + [SMALL_STATE(3356)] = 139902, + [SMALL_STATE(3357)] = 139921, + [SMALL_STATE(3358)] = 139944, + [SMALL_STATE(3359)] = 139967, + [SMALL_STATE(3360)] = 139990, + [SMALL_STATE(3361)] = 140013, + [SMALL_STATE(3362)] = 140032, + [SMALL_STATE(3363)] = 140051, + [SMALL_STATE(3364)] = 140074, + [SMALL_STATE(3365)] = 140097, + [SMALL_STATE(3366)] = 140116, + [SMALL_STATE(3367)] = 140139, + [SMALL_STATE(3368)] = 140158, + [SMALL_STATE(3369)] = 140181, + [SMALL_STATE(3370)] = 140200, + [SMALL_STATE(3371)] = 140223, + [SMALL_STATE(3372)] = 140242, + [SMALL_STATE(3373)] = 140263, + [SMALL_STATE(3374)] = 140286, + [SMALL_STATE(3375)] = 140309, + [SMALL_STATE(3376)] = 140330, + [SMALL_STATE(3377)] = 140353, + [SMALL_STATE(3378)] = 140376, + [SMALL_STATE(3379)] = 140399, + [SMALL_STATE(3380)] = 140422, + [SMALL_STATE(3381)] = 140445, + [SMALL_STATE(3382)] = 140468, + [SMALL_STATE(3383)] = 140491, + [SMALL_STATE(3384)] = 140514, + [SMALL_STATE(3385)] = 140537, + [SMALL_STATE(3386)] = 140556, + [SMALL_STATE(3387)] = 140579, + [SMALL_STATE(3388)] = 140602, + [SMALL_STATE(3389)] = 140625, + [SMALL_STATE(3390)] = 140648, + [SMALL_STATE(3391)] = 140671, + [SMALL_STATE(3392)] = 140690, + [SMALL_STATE(3393)] = 140709, + [SMALL_STATE(3394)] = 140728, + [SMALL_STATE(3395)] = 140751, + [SMALL_STATE(3396)] = 140774, + [SMALL_STATE(3397)] = 140793, + [SMALL_STATE(3398)] = 140816, + [SMALL_STATE(3399)] = 140839, + [SMALL_STATE(3400)] = 140858, + [SMALL_STATE(3401)] = 140877, + [SMALL_STATE(3402)] = 140900, + [SMALL_STATE(3403)] = 140919, + [SMALL_STATE(3404)] = 140938, + [SMALL_STATE(3405)] = 140959, + [SMALL_STATE(3406)] = 140982, + [SMALL_STATE(3407)] = 141005, + [SMALL_STATE(3408)] = 141024, + [SMALL_STATE(3409)] = 141047, + [SMALL_STATE(3410)] = 141066, + [SMALL_STATE(3411)] = 141085, + [SMALL_STATE(3412)] = 141104, + [SMALL_STATE(3413)] = 141127, + [SMALL_STATE(3414)] = 141146, + [SMALL_STATE(3415)] = 141165, + [SMALL_STATE(3416)] = 141188, + [SMALL_STATE(3417)] = 141211, + [SMALL_STATE(3418)] = 141230, + [SMALL_STATE(3419)] = 141253, + [SMALL_STATE(3420)] = 141276, + [SMALL_STATE(3421)] = 141299, + [SMALL_STATE(3422)] = 141322, + [SMALL_STATE(3423)] = 141345, + [SMALL_STATE(3424)] = 141364, + [SMALL_STATE(3425)] = 141387, + [SMALL_STATE(3426)] = 141406, + [SMALL_STATE(3427)] = 141429, + [SMALL_STATE(3428)] = 141452, + [SMALL_STATE(3429)] = 141471, + [SMALL_STATE(3430)] = 141494, + [SMALL_STATE(3431)] = 141513, + [SMALL_STATE(3432)] = 141536, + [SMALL_STATE(3433)] = 141559, + [SMALL_STATE(3434)] = 141578, + [SMALL_STATE(3435)] = 141597, + [SMALL_STATE(3436)] = 141620, + [SMALL_STATE(3437)] = 141643, + [SMALL_STATE(3438)] = 141662, + [SMALL_STATE(3439)] = 141685, + [SMALL_STATE(3440)] = 141708, + [SMALL_STATE(3441)] = 141731, + [SMALL_STATE(3442)] = 141754, + [SMALL_STATE(3443)] = 141777, + [SMALL_STATE(3444)] = 141800, + [SMALL_STATE(3445)] = 141819, + [SMALL_STATE(3446)] = 141842, + [SMALL_STATE(3447)] = 141865, + [SMALL_STATE(3448)] = 141888, + [SMALL_STATE(3449)] = 141909, + [SMALL_STATE(3450)] = 141928, + [SMALL_STATE(3451)] = 141951, + [SMALL_STATE(3452)] = 141974, + [SMALL_STATE(3453)] = 141997, + [SMALL_STATE(3454)] = 142020, + [SMALL_STATE(3455)] = 142043, + [SMALL_STATE(3456)] = 142062, + [SMALL_STATE(3457)] = 142085, + [SMALL_STATE(3458)] = 142108, + [SMALL_STATE(3459)] = 142131, + [SMALL_STATE(3460)] = 142154, + [SMALL_STATE(3461)] = 142175, + [SMALL_STATE(3462)] = 142198, + [SMALL_STATE(3463)] = 142217, + [SMALL_STATE(3464)] = 142236, + [SMALL_STATE(3465)] = 142259, + [SMALL_STATE(3466)] = 142278, + [SMALL_STATE(3467)] = 142301, + [SMALL_STATE(3468)] = 142324, + [SMALL_STATE(3469)] = 142347, + [SMALL_STATE(3470)] = 142366, + [SMALL_STATE(3471)] = 142385, + [SMALL_STATE(3472)] = 142408, + [SMALL_STATE(3473)] = 142431, + [SMALL_STATE(3474)] = 142454, + [SMALL_STATE(3475)] = 142477, + [SMALL_STATE(3476)] = 142496, + [SMALL_STATE(3477)] = 142519, + [SMALL_STATE(3478)] = 142538, + [SMALL_STATE(3479)] = 142561, + [SMALL_STATE(3480)] = 142580, + [SMALL_STATE(3481)] = 142599, + [SMALL_STATE(3482)] = 142622, + [SMALL_STATE(3483)] = 142645, + [SMALL_STATE(3484)] = 142668, + [SMALL_STATE(3485)] = 142691, + [SMALL_STATE(3486)] = 142714, + [SMALL_STATE(3487)] = 142733, + [SMALL_STATE(3488)] = 142754, + [SMALL_STATE(3489)] = 142777, + [SMALL_STATE(3490)] = 142800, + [SMALL_STATE(3491)] = 142823, + [SMALL_STATE(3492)] = 142842, + [SMALL_STATE(3493)] = 142861, + [SMALL_STATE(3494)] = 142884, + [SMALL_STATE(3495)] = 142907, + [SMALL_STATE(3496)] = 142926, + [SMALL_STATE(3497)] = 142946, + [SMALL_STATE(3498)] = 142966, + [SMALL_STATE(3499)] = 142986, + [SMALL_STATE(3500)] = 143006, + [SMALL_STATE(3501)] = 143026, + [SMALL_STATE(3502)] = 143046, + [SMALL_STATE(3503)] = 143066, + [SMALL_STATE(3504)] = 143086, + [SMALL_STATE(3505)] = 143106, + [SMALL_STATE(3506)] = 143126, + [SMALL_STATE(3507)] = 143146, + [SMALL_STATE(3508)] = 143166, + [SMALL_STATE(3509)] = 143186, + [SMALL_STATE(3510)] = 143206, + [SMALL_STATE(3511)] = 143226, + [SMALL_STATE(3512)] = 143246, + [SMALL_STATE(3513)] = 143266, + [SMALL_STATE(3514)] = 143286, + [SMALL_STATE(3515)] = 143304, + [SMALL_STATE(3516)] = 143324, + [SMALL_STATE(3517)] = 143344, + [SMALL_STATE(3518)] = 143364, + [SMALL_STATE(3519)] = 143384, + [SMALL_STATE(3520)] = 143404, + [SMALL_STATE(3521)] = 143424, + [SMALL_STATE(3522)] = 143444, + [SMALL_STATE(3523)] = 143462, + [SMALL_STATE(3524)] = 143482, + [SMALL_STATE(3525)] = 143502, + [SMALL_STATE(3526)] = 143522, + [SMALL_STATE(3527)] = 143542, + [SMALL_STATE(3528)] = 143562, + [SMALL_STATE(3529)] = 143582, + [SMALL_STATE(3530)] = 143602, + [SMALL_STATE(3531)] = 143622, + [SMALL_STATE(3532)] = 143642, + [SMALL_STATE(3533)] = 143662, + [SMALL_STATE(3534)] = 143682, + [SMALL_STATE(3535)] = 143702, + [SMALL_STATE(3536)] = 143722, + [SMALL_STATE(3537)] = 143742, + [SMALL_STATE(3538)] = 143762, + [SMALL_STATE(3539)] = 143782, + [SMALL_STATE(3540)] = 143802, + [SMALL_STATE(3541)] = 143822, + [SMALL_STATE(3542)] = 143842, + [SMALL_STATE(3543)] = 143862, + [SMALL_STATE(3544)] = 143882, + [SMALL_STATE(3545)] = 143902, + [SMALL_STATE(3546)] = 143922, + [SMALL_STATE(3547)] = 143942, + [SMALL_STATE(3548)] = 143962, + [SMALL_STATE(3549)] = 143982, + [SMALL_STATE(3550)] = 144002, + [SMALL_STATE(3551)] = 144022, + [SMALL_STATE(3552)] = 144042, + [SMALL_STATE(3553)] = 144060, + [SMALL_STATE(3554)] = 144080, + [SMALL_STATE(3555)] = 144100, + [SMALL_STATE(3556)] = 144118, + [SMALL_STATE(3557)] = 144138, + [SMALL_STATE(3558)] = 144158, + [SMALL_STATE(3559)] = 144178, + [SMALL_STATE(3560)] = 144198, + [SMALL_STATE(3561)] = 144218, + [SMALL_STATE(3562)] = 144238, + [SMALL_STATE(3563)] = 144258, + [SMALL_STATE(3564)] = 144278, + [SMALL_STATE(3565)] = 144298, + [SMALL_STATE(3566)] = 144318, + [SMALL_STATE(3567)] = 144338, + [SMALL_STATE(3568)] = 144358, + [SMALL_STATE(3569)] = 144378, + [SMALL_STATE(3570)] = 144398, + [SMALL_STATE(3571)] = 144418, + [SMALL_STATE(3572)] = 144438, + [SMALL_STATE(3573)] = 144458, + [SMALL_STATE(3574)] = 144478, + [SMALL_STATE(3575)] = 144498, + [SMALL_STATE(3576)] = 144518, + [SMALL_STATE(3577)] = 144538, + [SMALL_STATE(3578)] = 144558, + [SMALL_STATE(3579)] = 144578, + [SMALL_STATE(3580)] = 144598, + [SMALL_STATE(3581)] = 144616, + [SMALL_STATE(3582)] = 144636, + [SMALL_STATE(3583)] = 144656, + [SMALL_STATE(3584)] = 144676, + [SMALL_STATE(3585)] = 144696, + [SMALL_STATE(3586)] = 144716, + [SMALL_STATE(3587)] = 144734, + [SMALL_STATE(3588)] = 144754, + [SMALL_STATE(3589)] = 144774, + [SMALL_STATE(3590)] = 144794, + [SMALL_STATE(3591)] = 144814, + [SMALL_STATE(3592)] = 144832, + [SMALL_STATE(3593)] = 144852, + [SMALL_STATE(3594)] = 144870, + [SMALL_STATE(3595)] = 144888, + [SMALL_STATE(3596)] = 144908, + [SMALL_STATE(3597)] = 144928, + [SMALL_STATE(3598)] = 144948, + [SMALL_STATE(3599)] = 144968, + [SMALL_STATE(3600)] = 144988, + [SMALL_STATE(3601)] = 145008, + [SMALL_STATE(3602)] = 145028, + [SMALL_STATE(3603)] = 145048, + [SMALL_STATE(3604)] = 145068, + [SMALL_STATE(3605)] = 145088, + [SMALL_STATE(3606)] = 145108, + [SMALL_STATE(3607)] = 145128, + [SMALL_STATE(3608)] = 145148, + [SMALL_STATE(3609)] = 145168, + [SMALL_STATE(3610)] = 145188, + [SMALL_STATE(3611)] = 145208, + [SMALL_STATE(3612)] = 145228, + [SMALL_STATE(3613)] = 145248, + [SMALL_STATE(3614)] = 145268, + [SMALL_STATE(3615)] = 145286, + [SMALL_STATE(3616)] = 145306, + [SMALL_STATE(3617)] = 145326, + [SMALL_STATE(3618)] = 145346, + [SMALL_STATE(3619)] = 145366, + [SMALL_STATE(3620)] = 145384, + [SMALL_STATE(3621)] = 145402, + [SMALL_STATE(3622)] = 145422, + [SMALL_STATE(3623)] = 145442, + [SMALL_STATE(3624)] = 145462, + [SMALL_STATE(3625)] = 145482, + [SMALL_STATE(3626)] = 145502, + [SMALL_STATE(3627)] = 145522, + [SMALL_STATE(3628)] = 145542, + [SMALL_STATE(3629)] = 145562, + [SMALL_STATE(3630)] = 145582, + [SMALL_STATE(3631)] = 145602, + [SMALL_STATE(3632)] = 145620, + [SMALL_STATE(3633)] = 145640, + [SMALL_STATE(3634)] = 145658, + [SMALL_STATE(3635)] = 145678, + [SMALL_STATE(3636)] = 145698, + [SMALL_STATE(3637)] = 145718, + [SMALL_STATE(3638)] = 145738, + [SMALL_STATE(3639)] = 145756, + [SMALL_STATE(3640)] = 145776, + [SMALL_STATE(3641)] = 145796, + [SMALL_STATE(3642)] = 145816, + [SMALL_STATE(3643)] = 145836, + [SMALL_STATE(3644)] = 145856, + [SMALL_STATE(3645)] = 145876, + [SMALL_STATE(3646)] = 145896, + [SMALL_STATE(3647)] = 145916, + [SMALL_STATE(3648)] = 145936, + [SMALL_STATE(3649)] = 145956, + [SMALL_STATE(3650)] = 145976, + [SMALL_STATE(3651)] = 145996, + [SMALL_STATE(3652)] = 146016, + [SMALL_STATE(3653)] = 146036, + [SMALL_STATE(3654)] = 146054, + [SMALL_STATE(3655)] = 146072, + [SMALL_STATE(3656)] = 146092, + [SMALL_STATE(3657)] = 146112, + [SMALL_STATE(3658)] = 146132, + [SMALL_STATE(3659)] = 146152, + [SMALL_STATE(3660)] = 146172, + [SMALL_STATE(3661)] = 146190, + [SMALL_STATE(3662)] = 146210, + [SMALL_STATE(3663)] = 146230, + [SMALL_STATE(3664)] = 146250, + [SMALL_STATE(3665)] = 146270, + [SMALL_STATE(3666)] = 146290, + [SMALL_STATE(3667)] = 146308, + [SMALL_STATE(3668)] = 146328, + [SMALL_STATE(3669)] = 146348, + [SMALL_STATE(3670)] = 146368, + [SMALL_STATE(3671)] = 146388, + [SMALL_STATE(3672)] = 146408, + [SMALL_STATE(3673)] = 146426, + [SMALL_STATE(3674)] = 146446, + [SMALL_STATE(3675)] = 146466, + [SMALL_STATE(3676)] = 146486, + [SMALL_STATE(3677)] = 146506, + [SMALL_STATE(3678)] = 146526, + [SMALL_STATE(3679)] = 146546, + [SMALL_STATE(3680)] = 146566, + [SMALL_STATE(3681)] = 146586, + [SMALL_STATE(3682)] = 146606, + [SMALL_STATE(3683)] = 146626, + [SMALL_STATE(3684)] = 146644, + [SMALL_STATE(3685)] = 146664, + [SMALL_STATE(3686)] = 146684, + [SMALL_STATE(3687)] = 146704, + [SMALL_STATE(3688)] = 146724, + [SMALL_STATE(3689)] = 146744, + [SMALL_STATE(3690)] = 146764, + [SMALL_STATE(3691)] = 146784, + [SMALL_STATE(3692)] = 146802, + [SMALL_STATE(3693)] = 146822, + [SMALL_STATE(3694)] = 146842, + [SMALL_STATE(3695)] = 146862, + [SMALL_STATE(3696)] = 146882, + [SMALL_STATE(3697)] = 146902, + [SMALL_STATE(3698)] = 146922, + [SMALL_STATE(3699)] = 146942, + [SMALL_STATE(3700)] = 146962, + [SMALL_STATE(3701)] = 146982, + [SMALL_STATE(3702)] = 147002, + [SMALL_STATE(3703)] = 147022, + [SMALL_STATE(3704)] = 147042, + [SMALL_STATE(3705)] = 147062, + [SMALL_STATE(3706)] = 147080, + [SMALL_STATE(3707)] = 147100, + [SMALL_STATE(3708)] = 147120, + [SMALL_STATE(3709)] = 147138, + [SMALL_STATE(3710)] = 147158, + [SMALL_STATE(3711)] = 147178, + [SMALL_STATE(3712)] = 147198, + [SMALL_STATE(3713)] = 147218, + [SMALL_STATE(3714)] = 147238, + [SMALL_STATE(3715)] = 147256, + [SMALL_STATE(3716)] = 147276, + [SMALL_STATE(3717)] = 147296, + [SMALL_STATE(3718)] = 147316, + [SMALL_STATE(3719)] = 147336, + [SMALL_STATE(3720)] = 147356, + [SMALL_STATE(3721)] = 147376, + [SMALL_STATE(3722)] = 147396, + [SMALL_STATE(3723)] = 147416, + [SMALL_STATE(3724)] = 147436, + [SMALL_STATE(3725)] = 147456, + [SMALL_STATE(3726)] = 147476, + [SMALL_STATE(3727)] = 147496, + [SMALL_STATE(3728)] = 147516, + [SMALL_STATE(3729)] = 147536, + [SMALL_STATE(3730)] = 147556, + [SMALL_STATE(3731)] = 147574, + [SMALL_STATE(3732)] = 147594, + [SMALL_STATE(3733)] = 147614, + [SMALL_STATE(3734)] = 147634, + [SMALL_STATE(3735)] = 147654, + [SMALL_STATE(3736)] = 147674, + [SMALL_STATE(3737)] = 147694, + [SMALL_STATE(3738)] = 147714, + [SMALL_STATE(3739)] = 147734, + [SMALL_STATE(3740)] = 147752, + [SMALL_STATE(3741)] = 147772, + [SMALL_STATE(3742)] = 147792, + [SMALL_STATE(3743)] = 147812, + [SMALL_STATE(3744)] = 147832, + [SMALL_STATE(3745)] = 147850, + [SMALL_STATE(3746)] = 147870, + [SMALL_STATE(3747)] = 147890, + [SMALL_STATE(3748)] = 147910, + [SMALL_STATE(3749)] = 147930, + [SMALL_STATE(3750)] = 147950, + [SMALL_STATE(3751)] = 147970, + [SMALL_STATE(3752)] = 147990, + [SMALL_STATE(3753)] = 148010, + [SMALL_STATE(3754)] = 148030, + [SMALL_STATE(3755)] = 148050, + [SMALL_STATE(3756)] = 148070, + [SMALL_STATE(3757)] = 148090, + [SMALL_STATE(3758)] = 148110, + [SMALL_STATE(3759)] = 148130, + [SMALL_STATE(3760)] = 148150, + [SMALL_STATE(3761)] = 148170, + [SMALL_STATE(3762)] = 148188, + [SMALL_STATE(3763)] = 148208, + [SMALL_STATE(3764)] = 148228, + [SMALL_STATE(3765)] = 148248, + [SMALL_STATE(3766)] = 148268, + [SMALL_STATE(3767)] = 148288, + [SMALL_STATE(3768)] = 148308, + [SMALL_STATE(3769)] = 148328, + [SMALL_STATE(3770)] = 148348, + [SMALL_STATE(3771)] = 148368, + [SMALL_STATE(3772)] = 148388, + [SMALL_STATE(3773)] = 148408, + [SMALL_STATE(3774)] = 148426, + [SMALL_STATE(3775)] = 148446, + [SMALL_STATE(3776)] = 148466, + [SMALL_STATE(3777)] = 148486, + [SMALL_STATE(3778)] = 148506, + [SMALL_STATE(3779)] = 148526, + [SMALL_STATE(3780)] = 148546, + [SMALL_STATE(3781)] = 148566, + [SMALL_STATE(3782)] = 148586, + [SMALL_STATE(3783)] = 148606, + [SMALL_STATE(3784)] = 148626, + [SMALL_STATE(3785)] = 148644, + [SMALL_STATE(3786)] = 148664, + [SMALL_STATE(3787)] = 148684, + [SMALL_STATE(3788)] = 148704, + [SMALL_STATE(3789)] = 148724, + [SMALL_STATE(3790)] = 148744, + [SMALL_STATE(3791)] = 148764, + [SMALL_STATE(3792)] = 148784, + [SMALL_STATE(3793)] = 148804, + [SMALL_STATE(3794)] = 148822, + [SMALL_STATE(3795)] = 148842, + [SMALL_STATE(3796)] = 148862, + [SMALL_STATE(3797)] = 148882, + [SMALL_STATE(3798)] = 148902, + [SMALL_STATE(3799)] = 148922, + [SMALL_STATE(3800)] = 148942, + [SMALL_STATE(3801)] = 148962, + [SMALL_STATE(3802)] = 148982, + [SMALL_STATE(3803)] = 149002, + [SMALL_STATE(3804)] = 149022, + [SMALL_STATE(3805)] = 149042, + [SMALL_STATE(3806)] = 149062, + [SMALL_STATE(3807)] = 149082, + [SMALL_STATE(3808)] = 149102, + [SMALL_STATE(3809)] = 149122, + [SMALL_STATE(3810)] = 149142, + [SMALL_STATE(3811)] = 149162, + [SMALL_STATE(3812)] = 149182, + [SMALL_STATE(3813)] = 149200, + [SMALL_STATE(3814)] = 149220, + [SMALL_STATE(3815)] = 149240, + [SMALL_STATE(3816)] = 149260, + [SMALL_STATE(3817)] = 149278, + [SMALL_STATE(3818)] = 149298, + [SMALL_STATE(3819)] = 149318, + [SMALL_STATE(3820)] = 149338, + [SMALL_STATE(3821)] = 149358, + [SMALL_STATE(3822)] = 149378, + [SMALL_STATE(3823)] = 149398, + [SMALL_STATE(3824)] = 149418, + [SMALL_STATE(3825)] = 149438, + [SMALL_STATE(3826)] = 149456, + [SMALL_STATE(3827)] = 149476, + [SMALL_STATE(3828)] = 149496, + [SMALL_STATE(3829)] = 149516, + [SMALL_STATE(3830)] = 149536, + [SMALL_STATE(3831)] = 149556, + [SMALL_STATE(3832)] = 149576, + [SMALL_STATE(3833)] = 149596, + [SMALL_STATE(3834)] = 149616, + [SMALL_STATE(3835)] = 149636, + [SMALL_STATE(3836)] = 149656, + [SMALL_STATE(3837)] = 149676, + [SMALL_STATE(3838)] = 149696, + [SMALL_STATE(3839)] = 149714, + [SMALL_STATE(3840)] = 149734, + [SMALL_STATE(3841)] = 149754, + [SMALL_STATE(3842)] = 149772, + [SMALL_STATE(3843)] = 149792, + [SMALL_STATE(3844)] = 149812, + [SMALL_STATE(3845)] = 149832, + [SMALL_STATE(3846)] = 149852, + [SMALL_STATE(3847)] = 149870, + [SMALL_STATE(3848)] = 149890, + [SMALL_STATE(3849)] = 149910, + [SMALL_STATE(3850)] = 149930, + [SMALL_STATE(3851)] = 149950, + [SMALL_STATE(3852)] = 149968, + [SMALL_STATE(3853)] = 149986, + [SMALL_STATE(3854)] = 150006, + [SMALL_STATE(3855)] = 150026, + [SMALL_STATE(3856)] = 150046, + [SMALL_STATE(3857)] = 150066, + [SMALL_STATE(3858)] = 150086, + [SMALL_STATE(3859)] = 150106, + [SMALL_STATE(3860)] = 150126, + [SMALL_STATE(3861)] = 150146, + [SMALL_STATE(3862)] = 150166, + [SMALL_STATE(3863)] = 150186, + [SMALL_STATE(3864)] = 150206, + [SMALL_STATE(3865)] = 150226, + [SMALL_STATE(3866)] = 150246, + [SMALL_STATE(3867)] = 150266, + [SMALL_STATE(3868)] = 150286, + [SMALL_STATE(3869)] = 150306, + [SMALL_STATE(3870)] = 150326, + [SMALL_STATE(3871)] = 150346, + [SMALL_STATE(3872)] = 150366, + [SMALL_STATE(3873)] = 150386, + [SMALL_STATE(3874)] = 150404, + [SMALL_STATE(3875)] = 150422, + [SMALL_STATE(3876)] = 150442, + [SMALL_STATE(3877)] = 150462, + [SMALL_STATE(3878)] = 150482, + [SMALL_STATE(3879)] = 150502, + [SMALL_STATE(3880)] = 150522, + [SMALL_STATE(3881)] = 150542, + [SMALL_STATE(3882)] = 150562, + [SMALL_STATE(3883)] = 150582, + [SMALL_STATE(3884)] = 150602, + [SMALL_STATE(3885)] = 150622, + [SMALL_STATE(3886)] = 150642, + [SMALL_STATE(3887)] = 150662, + [SMALL_STATE(3888)] = 150682, + [SMALL_STATE(3889)] = 150702, + [SMALL_STATE(3890)] = 150722, + [SMALL_STATE(3891)] = 150742, + [SMALL_STATE(3892)] = 150762, + [SMALL_STATE(3893)] = 150782, + [SMALL_STATE(3894)] = 150802, + [SMALL_STATE(3895)] = 150822, + [SMALL_STATE(3896)] = 150842, + [SMALL_STATE(3897)] = 150862, + [SMALL_STATE(3898)] = 150882, + [SMALL_STATE(3899)] = 150902, + [SMALL_STATE(3900)] = 150922, + [SMALL_STATE(3901)] = 150940, + [SMALL_STATE(3902)] = 150960, + [SMALL_STATE(3903)] = 150980, + [SMALL_STATE(3904)] = 151000, + [SMALL_STATE(3905)] = 151020, + [SMALL_STATE(3906)] = 151040, + [SMALL_STATE(3907)] = 151060, + [SMALL_STATE(3908)] = 151080, + [SMALL_STATE(3909)] = 151100, + [SMALL_STATE(3910)] = 151120, + [SMALL_STATE(3911)] = 151140, + [SMALL_STATE(3912)] = 151160, + [SMALL_STATE(3913)] = 151180, + [SMALL_STATE(3914)] = 151200, + [SMALL_STATE(3915)] = 151220, + [SMALL_STATE(3916)] = 151240, + [SMALL_STATE(3917)] = 151260, + [SMALL_STATE(3918)] = 151280, + [SMALL_STATE(3919)] = 151300, + [SMALL_STATE(3920)] = 151320, + [SMALL_STATE(3921)] = 151340, + [SMALL_STATE(3922)] = 151360, + [SMALL_STATE(3923)] = 151380, + [SMALL_STATE(3924)] = 151400, + [SMALL_STATE(3925)] = 151420, + [SMALL_STATE(3926)] = 151440, + [SMALL_STATE(3927)] = 151460, + [SMALL_STATE(3928)] = 151480, + [SMALL_STATE(3929)] = 151500, + [SMALL_STATE(3930)] = 151520, + [SMALL_STATE(3931)] = 151540, + [SMALL_STATE(3932)] = 151560, + [SMALL_STATE(3933)] = 151580, + [SMALL_STATE(3934)] = 151600, + [SMALL_STATE(3935)] = 151620, + [SMALL_STATE(3936)] = 151640, + [SMALL_STATE(3937)] = 151660, + [SMALL_STATE(3938)] = 151680, + [SMALL_STATE(3939)] = 151700, + [SMALL_STATE(3940)] = 151720, + [SMALL_STATE(3941)] = 151740, + [SMALL_STATE(3942)] = 151760, + [SMALL_STATE(3943)] = 151780, + [SMALL_STATE(3944)] = 151800, + [SMALL_STATE(3945)] = 151820, + [SMALL_STATE(3946)] = 151840, + [SMALL_STATE(3947)] = 151860, + [SMALL_STATE(3948)] = 151878, + [SMALL_STATE(3949)] = 151898, + [SMALL_STATE(3950)] = 151918, + [SMALL_STATE(3951)] = 151938, + [SMALL_STATE(3952)] = 151958, + [SMALL_STATE(3953)] = 151978, + [SMALL_STATE(3954)] = 151998, + [SMALL_STATE(3955)] = 152018, + [SMALL_STATE(3956)] = 152038, + [SMALL_STATE(3957)] = 152058, + [SMALL_STATE(3958)] = 152078, + [SMALL_STATE(3959)] = 152098, + [SMALL_STATE(3960)] = 152118, + [SMALL_STATE(3961)] = 152138, + [SMALL_STATE(3962)] = 152158, + [SMALL_STATE(3963)] = 152178, + [SMALL_STATE(3964)] = 152198, + [SMALL_STATE(3965)] = 152218, + [SMALL_STATE(3966)] = 152238, + [SMALL_STATE(3967)] = 152258, + [SMALL_STATE(3968)] = 152278, + [SMALL_STATE(3969)] = 152298, + [SMALL_STATE(3970)] = 152318, + [SMALL_STATE(3971)] = 152338, + [SMALL_STATE(3972)] = 152358, + [SMALL_STATE(3973)] = 152378, + [SMALL_STATE(3974)] = 152398, + [SMALL_STATE(3975)] = 152418, + [SMALL_STATE(3976)] = 152438, + [SMALL_STATE(3977)] = 152458, + [SMALL_STATE(3978)] = 152478, + [SMALL_STATE(3979)] = 152498, + [SMALL_STATE(3980)] = 152518, + [SMALL_STATE(3981)] = 152538, + [SMALL_STATE(3982)] = 152558, + [SMALL_STATE(3983)] = 152578, + [SMALL_STATE(3984)] = 152598, + [SMALL_STATE(3985)] = 152618, + [SMALL_STATE(3986)] = 152638, + [SMALL_STATE(3987)] = 152658, + [SMALL_STATE(3988)] = 152676, + [SMALL_STATE(3989)] = 152696, + [SMALL_STATE(3990)] = 152714, + [SMALL_STATE(3991)] = 152734, + [SMALL_STATE(3992)] = 152754, + [SMALL_STATE(3993)] = 152774, + [SMALL_STATE(3994)] = 152794, + [SMALL_STATE(3995)] = 152814, + [SMALL_STATE(3996)] = 152834, + [SMALL_STATE(3997)] = 152854, + [SMALL_STATE(3998)] = 152874, + [SMALL_STATE(3999)] = 152894, + [SMALL_STATE(4000)] = 152914, + [SMALL_STATE(4001)] = 152934, + [SMALL_STATE(4002)] = 152954, + [SMALL_STATE(4003)] = 152974, + [SMALL_STATE(4004)] = 152994, + [SMALL_STATE(4005)] = 153014, + [SMALL_STATE(4006)] = 153034, + [SMALL_STATE(4007)] = 153054, + [SMALL_STATE(4008)] = 153074, + [SMALL_STATE(4009)] = 153094, + [SMALL_STATE(4010)] = 153114, + [SMALL_STATE(4011)] = 153134, + [SMALL_STATE(4012)] = 153154, + [SMALL_STATE(4013)] = 153172, + [SMALL_STATE(4014)] = 153192, + [SMALL_STATE(4015)] = 153209, + [SMALL_STATE(4016)] = 153226, + [SMALL_STATE(4017)] = 153243, + [SMALL_STATE(4018)] = 153260, + [SMALL_STATE(4019)] = 153277, + [SMALL_STATE(4020)] = 153294, + [SMALL_STATE(4021)] = 153311, + [SMALL_STATE(4022)] = 153328, + [SMALL_STATE(4023)] = 153345, + [SMALL_STATE(4024)] = 153362, + [SMALL_STATE(4025)] = 153379, + [SMALL_STATE(4026)] = 153396, + [SMALL_STATE(4027)] = 153413, + [SMALL_STATE(4028)] = 153430, + [SMALL_STATE(4029)] = 153447, + [SMALL_STATE(4030)] = 153464, + [SMALL_STATE(4031)] = 153481, + [SMALL_STATE(4032)] = 153498, + [SMALL_STATE(4033)] = 153515, + [SMALL_STATE(4034)] = 153532, + [SMALL_STATE(4035)] = 153549, + [SMALL_STATE(4036)] = 153566, + [SMALL_STATE(4037)] = 153583, + [SMALL_STATE(4038)] = 153600, + [SMALL_STATE(4039)] = 153617, + [SMALL_STATE(4040)] = 153634, + [SMALL_STATE(4041)] = 153651, + [SMALL_STATE(4042)] = 153668, + [SMALL_STATE(4043)] = 153685, + [SMALL_STATE(4044)] = 153702, + [SMALL_STATE(4045)] = 153719, + [SMALL_STATE(4046)] = 153736, + [SMALL_STATE(4047)] = 153753, + [SMALL_STATE(4048)] = 153770, + [SMALL_STATE(4049)] = 153787, + [SMALL_STATE(4050)] = 153804, + [SMALL_STATE(4051)] = 153821, + [SMALL_STATE(4052)] = 153838, + [SMALL_STATE(4053)] = 153855, + [SMALL_STATE(4054)] = 153872, + [SMALL_STATE(4055)] = 153889, + [SMALL_STATE(4056)] = 153906, + [SMALL_STATE(4057)] = 153923, + [SMALL_STATE(4058)] = 153940, + [SMALL_STATE(4059)] = 153957, + [SMALL_STATE(4060)] = 153974, + [SMALL_STATE(4061)] = 153991, + [SMALL_STATE(4062)] = 154008, + [SMALL_STATE(4063)] = 154025, + [SMALL_STATE(4064)] = 154042, + [SMALL_STATE(4065)] = 154059, + [SMALL_STATE(4066)] = 154076, + [SMALL_STATE(4067)] = 154093, + [SMALL_STATE(4068)] = 154110, + [SMALL_STATE(4069)] = 154127, + [SMALL_STATE(4070)] = 154144, + [SMALL_STATE(4071)] = 154161, + [SMALL_STATE(4072)] = 154178, + [SMALL_STATE(4073)] = 154195, + [SMALL_STATE(4074)] = 154212, + [SMALL_STATE(4075)] = 154229, + [SMALL_STATE(4076)] = 154246, + [SMALL_STATE(4077)] = 154263, + [SMALL_STATE(4078)] = 154280, + [SMALL_STATE(4079)] = 154297, + [SMALL_STATE(4080)] = 154314, + [SMALL_STATE(4081)] = 154331, + [SMALL_STATE(4082)] = 154348, + [SMALL_STATE(4083)] = 154365, + [SMALL_STATE(4084)] = 154382, + [SMALL_STATE(4085)] = 154399, + [SMALL_STATE(4086)] = 154416, + [SMALL_STATE(4087)] = 154433, + [SMALL_STATE(4088)] = 154450, + [SMALL_STATE(4089)] = 154467, + [SMALL_STATE(4090)] = 154484, + [SMALL_STATE(4091)] = 154501, + [SMALL_STATE(4092)] = 154518, + [SMALL_STATE(4093)] = 154535, + [SMALL_STATE(4094)] = 154552, + [SMALL_STATE(4095)] = 154569, + [SMALL_STATE(4096)] = 154586, + [SMALL_STATE(4097)] = 154603, + [SMALL_STATE(4098)] = 154620, + [SMALL_STATE(4099)] = 154637, + [SMALL_STATE(4100)] = 154654, + [SMALL_STATE(4101)] = 154671, + [SMALL_STATE(4102)] = 154688, + [SMALL_STATE(4103)] = 154705, + [SMALL_STATE(4104)] = 154722, + [SMALL_STATE(4105)] = 154739, + [SMALL_STATE(4106)] = 154756, + [SMALL_STATE(4107)] = 154773, + [SMALL_STATE(4108)] = 154790, + [SMALL_STATE(4109)] = 154807, + [SMALL_STATE(4110)] = 154824, + [SMALL_STATE(4111)] = 154841, + [SMALL_STATE(4112)] = 154858, + [SMALL_STATE(4113)] = 154875, + [SMALL_STATE(4114)] = 154892, + [SMALL_STATE(4115)] = 154909, + [SMALL_STATE(4116)] = 154926, + [SMALL_STATE(4117)] = 154943, + [SMALL_STATE(4118)] = 154960, + [SMALL_STATE(4119)] = 154977, + [SMALL_STATE(4120)] = 154994, + [SMALL_STATE(4121)] = 155011, + [SMALL_STATE(4122)] = 155028, + [SMALL_STATE(4123)] = 155045, + [SMALL_STATE(4124)] = 155062, + [SMALL_STATE(4125)] = 155079, + [SMALL_STATE(4126)] = 155096, + [SMALL_STATE(4127)] = 155113, + [SMALL_STATE(4128)] = 155130, + [SMALL_STATE(4129)] = 155147, + [SMALL_STATE(4130)] = 155164, + [SMALL_STATE(4131)] = 155181, + [SMALL_STATE(4132)] = 155198, + [SMALL_STATE(4133)] = 155215, + [SMALL_STATE(4134)] = 155232, + [SMALL_STATE(4135)] = 155249, + [SMALL_STATE(4136)] = 155266, + [SMALL_STATE(4137)] = 155283, + [SMALL_STATE(4138)] = 155300, + [SMALL_STATE(4139)] = 155317, + [SMALL_STATE(4140)] = 155334, + [SMALL_STATE(4141)] = 155351, + [SMALL_STATE(4142)] = 155368, + [SMALL_STATE(4143)] = 155385, + [SMALL_STATE(4144)] = 155402, + [SMALL_STATE(4145)] = 155419, + [SMALL_STATE(4146)] = 155436, + [SMALL_STATE(4147)] = 155453, + [SMALL_STATE(4148)] = 155470, + [SMALL_STATE(4149)] = 155487, + [SMALL_STATE(4150)] = 155504, + [SMALL_STATE(4151)] = 155521, + [SMALL_STATE(4152)] = 155538, + [SMALL_STATE(4153)] = 155555, + [SMALL_STATE(4154)] = 155572, + [SMALL_STATE(4155)] = 155589, + [SMALL_STATE(4156)] = 155606, + [SMALL_STATE(4157)] = 155623, + [SMALL_STATE(4158)] = 155640, + [SMALL_STATE(4159)] = 155657, + [SMALL_STATE(4160)] = 155674, + [SMALL_STATE(4161)] = 155691, + [SMALL_STATE(4162)] = 155708, + [SMALL_STATE(4163)] = 155725, + [SMALL_STATE(4164)] = 155742, + [SMALL_STATE(4165)] = 155759, + [SMALL_STATE(4166)] = 155776, + [SMALL_STATE(4167)] = 155793, + [SMALL_STATE(4168)] = 155810, + [SMALL_STATE(4169)] = 155827, + [SMALL_STATE(4170)] = 155844, + [SMALL_STATE(4171)] = 155861, + [SMALL_STATE(4172)] = 155878, + [SMALL_STATE(4173)] = 155895, + [SMALL_STATE(4174)] = 155912, + [SMALL_STATE(4175)] = 155929, + [SMALL_STATE(4176)] = 155946, + [SMALL_STATE(4177)] = 155963, + [SMALL_STATE(4178)] = 155980, + [SMALL_STATE(4179)] = 155997, + [SMALL_STATE(4180)] = 156014, + [SMALL_STATE(4181)] = 156031, + [SMALL_STATE(4182)] = 156048, + [SMALL_STATE(4183)] = 156065, + [SMALL_STATE(4184)] = 156082, + [SMALL_STATE(4185)] = 156099, + [SMALL_STATE(4186)] = 156116, + [SMALL_STATE(4187)] = 156133, + [SMALL_STATE(4188)] = 156150, + [SMALL_STATE(4189)] = 156167, + [SMALL_STATE(4190)] = 156184, + [SMALL_STATE(4191)] = 156201, + [SMALL_STATE(4192)] = 156218, + [SMALL_STATE(4193)] = 156235, + [SMALL_STATE(4194)] = 156252, + [SMALL_STATE(4195)] = 156269, + [SMALL_STATE(4196)] = 156286, + [SMALL_STATE(4197)] = 156303, + [SMALL_STATE(4198)] = 156320, + [SMALL_STATE(4199)] = 156337, + [SMALL_STATE(4200)] = 156354, + [SMALL_STATE(4201)] = 156371, + [SMALL_STATE(4202)] = 156388, + [SMALL_STATE(4203)] = 156405, + [SMALL_STATE(4204)] = 156422, + [SMALL_STATE(4205)] = 156439, + [SMALL_STATE(4206)] = 156456, + [SMALL_STATE(4207)] = 156473, + [SMALL_STATE(4208)] = 156490, + [SMALL_STATE(4209)] = 156507, + [SMALL_STATE(4210)] = 156524, + [SMALL_STATE(4211)] = 156541, + [SMALL_STATE(4212)] = 156558, + [SMALL_STATE(4213)] = 156575, + [SMALL_STATE(4214)] = 156592, + [SMALL_STATE(4215)] = 156609, + [SMALL_STATE(4216)] = 156626, + [SMALL_STATE(4217)] = 156643, + [SMALL_STATE(4218)] = 156660, + [SMALL_STATE(4219)] = 156677, + [SMALL_STATE(4220)] = 156694, + [SMALL_STATE(4221)] = 156711, + [SMALL_STATE(4222)] = 156728, + [SMALL_STATE(4223)] = 156745, + [SMALL_STATE(4224)] = 156762, + [SMALL_STATE(4225)] = 156779, + [SMALL_STATE(4226)] = 156796, + [SMALL_STATE(4227)] = 156813, + [SMALL_STATE(4228)] = 156830, + [SMALL_STATE(4229)] = 156847, + [SMALL_STATE(4230)] = 156864, + [SMALL_STATE(4231)] = 156881, + [SMALL_STATE(4232)] = 156898, + [SMALL_STATE(4233)] = 156915, + [SMALL_STATE(4234)] = 156932, + [SMALL_STATE(4235)] = 156949, + [SMALL_STATE(4236)] = 156966, + [SMALL_STATE(4237)] = 156983, + [SMALL_STATE(4238)] = 157000, + [SMALL_STATE(4239)] = 157017, + [SMALL_STATE(4240)] = 157034, + [SMALL_STATE(4241)] = 157051, + [SMALL_STATE(4242)] = 157068, + [SMALL_STATE(4243)] = 157085, + [SMALL_STATE(4244)] = 157102, + [SMALL_STATE(4245)] = 157119, + [SMALL_STATE(4246)] = 157136, + [SMALL_STATE(4247)] = 157153, + [SMALL_STATE(4248)] = 157170, + [SMALL_STATE(4249)] = 157187, + [SMALL_STATE(4250)] = 157204, + [SMALL_STATE(4251)] = 157221, + [SMALL_STATE(4252)] = 157238, + [SMALL_STATE(4253)] = 157255, + [SMALL_STATE(4254)] = 157272, + [SMALL_STATE(4255)] = 157289, + [SMALL_STATE(4256)] = 157306, + [SMALL_STATE(4257)] = 157323, + [SMALL_STATE(4258)] = 157340, + [SMALL_STATE(4259)] = 157357, + [SMALL_STATE(4260)] = 157374, + [SMALL_STATE(4261)] = 157391, + [SMALL_STATE(4262)] = 157408, + [SMALL_STATE(4263)] = 157425, + [SMALL_STATE(4264)] = 157442, + [SMALL_STATE(4265)] = 157459, + [SMALL_STATE(4266)] = 157476, + [SMALL_STATE(4267)] = 157493, + [SMALL_STATE(4268)] = 157510, + [SMALL_STATE(4269)] = 157527, + [SMALL_STATE(4270)] = 157544, + [SMALL_STATE(4271)] = 157561, + [SMALL_STATE(4272)] = 157578, + [SMALL_STATE(4273)] = 157595, + [SMALL_STATE(4274)] = 157612, + [SMALL_STATE(4275)] = 157629, + [SMALL_STATE(4276)] = 157646, + [SMALL_STATE(4277)] = 157663, + [SMALL_STATE(4278)] = 157680, + [SMALL_STATE(4279)] = 157697, + [SMALL_STATE(4280)] = 157714, + [SMALL_STATE(4281)] = 157731, + [SMALL_STATE(4282)] = 157748, + [SMALL_STATE(4283)] = 157765, + [SMALL_STATE(4284)] = 157782, + [SMALL_STATE(4285)] = 157799, + [SMALL_STATE(4286)] = 157816, + [SMALL_STATE(4287)] = 157833, + [SMALL_STATE(4288)] = 157850, + [SMALL_STATE(4289)] = 157867, + [SMALL_STATE(4290)] = 157884, + [SMALL_STATE(4291)] = 157901, + [SMALL_STATE(4292)] = 157918, + [SMALL_STATE(4293)] = 157935, + [SMALL_STATE(4294)] = 157952, + [SMALL_STATE(4295)] = 157969, + [SMALL_STATE(4296)] = 157986, + [SMALL_STATE(4297)] = 158003, + [SMALL_STATE(4298)] = 158020, + [SMALL_STATE(4299)] = 158037, + [SMALL_STATE(4300)] = 158054, + [SMALL_STATE(4301)] = 158071, + [SMALL_STATE(4302)] = 158088, + [SMALL_STATE(4303)] = 158105, + [SMALL_STATE(4304)] = 158122, + [SMALL_STATE(4305)] = 158139, + [SMALL_STATE(4306)] = 158156, + [SMALL_STATE(4307)] = 158173, + [SMALL_STATE(4308)] = 158190, + [SMALL_STATE(4309)] = 158207, + [SMALL_STATE(4310)] = 158224, + [SMALL_STATE(4311)] = 158241, + [SMALL_STATE(4312)] = 158258, + [SMALL_STATE(4313)] = 158275, + [SMALL_STATE(4314)] = 158292, + [SMALL_STATE(4315)] = 158309, + [SMALL_STATE(4316)] = 158326, + [SMALL_STATE(4317)] = 158343, + [SMALL_STATE(4318)] = 158360, + [SMALL_STATE(4319)] = 158377, + [SMALL_STATE(4320)] = 158394, + [SMALL_STATE(4321)] = 158411, + [SMALL_STATE(4322)] = 158428, + [SMALL_STATE(4323)] = 158445, + [SMALL_STATE(4324)] = 158462, + [SMALL_STATE(4325)] = 158479, + [SMALL_STATE(4326)] = 158496, + [SMALL_STATE(4327)] = 158513, + [SMALL_STATE(4328)] = 158530, + [SMALL_STATE(4329)] = 158547, + [SMALL_STATE(4330)] = 158564, + [SMALL_STATE(4331)] = 158581, + [SMALL_STATE(4332)] = 158598, + [SMALL_STATE(4333)] = 158615, + [SMALL_STATE(4334)] = 158632, + [SMALL_STATE(4335)] = 158649, + [SMALL_STATE(4336)] = 158666, + [SMALL_STATE(4337)] = 158683, + [SMALL_STATE(4338)] = 158700, + [SMALL_STATE(4339)] = 158717, + [SMALL_STATE(4340)] = 158734, + [SMALL_STATE(4341)] = 158751, + [SMALL_STATE(4342)] = 158768, + [SMALL_STATE(4343)] = 158785, + [SMALL_STATE(4344)] = 158802, + [SMALL_STATE(4345)] = 158819, + [SMALL_STATE(4346)] = 158836, + [SMALL_STATE(4347)] = 158853, + [SMALL_STATE(4348)] = 158870, + [SMALL_STATE(4349)] = 158887, + [SMALL_STATE(4350)] = 158904, + [SMALL_STATE(4351)] = 158921, + [SMALL_STATE(4352)] = 158938, + [SMALL_STATE(4353)] = 158955, + [SMALL_STATE(4354)] = 158972, + [SMALL_STATE(4355)] = 158989, + [SMALL_STATE(4356)] = 159006, + [SMALL_STATE(4357)] = 159023, + [SMALL_STATE(4358)] = 159040, + [SMALL_STATE(4359)] = 159057, + [SMALL_STATE(4360)] = 159074, + [SMALL_STATE(4361)] = 159091, + [SMALL_STATE(4362)] = 159108, + [SMALL_STATE(4363)] = 159125, + [SMALL_STATE(4364)] = 159142, + [SMALL_STATE(4365)] = 159159, + [SMALL_STATE(4366)] = 159176, + [SMALL_STATE(4367)] = 159193, + [SMALL_STATE(4368)] = 159210, + [SMALL_STATE(4369)] = 159227, + [SMALL_STATE(4370)] = 159244, + [SMALL_STATE(4371)] = 159261, + [SMALL_STATE(4372)] = 159278, + [SMALL_STATE(4373)] = 159295, + [SMALL_STATE(4374)] = 159312, + [SMALL_STATE(4375)] = 159329, + [SMALL_STATE(4376)] = 159346, + [SMALL_STATE(4377)] = 159363, + [SMALL_STATE(4378)] = 159380, + [SMALL_STATE(4379)] = 159397, + [SMALL_STATE(4380)] = 159414, + [SMALL_STATE(4381)] = 159431, + [SMALL_STATE(4382)] = 159448, + [SMALL_STATE(4383)] = 159465, + [SMALL_STATE(4384)] = 159482, + [SMALL_STATE(4385)] = 159499, + [SMALL_STATE(4386)] = 159516, + [SMALL_STATE(4387)] = 159533, + [SMALL_STATE(4388)] = 159550, + [SMALL_STATE(4389)] = 159567, + [SMALL_STATE(4390)] = 159584, + [SMALL_STATE(4391)] = 159601, + [SMALL_STATE(4392)] = 159618, + [SMALL_STATE(4393)] = 159635, + [SMALL_STATE(4394)] = 159652, + [SMALL_STATE(4395)] = 159669, + [SMALL_STATE(4396)] = 159686, + [SMALL_STATE(4397)] = 159703, + [SMALL_STATE(4398)] = 159720, + [SMALL_STATE(4399)] = 159737, + [SMALL_STATE(4400)] = 159754, + [SMALL_STATE(4401)] = 159771, + [SMALL_STATE(4402)] = 159788, + [SMALL_STATE(4403)] = 159805, + [SMALL_STATE(4404)] = 159822, + [SMALL_STATE(4405)] = 159839, + [SMALL_STATE(4406)] = 159856, + [SMALL_STATE(4407)] = 159873, + [SMALL_STATE(4408)] = 159890, + [SMALL_STATE(4409)] = 159907, + [SMALL_STATE(4410)] = 159924, + [SMALL_STATE(4411)] = 159941, + [SMALL_STATE(4412)] = 159958, + [SMALL_STATE(4413)] = 159975, + [SMALL_STATE(4414)] = 159992, + [SMALL_STATE(4415)] = 160009, + [SMALL_STATE(4416)] = 160026, + [SMALL_STATE(4417)] = 160043, + [SMALL_STATE(4418)] = 160060, + [SMALL_STATE(4419)] = 160077, + [SMALL_STATE(4420)] = 160094, + [SMALL_STATE(4421)] = 160111, + [SMALL_STATE(4422)] = 160128, + [SMALL_STATE(4423)] = 160145, + [SMALL_STATE(4424)] = 160162, + [SMALL_STATE(4425)] = 160179, + [SMALL_STATE(4426)] = 160196, + [SMALL_STATE(4427)] = 160213, + [SMALL_STATE(4428)] = 160230, + [SMALL_STATE(4429)] = 160247, + [SMALL_STATE(4430)] = 160264, + [SMALL_STATE(4431)] = 160281, + [SMALL_STATE(4432)] = 160298, + [SMALL_STATE(4433)] = 160315, + [SMALL_STATE(4434)] = 160332, + [SMALL_STATE(4435)] = 160349, + [SMALL_STATE(4436)] = 160366, + [SMALL_STATE(4437)] = 160383, + [SMALL_STATE(4438)] = 160400, + [SMALL_STATE(4439)] = 160417, + [SMALL_STATE(4440)] = 160434, + [SMALL_STATE(4441)] = 160451, + [SMALL_STATE(4442)] = 160468, + [SMALL_STATE(4443)] = 160485, + [SMALL_STATE(4444)] = 160502, + [SMALL_STATE(4445)] = 160519, + [SMALL_STATE(4446)] = 160536, + [SMALL_STATE(4447)] = 160553, + [SMALL_STATE(4448)] = 160570, + [SMALL_STATE(4449)] = 160587, + [SMALL_STATE(4450)] = 160604, + [SMALL_STATE(4451)] = 160621, + [SMALL_STATE(4452)] = 160638, + [SMALL_STATE(4453)] = 160655, + [SMALL_STATE(4454)] = 160672, + [SMALL_STATE(4455)] = 160689, + [SMALL_STATE(4456)] = 160706, + [SMALL_STATE(4457)] = 160723, + [SMALL_STATE(4458)] = 160740, + [SMALL_STATE(4459)] = 160757, + [SMALL_STATE(4460)] = 160774, + [SMALL_STATE(4461)] = 160791, + [SMALL_STATE(4462)] = 160808, + [SMALL_STATE(4463)] = 160825, + [SMALL_STATE(4464)] = 160842, + [SMALL_STATE(4465)] = 160859, + [SMALL_STATE(4466)] = 160876, + [SMALL_STATE(4467)] = 160893, + [SMALL_STATE(4468)] = 160910, + [SMALL_STATE(4469)] = 160927, + [SMALL_STATE(4470)] = 160944, + [SMALL_STATE(4471)] = 160961, + [SMALL_STATE(4472)] = 160978, + [SMALL_STATE(4473)] = 160995, + [SMALL_STATE(4474)] = 161012, + [SMALL_STATE(4475)] = 161029, + [SMALL_STATE(4476)] = 161046, + [SMALL_STATE(4477)] = 161063, + [SMALL_STATE(4478)] = 161080, + [SMALL_STATE(4479)] = 161097, + [SMALL_STATE(4480)] = 161114, + [SMALL_STATE(4481)] = 161131, + [SMALL_STATE(4482)] = 161148, + [SMALL_STATE(4483)] = 161165, + [SMALL_STATE(4484)] = 161182, + [SMALL_STATE(4485)] = 161199, + [SMALL_STATE(4486)] = 161216, + [SMALL_STATE(4487)] = 161233, + [SMALL_STATE(4488)] = 161250, + [SMALL_STATE(4489)] = 161267, + [SMALL_STATE(4490)] = 161284, + [SMALL_STATE(4491)] = 161301, + [SMALL_STATE(4492)] = 161318, + [SMALL_STATE(4493)] = 161335, + [SMALL_STATE(4494)] = 161352, + [SMALL_STATE(4495)] = 161369, + [SMALL_STATE(4496)] = 161386, + [SMALL_STATE(4497)] = 161403, + [SMALL_STATE(4498)] = 161420, + [SMALL_STATE(4499)] = 161437, + [SMALL_STATE(4500)] = 161454, + [SMALL_STATE(4501)] = 161471, + [SMALL_STATE(4502)] = 161488, + [SMALL_STATE(4503)] = 161505, + [SMALL_STATE(4504)] = 161522, + [SMALL_STATE(4505)] = 161539, + [SMALL_STATE(4506)] = 161556, + [SMALL_STATE(4507)] = 161573, + [SMALL_STATE(4508)] = 161590, + [SMALL_STATE(4509)] = 161607, + [SMALL_STATE(4510)] = 161624, + [SMALL_STATE(4511)] = 161641, + [SMALL_STATE(4512)] = 161658, + [SMALL_STATE(4513)] = 161675, + [SMALL_STATE(4514)] = 161692, + [SMALL_STATE(4515)] = 161709, + [SMALL_STATE(4516)] = 161726, + [SMALL_STATE(4517)] = 161743, + [SMALL_STATE(4518)] = 161760, + [SMALL_STATE(4519)] = 161777, + [SMALL_STATE(4520)] = 161794, + [SMALL_STATE(4521)] = 161811, + [SMALL_STATE(4522)] = 161828, + [SMALL_STATE(4523)] = 161845, + [SMALL_STATE(4524)] = 161862, + [SMALL_STATE(4525)] = 161879, + [SMALL_STATE(4526)] = 161896, + [SMALL_STATE(4527)] = 161913, + [SMALL_STATE(4528)] = 161930, + [SMALL_STATE(4529)] = 161947, + [SMALL_STATE(4530)] = 161964, + [SMALL_STATE(4531)] = 161981, + [SMALL_STATE(4532)] = 161998, + [SMALL_STATE(4533)] = 162015, + [SMALL_STATE(4534)] = 162032, + [SMALL_STATE(4535)] = 162049, + [SMALL_STATE(4536)] = 162066, + [SMALL_STATE(4537)] = 162083, + [SMALL_STATE(4538)] = 162100, + [SMALL_STATE(4539)] = 162117, + [SMALL_STATE(4540)] = 162134, + [SMALL_STATE(4541)] = 162151, + [SMALL_STATE(4542)] = 162168, + [SMALL_STATE(4543)] = 162185, + [SMALL_STATE(4544)] = 162202, + [SMALL_STATE(4545)] = 162219, + [SMALL_STATE(4546)] = 162236, + [SMALL_STATE(4547)] = 162253, + [SMALL_STATE(4548)] = 162270, + [SMALL_STATE(4549)] = 162287, + [SMALL_STATE(4550)] = 162304, + [SMALL_STATE(4551)] = 162321, + [SMALL_STATE(4552)] = 162338, + [SMALL_STATE(4553)] = 162355, + [SMALL_STATE(4554)] = 162372, + [SMALL_STATE(4555)] = 162389, + [SMALL_STATE(4556)] = 162406, + [SMALL_STATE(4557)] = 162423, + [SMALL_STATE(4558)] = 162440, + [SMALL_STATE(4559)] = 162457, + [SMALL_STATE(4560)] = 162474, + [SMALL_STATE(4561)] = 162491, + [SMALL_STATE(4562)] = 162508, + [SMALL_STATE(4563)] = 162525, + [SMALL_STATE(4564)] = 162542, + [SMALL_STATE(4565)] = 162559, + [SMALL_STATE(4566)] = 162576, + [SMALL_STATE(4567)] = 162593, + [SMALL_STATE(4568)] = 162610, + [SMALL_STATE(4569)] = 162627, + [SMALL_STATE(4570)] = 162644, + [SMALL_STATE(4571)] = 162661, + [SMALL_STATE(4572)] = 162678, + [SMALL_STATE(4573)] = 162695, + [SMALL_STATE(4574)] = 162712, + [SMALL_STATE(4575)] = 162729, + [SMALL_STATE(4576)] = 162746, + [SMALL_STATE(4577)] = 162763, + [SMALL_STATE(4578)] = 162780, + [SMALL_STATE(4579)] = 162797, + [SMALL_STATE(4580)] = 162814, + [SMALL_STATE(4581)] = 162831, + [SMALL_STATE(4582)] = 162848, + [SMALL_STATE(4583)] = 162865, + [SMALL_STATE(4584)] = 162882, + [SMALL_STATE(4585)] = 162899, + [SMALL_STATE(4586)] = 162916, + [SMALL_STATE(4587)] = 162933, + [SMALL_STATE(4588)] = 162950, + [SMALL_STATE(4589)] = 162967, + [SMALL_STATE(4590)] = 162984, + [SMALL_STATE(4591)] = 163001, + [SMALL_STATE(4592)] = 163018, + [SMALL_STATE(4593)] = 163035, + [SMALL_STATE(4594)] = 163052, + [SMALL_STATE(4595)] = 163069, + [SMALL_STATE(4596)] = 163086, + [SMALL_STATE(4597)] = 163103, + [SMALL_STATE(4598)] = 163120, + [SMALL_STATE(4599)] = 163137, + [SMALL_STATE(4600)] = 163154, + [SMALL_STATE(4601)] = 163171, + [SMALL_STATE(4602)] = 163188, + [SMALL_STATE(4603)] = 163205, + [SMALL_STATE(4604)] = 163222, + [SMALL_STATE(4605)] = 163239, + [SMALL_STATE(4606)] = 163256, + [SMALL_STATE(4607)] = 163273, + [SMALL_STATE(4608)] = 163290, + [SMALL_STATE(4609)] = 163307, + [SMALL_STATE(4610)] = 163324, + [SMALL_STATE(4611)] = 163341, + [SMALL_STATE(4612)] = 163358, + [SMALL_STATE(4613)] = 163375, + [SMALL_STATE(4614)] = 163392, + [SMALL_STATE(4615)] = 163409, + [SMALL_STATE(4616)] = 163426, + [SMALL_STATE(4617)] = 163443, + [SMALL_STATE(4618)] = 163460, + [SMALL_STATE(4619)] = 163477, + [SMALL_STATE(4620)] = 163494, + [SMALL_STATE(4621)] = 163511, + [SMALL_STATE(4622)] = 163528, + [SMALL_STATE(4623)] = 163545, + [SMALL_STATE(4624)] = 163562, + [SMALL_STATE(4625)] = 163579, + [SMALL_STATE(4626)] = 163596, + [SMALL_STATE(4627)] = 163613, + [SMALL_STATE(4628)] = 163630, + [SMALL_STATE(4629)] = 163647, + [SMALL_STATE(4630)] = 163664, + [SMALL_STATE(4631)] = 163681, + [SMALL_STATE(4632)] = 163698, + [SMALL_STATE(4633)] = 163715, + [SMALL_STATE(4634)] = 163732, + [SMALL_STATE(4635)] = 163749, + [SMALL_STATE(4636)] = 163766, + [SMALL_STATE(4637)] = 163783, + [SMALL_STATE(4638)] = 163800, + [SMALL_STATE(4639)] = 163817, + [SMALL_STATE(4640)] = 163834, + [SMALL_STATE(4641)] = 163851, + [SMALL_STATE(4642)] = 163868, + [SMALL_STATE(4643)] = 163885, + [SMALL_STATE(4644)] = 163902, + [SMALL_STATE(4645)] = 163919, + [SMALL_STATE(4646)] = 163936, + [SMALL_STATE(4647)] = 163940, + [SMALL_STATE(4648)] = 163944, + [SMALL_STATE(4649)] = 163948, }; 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(4526), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), [9] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 0), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [63] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [67] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [71] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_qualified_name_repeat1, 2), - [73] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3523), - [78] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 3), - [80] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 3), - [82] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 1), - [84] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 1), - [86] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2), - [88] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2), - [90] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 2), - [92] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 2), - [94] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3), - [96] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3), - [98] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_literal, 1), - [100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_literal, 1), - [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__decimal_literal, 3), - [106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decimal_literal, 3), - [108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_access, 2, .production_id = 2), - [118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_access, 2, .production_id = 2), - [120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), - [122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4579), - [127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_minus_expressions, 1), - [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_minus_expressions, 1), - [131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 5), - [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 5), - [135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 23), - [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 23), - [139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 14), - [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 14), - [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5), - [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5), - [151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 4, .production_id = 14), - [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 4, .production_id = 14), - [155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 7, .production_id = 36), - [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 7, .production_id = 36), - [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 4, .production_id = 13), - [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 4, .production_id = 13), - [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4), - [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4), - [167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_expression, 1), - [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_expression, 1), - [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 24), - [173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 24), - [175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, .production_id = 6), - [177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, .production_id = 6), - [179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 6), - [181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 6), - [183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 36), - [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 36), - [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 3), - [193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 3), - [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 2), - [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 2), - [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 23), - [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 23), - [203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6), - [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6), - [207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 2, .production_id = 7), - [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 2, .production_id = 7), - [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 24), - [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 24), - [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [63] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_minus_expressions, 1), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [67] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_minus_expressions, 1), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [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_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_qualified_name_repeat1, 2), + [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), + [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(4011), + [98] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), + [100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4099), + [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(4381), + [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_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_single_quoted_string, 2), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 2), + [127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2), + [131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 1), + [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 1), + [135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 7, .production_id = 36), + [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 7, .production_id = 36), + [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 24), + [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 24), + [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 36), + [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 36), + [151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 23), + [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 23), + [155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, .production_id = 6), + [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, .production_id = 6), + [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6), + [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6), + [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 24), + [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 24), + [167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 23), + [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 23), + [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5), + [173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5), + [175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 4, .production_id = 14), + [177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 4, .production_id = 14), + [179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_expression, 1), + [181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_expression, 1), + [183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4), + [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4), + [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 3), + [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 3), + [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 6), + [193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 6), + [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__decimal_literal, 3), + [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decimal_literal, 3), + [207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 3), + [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 3), + [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 2), + [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 2), + [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3), + [217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_expression, 3), - [235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_locked_expression, 2), - [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), - [239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), - [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_current_changed_expression, 2), - [243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambiguous_expression, 2), - [245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), - [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_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 = true}}, REDUCE(sym_ternary_expression, 6, .production_id = 35), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4), - [259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 2), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(308), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3015), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2512), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1621), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1717), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3028), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3010), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(493), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2167), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4633), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(349), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4632), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2506), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3518), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(461), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3519), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1851), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4620), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2370), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2713), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4607), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4606), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(361), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3535), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(312), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2953), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2492), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1618), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1695), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3052), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2943), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(501), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2202), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4403), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(338), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4375), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2493), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3538), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(431), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3637), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1873), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4405), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2355), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2867), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4498), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4406), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(498), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3541), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 1), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 6, .production_id = 35), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_locked_expression, 2), - [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambiguous_expression, 2), - [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 1), - [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_current_changed_expression, 2), - [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_expression, 3), - [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 3), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(317), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3043), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(576), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(575), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(402), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2991), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2988), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(480), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2119), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(385), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(391), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(395), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(399), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3046), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3548), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(474), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(4570), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2114), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3051), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4549), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3520), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 3), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 2), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 5), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 2), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 2), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4454), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3534), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, .production_id = 9), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 3), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 2), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 5), - [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4056), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_option, 2), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 2), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 3), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3934), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_phrase, 2, .production_id = 9), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3565), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 4, .production_id = 22), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4035), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4353), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3985), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4644), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_argument, 1), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_after_phrase, 2), - [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3531), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 9), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 9), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1540] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), SHIFT(1831), - [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), SHIFT(1936), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 1), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 1), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 9), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 9), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(327), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(335), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3669), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 8), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 34), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 34), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 12), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 12), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 34), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 34), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 12), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 12), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 34), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 34), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 12), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 12), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 34), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 34), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 12), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 12), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 10), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 10), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 10), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 10), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 34), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 34), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 10), - [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 10), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 12), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 12), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 34), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 34), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 9), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 9), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 9), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 9), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 9), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 9), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 12), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 12), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 34), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 34), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 8, .production_id = 12), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 8, .production_id = 12), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 8), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 8), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 8), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 8, .production_id = 18), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 8, .production_id = 18), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 8), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 8), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 12), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 12), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 8, .production_id = 18), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 8, .production_id = 18), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 34), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 34), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 34), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 34), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 7), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 7), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 12), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 12), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 10), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 10), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 7), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 7), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 7, .production_id = 18), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 7, .production_id = 18), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 7), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 7), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 7, .production_id = 25), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 7, .production_id = 25), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 12), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 12), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 7, .production_id = 18), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 7, .production_id = 18), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 7, .production_id = 25), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 7, .production_id = 25), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 34), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 34), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stream_statement, 1), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 42), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 42), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 12, .production_id = 42), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 12, .production_id = 42), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 2, .production_id = 1), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 34), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 34), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 6), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 6), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 12), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 12), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 10), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 10), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 3), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 3), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 32), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 32), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 20), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 20), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 6), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 6), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 6, .production_id = 18), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 6, .production_id = 18), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 6), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 6), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 6, .production_id = 25), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 6, .production_id = 25), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 12), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 12), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 6, .production_id = 18), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 6, .production_id = 18), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 6, .production_id = 25), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 6, .production_id = 25), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 29), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 29), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 12), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 12), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 10), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 10), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 21), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 21), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 20), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 20), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 5), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 5), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 5, .production_id = 18), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 5, .production_id = 18), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 5, .production_id = 11), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 5, .production_id = 11), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 17), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 17), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 16), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 16), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 12), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 12), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 5, .production_id = 18), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 5, .production_id = 18), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 17), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 17), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 16), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 16), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 5, .production_id = 11), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 5, .production_id = 11), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 12), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 4), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 4), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 12), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 12), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 42), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 42), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 10), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 10), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 1), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 1), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 4), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 4), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 4), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 4), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_terminator, 2), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_terminator, 2), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_definition, 4), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_definition, 4), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 2), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 2), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_statement, 2), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 29), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 29), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 3, .production_id = 10), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 42), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 42), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 9), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 9), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_scope_statement, 3), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_scope_statement, 3), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 3), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 3, .production_id = 10), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), - [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 3), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 3), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 3), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 3), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 3, .production_id = 1), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 3, .production_id = 1), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 2), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 2), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 29), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 29), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 12), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 42), - [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 42), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 4), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 8, .production_id = 47), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 8, .production_id = 47), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 8, .production_id = 40), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 8, .production_id = 40), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 8, .production_id = 39), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 8, .production_id = 39), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 29), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 29), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 8), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 8), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_statement, 2), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 2), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 2), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 5), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 4), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_statement, 5, .production_id = 54), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_statement, 5, .production_id = 54), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 26), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 2, .production_id = 1), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 27), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stream_statement, 1), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 6, .production_id = 28), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 6), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 6, .production_id = 29), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 26), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 27), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 37), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 7), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 29), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 39), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 40), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 41), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 42), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminated_statement, 1), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 5), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 1), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 26), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 27), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 6, .production_id = 28), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 6), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 6, .production_id = 29), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 26), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 27), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 37), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 7), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 29), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 39), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 40), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 41), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 42), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 4), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 4), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 45), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 45), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 51), - [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 51), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 8, .production_id = 50), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 8, .production_id = 50), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 5), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 5), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 5), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 5), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 1), - [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 1), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 10, .production_id = 51), - [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 10, .production_id = 51), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 11, .production_id = 50), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 11, .production_id = 50), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 1), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 1), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 9, .production_id = 50), - [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 9, .production_id = 50), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 6), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 6), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__procedure_terminator, 3), - [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__procedure_terminator, 3), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2), - [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 8), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 8), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_tuning, 1), - [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_tuning, 1), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 7), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 7), - [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 10, .production_id = 50), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 3), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 10, .production_id = 50), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 6), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 6), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 51), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 45), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 3), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, .production_id = 45), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, .production_id = 45), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 4), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 45), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 51), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 4), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 2, .production_id = 30), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [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 = true}}, REDUCE(sym_primitive_type, 1), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__logical_operator, 1), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_aggregate, 1), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__additive_operator, 1), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, .production_id = 46), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, .production_id = 46), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 52), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 52), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 55), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 55), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiplicative_operator, 1), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 57), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 57), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 3, .production_id = 30), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 4, .production_id = 30), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 46), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 46), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 1), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 52), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 52), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 55), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 55), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9, .production_id = 57), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9, .production_id = 57), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), - [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(397), - [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(1804), - [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(1710), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 1), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 6, .production_id = 30), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 5, .production_id = 30), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_of, 2), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [2586] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), SHIFT(1376), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(799), - [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1730), - [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1342), - [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2723), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 1), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_tuning, 1), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_tuning, 1), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 2), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), - [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(491), - [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(1868), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 2), - [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(3436), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1831), - [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1376), - [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1936), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 2), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 1), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 1, .production_id = 19), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 1), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 1), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 1), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 1), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), - [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(3710), - [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(378), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(1828), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(4151), - [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(3877), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 10), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 10), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 10, .production_id = 57), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 10, .production_id = 57), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2457), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2444), - [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2417), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2409), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2375), - [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2404), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9, .production_id = 55), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9, .production_id = 55), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 52), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 52), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 46), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 46), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), - [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(1376), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 2), - [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(4191), - [2909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(4193), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), - [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(1828), - [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(4151), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_current_changed_expression, 2), + [235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambiguous_expression, 2), + [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_locked_expression, 2), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_expression, 3), + [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), + [297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), + [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), + [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), + [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), + [305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 6, .production_id = 35), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4), + [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 1), + [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 2), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(311), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3000), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2460), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1604), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1673), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3009), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2998), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(512), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2178), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4630), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(326), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4629), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2486), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3509), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(494), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3512), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1833), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4591), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2348), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2678), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4582), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4581), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(481), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3521), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(310), + [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(2914), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2370), + [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1576), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1690), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3036), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2913), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(358), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2156), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4401), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(329), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4412), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2368), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3542), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(449), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3662), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1838), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4403), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2353), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2671), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4551), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4404), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(472), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3545), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(523), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3031), + [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(578), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(576), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(535), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2990), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2987), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(376), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2127), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(337), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(492), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(415), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(411), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3046), + [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3587), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(354), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(4459), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2053), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3063), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3686), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 6, .production_id = 35), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 1), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_expression, 3), + [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambiguous_expression, 2), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 3), + [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_current_changed_expression, 2), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_locked_expression, 2), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3718), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4610), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 3), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 2), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 5), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 2), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 2), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4605), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3538), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 3), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, .production_id = 9), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 2), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 5), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4443), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3519), + [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3518), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_option, 2), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 2), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 3), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 9), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 9), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 9), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 9), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [1390] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), SHIFT(1829), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), + [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), SHIFT(1919), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 1), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 1), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(322), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(324), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4611), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 4, .production_id = 22), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_phrase, 2, .production_id = 9), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3976), + [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4533), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 29), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 29), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 3), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 3), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 8, .production_id = 18), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 8), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 8), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 3), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 3, .production_id = 1), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 7, .production_id = 18), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 8, .production_id = 39), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 8, .production_id = 39), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 8, .production_id = 40), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 8, .production_id = 40), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 8, .production_id = 47), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 8, .production_id = 47), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 42), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 42), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 12), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 8), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_statement, 2), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 8, .production_id = 18), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 2), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 2), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 8), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 8), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 8, .production_id = 12), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 2, .production_id = 1), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 34), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stream_statement, 1), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 34), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 34), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 34), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 34), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 12), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 12), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 29), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 29), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 9), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 9), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 34), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 34), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 29), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 29), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 12), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 12), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 34), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 34), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 12), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 12), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 34), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 34), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 12), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 12), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 34), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 34), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 12), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 12), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 10), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 10), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 10), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 10), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 34), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 34), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 10), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 10), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 12), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 12), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 34), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 34), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 9), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 9), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 9), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 9), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 9), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 9), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 12), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 12), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 34), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 8, .production_id = 12), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 8), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 8), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 8, .production_id = 18), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 8), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 12), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 8, .production_id = 18), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 3, .production_id = 10), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 34), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 34), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 7), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 7), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 12), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 12), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 10), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 10), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 7), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 7), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 7, .production_id = 18), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 7), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 7), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 7, .production_id = 25), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 7, .production_id = 25), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 12), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 12), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 7, .production_id = 18), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 7, .production_id = 18), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 7, .production_id = 25), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 7, .production_id = 25), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 3), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 34), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 34), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 6), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 6), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 12), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 12), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 10), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 10), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 3), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 3), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 32), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 32), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 20), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 20), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 6), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 6), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 6, .production_id = 18), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 6, .production_id = 18), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 6), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 6), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 6, .production_id = 25), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 6, .production_id = 25), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 12), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 12), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 6, .production_id = 18), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 6, .production_id = 18), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 6, .production_id = 25), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 6, .production_id = 25), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 12), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 12), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 10), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 10), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 21), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 21), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 20), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 20), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 5), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 5), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 5, .production_id = 18), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 5, .production_id = 18), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 5, .production_id = 11), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 5, .production_id = 11), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 17), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 17), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 16), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 16), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 12), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 12), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 5, .production_id = 18), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 5, .production_id = 18), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 17), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 17), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 16), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 16), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 5, .production_id = 11), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 5, .production_id = 11), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 4), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 4), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 12), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 12), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 10), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 10), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 1), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 1), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 4), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 4), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 4), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 4), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_terminator, 2), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_terminator, 2), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_definition, 4), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_definition, 4), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_scope_statement, 3), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 4), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 4), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 29), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 29), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 42), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 42), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_scope_statement, 3), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 3, .production_id = 10), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 3), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 3, .production_id = 1), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 12, .production_id = 42), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 42), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 42), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 12, .production_id = 42), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_statement, 2), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 2), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 2), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 2, .production_id = 1), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stream_statement, 1), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_statement, 5, .production_id = 54), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 5), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 5), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 2), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 2), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 42), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 42), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminated_statement, 1), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 26), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 26), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 27), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 27), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 6, .production_id = 28), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 6, .production_id = 28), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 6), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 6), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 6, .production_id = 29), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 6, .production_id = 29), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3535), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4100), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 26), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 26), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 27), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 27), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 37), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 37), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 7), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 7), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 1), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 29), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 29), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_argument, 1), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_after_phrase, 2), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 39), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 39), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 40), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 41), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 42), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 40), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 41), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 42), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_statement, 5, .production_id = 54), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 6), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__procedure_terminator, 3), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 1), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 1), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 6), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 5), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 5), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 9, .production_id = 50), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 9, .production_id = 50), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 5), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 5), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 45), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 45), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 51), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 51), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 51), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 51), + [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3616), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 8), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 8), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 4), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 4), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_tuning, 1), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_tuning, 1), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 3), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 3), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 6), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 10, .production_id = 50), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 10, .production_id = 50), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__procedure_terminator, 3), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 10, .production_id = 51), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 10, .production_id = 51), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 4), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 4), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 6), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 7), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 45), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 45), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 7), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 11, .production_id = 50), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 11, .production_id = 50), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, .production_id = 45), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, .production_id = 45), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 8, .production_id = 50), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 8, .production_id = 50), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 1), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 1), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 2), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 2), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 2, .production_id = 30), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_aggregate, 1), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiplicative_operator, 1), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 57), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 57), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 52), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 52), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, .production_id = 46), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, .production_id = 46), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__additive_operator, 1), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 55), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 55), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__logical_operator, 1), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 3, .production_id = 30), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 46), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 46), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 1), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 4, .production_id = 30), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 55), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 55), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9, .production_id = 57), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9, .production_id = 57), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), + [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(397), + [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(1791), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(1677), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 52), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 52), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_of, 2), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 1), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 5, .production_id = 30), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 6, .production_id = 30), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [2579] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), SHIFT(1248), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 1, .production_id = 19), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), + [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(408), + [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(1851), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 2), + [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(3173), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 1), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(717), + [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1749), + [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1333), + [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2816), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 2), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 1), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1829), + [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1248), + [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1919), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 2), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_tuning, 1), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_tuning, 1), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 1), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 1), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), + [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(3796), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(440), + [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(1813), + [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(4637), + [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(3610), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 1), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 1), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), + [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(1248), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 2), + [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(4639), + [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(4638), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2369), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2375), + [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2379), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2380), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2383), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2387), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9, .production_id = 55), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9, .production_id = 55), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), + [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(1813), + [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(4637), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 10), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 10), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 10, .production_id = 57), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 10, .production_id = 57), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 52), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 52), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 46), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 46), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pre_tuning, 1), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1, .production_id = 15), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2, .production_id = 15), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), + [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(3799), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serialization_tuning, 1), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_serialization_tuning, 1), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 3), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pre_tuning, 1), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, .production_id = 38), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2, .production_id = 15), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serialization_tuning, 1), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_serialization_tuning, 1), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), - [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(3667), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1, .production_id = 15), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 2), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3522), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), SHIFT(1376), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(359), - [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(2193), - [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(1980), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 1), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(1831), - [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(1376), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 1), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 4, .production_id = 13), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 2), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 3), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [3186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1847), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 2, .production_id = 7), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 4, .production_id = 13), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), - [3225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(449), - [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(2789), - [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(3209), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 2, .production_id = 7), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 5, .production_id = 38), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 2), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 1, .production_id = 15), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 5), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 2), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 7, .production_id = 30), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 1), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), - [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1241), - [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1914), - [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1342), - [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3533), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 1), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 1), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 1), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 3), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 3), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 3), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 3), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 1), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), SHIFT_REPEAT(2397), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 3), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 3), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1929), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), - [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(504), - [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(2483), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 4), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_tuning, 2), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_tuning, 2), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), - [3512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), SHIFT_REPEAT(2485), - [3515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), SHIFT_REPEAT(3658), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), - [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), SHIFT_REPEAT(3340), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(2900), - [3614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(3384), - [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), - [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(2951), - [3622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(4572), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_widget_pool, 1), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final, 1), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), - [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(4246), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(2567), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 1), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract, 1), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serializable, 1), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), - [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(2833), - [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(511), - [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(3484), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 1), - [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_temp_table_definition_repeat1, 1), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 1), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_tuning, 1), - [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_tuning, 1), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 1), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), - [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(4363), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(4359), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 1), - [3896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(518), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), SHIFT_REPEAT(3831), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(2752), - [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), - [3933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(4071), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), - [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(3011), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 3), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [3971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 1), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_order, 1), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 2, .production_id = 19), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 2), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_tuning, 2), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 1), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), - [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(3400), - [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(2998), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 12), - [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 12), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 8), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 8), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 8), - [4033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 8), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), - [4037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), SHIFT_REPEAT(4435), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 8), - [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 8), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 53), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 53), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 56), - [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 56), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 8), - [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 8), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 1), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 9), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 9), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 5), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 9), - [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 9), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 9), - [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 9), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 53), - [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 53), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 56), - [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 56), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 9), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 9), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 8, .production_id = 30), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 10), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 10), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 10), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 10), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 10), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 10), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 1), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 53), - [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 53), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 56), - [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 56), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 10), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 10), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 5), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 5), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 11), - [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 11), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 11), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 11), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 53), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 53), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 56), - [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 56), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 11), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 11), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 12), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 12), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 53), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 53), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 2), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 56), - [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 56), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 13, .production_id = 56), - [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 13, .production_id = 56), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 2), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_type, 1), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 7), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 7), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 6), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 6), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 56), - [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 56), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 53), - [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 53), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 1), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 53), - [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 53), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 3), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), - [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), SHIFT_REPEAT(451), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 7), - [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 7), - [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 7), - [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 7), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 7), - [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 7), - [4391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), SHIFT_REPEAT(4578), - [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 4), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 9, .production_id = 30), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 3), - [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 3), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 48), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 21), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1), - [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 4), - [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 4), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 1), - [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 1), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 1), - [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 1), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 1), - [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 1), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [4598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(383), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 6), - [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), - [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(3507), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [4618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 4), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 43), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [4634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), SHIFT_REPEAT(3022), - [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 21), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 6, .production_id = 21), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 5), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 2), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 1), - [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 5), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 5), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 5), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_tuning, 1), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 1), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 1), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_call_arguments, 2), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 1), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [4927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 2), SHIFT_REPEAT(3931), - [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 2), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), - [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), SHIFT_REPEAT(2636), - [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7, .production_id = 49), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_when_branch, 4, .production_id = 44), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6, .production_id = 43), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6), - [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 21), - [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), - [5047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), SHIFT_REPEAT(2049), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_branch_body, 1), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5, .production_id = 31), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 5), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [5110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 1), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 1), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_call_arguments_repeat1, 2), - [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_call_arguments_repeat1, 2), SHIFT_REPEAT(313), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [5161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3593), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 1), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_call_arguments, 1), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2895), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), - [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), - [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [5445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 2), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 5), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [5511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 10, .production_id = 30), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_aggregate, 1), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 48), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 21), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 1), - [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 1), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter_mode, 1), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [6057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 43), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_otherwise_branch, 2, .production_id = 33), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__find_type, 1), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 9), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 8), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 2), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 7), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 6), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_mode, 1), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [6937] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [7035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), - [7037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), - [7039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [7041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 4), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, .production_id = 38), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 2), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 1), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), + [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(352), + [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(2109), + [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(1931), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3529), + [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), SHIFT(1248), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(1829), + [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(1248), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 1), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 2, .production_id = 7), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 5, .production_id = 38), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 5), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), + [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(473), + [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(2747), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(3008), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 2), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 2), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [3194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1807), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 3), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 4, .production_id = 13), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 2, .production_id = 7), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 4, .production_id = 13), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 1, .production_id = 15), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 2), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 1), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 3), + [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 3), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 7, .production_id = 30), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), + [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1065), + [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1881), + [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1333), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [3324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3537), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 3), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 3), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 1), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 1), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 1), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), + [3397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(404), + [3400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(2382), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 4), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 3), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 3), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_tuning, 2), + [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_tuning, 2), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), + [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), SHIFT_REPEAT(2378), + [3486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), SHIFT_REPEAT(4004), + [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), SHIFT_REPEAT(2396), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 1), + [3494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1880), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(2940), + [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(3370), + [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), + [3555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(3002), + [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(4391), + [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), + [3609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), SHIFT_REPEAT(3187), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), + [3676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(2732), + [3679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(511), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serializable, 1), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract, 1), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 1), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_temp_table_definition_repeat1, 1), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_tuning, 1), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_tuning, 1), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 1), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_widget_pool, 1), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final, 1), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 1), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), + [3746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(4292), + [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(2629), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 1), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 1), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), + [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(2912), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), + [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(3163), + [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(2973), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 2, .production_id = 19), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 2), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_order, 1), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(2694), + [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), + [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(4165), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_tuning, 2), + [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), SHIFT_REPEAT(3561), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 1), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 3), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), + [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(4141), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(4143), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [3970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(428), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 1), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 53), + [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 53), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), + [4025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), SHIFT_REPEAT(451), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 6), + [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 6), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 53), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 53), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 5), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 3), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 1), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 1), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 1), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 7), + [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 7), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 7), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 7), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 7), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 7), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), SHIFT_REPEAT(4258), + [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 53), + [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 53), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 56), + [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 56), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_type, 1), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 7), + [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 7), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 5), + [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 5), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 2), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 8), + [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 8), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 8), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 8), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 8), + [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 8), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 53), + [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 53), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 56), + [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 56), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 8), + [4211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 8), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 9), + [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 9), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 9), + [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 9), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 9), + [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 9), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), + [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 53), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 53), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 9), + [4277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 9), + [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 13, .production_id = 56), + [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 13, .production_id = 56), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 8, .production_id = 30), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 12), + [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 12), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 56), + [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 56), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 10), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 10), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 10), + [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 10), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 10), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 10), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 56), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 56), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 56), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 56), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 10), + [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 10), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 53), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 53), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 12), + [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 12), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 2), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 11), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 11), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 11), + [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 11), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 53), + [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 53), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), + [4367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), SHIFT_REPEAT(4150), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 56), + [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 56), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 11), + [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 11), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 9, .production_id = 30), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [4418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), SHIFT_REPEAT(3400), + [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 2), + [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), + [4427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(3409), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 48), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 21), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 5), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_tuning, 1), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 1), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 1), + [4518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 1), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 4), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(499), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 3), + [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 3), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1), + [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 4), + [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 4), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 1), + [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 1), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 4), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 1), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 1), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 1), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 5), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 5), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 6), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 43), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 21), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [4717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 5), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 6, .production_id = 21), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 2), SHIFT_REPEAT(3551), + [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 2), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5, .production_id = 31), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [4834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 21), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [4838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 5), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 1), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6, .production_id = 43), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_call_arguments_repeat1, 2), + [4902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_call_arguments_repeat1, 2), SHIFT_REPEAT(315), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), + [4927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), SHIFT_REPEAT(2035), + [4930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3498), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 1), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 1), + [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_when_branch, 4, .production_id = 44), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4568), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [5070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2964), + [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_call_arguments, 1), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_branch_body, 1), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 1), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 1), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), + [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_call_arguments, 2), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), + [5153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), SHIFT_REPEAT(2563), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7, .production_id = 49), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 1), + [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 1), + [5338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter_mode, 1), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_aggregate, 1), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 21), + [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 48), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 2), + [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 10, .production_id = 30), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [5710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 43), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 5), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_otherwise_branch, 2, .production_id = 33), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 6), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_mode, 1), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 2), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 7), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 8), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 9), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [6910] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__find_type, 1), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [7038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [7040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 4), + [7042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [7044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), }; #ifdef __cplusplus diff --git a/src/scanner.c b/src/scanner.c index e62875c..ef7c512 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -4,6 +4,8 @@ enum TokenType { NAMEDOT, NAMECOLON, + OR_OPERATOR, + AND_OPERATOR, }; void *tree_sitter_abl_external_scanner_create() { @@ -24,15 +26,21 @@ void tree_sitter_abl_external_scanner_deserialize( ) { } +bool insensitive_equals(int32_t codepoint, char character) { + const int32_t uppercase_codepoint = (int32_t)character; + return uppercase_codepoint == codepoint || (uppercase_codepoint + 0x0020) == codepoint; +} + bool tree_sitter_abl_external_scanner_scan( void *payload, TSLexer *lexer, const bool *valid_symbols ) { - if (valid_symbols[NAMEDOT] || valid_symbols[NAMECOLON]) { + if (valid_symbols[NAMEDOT] || valid_symbols[NAMECOLON] || valid_symbols[AND_OPERATOR] || valid_symbols[OR_OPERATOR]) { while (!lexer->eof(lexer) && iswspace(lexer->lookahead)) { lexer->advance(lexer, true); } + if (!lexer->eof(lexer) && lexer->lookahead == '.') { lexer->advance(lexer, false); if (!lexer->eof(lexer) && !iswspace(lexer->lookahead)) { @@ -40,6 +48,7 @@ bool tree_sitter_abl_external_scanner_scan( return true; } } + if (!lexer->eof(lexer) && lexer->lookahead == ':') { lexer->advance(lexer, false); if (!lexer->eof(lexer) && !iswspace(lexer->lookahead)) { @@ -47,7 +56,33 @@ bool tree_sitter_abl_external_scanner_scan( return true; } } + + if (!lexer->eof(lexer) && insensitive_equals(lexer->lookahead, 'O')) { + lexer->advance(lexer, false); + if (!lexer->eof(lexer) && insensitive_equals(lexer->lookahead, 'R')) { + lexer->advance(lexer, false); + if (!lexer->eof(lexer) && iswspace(lexer->lookahead)) { + lexer->result_symbol = OR_OPERATOR; + return true; + } + } + } + } + + if (!lexer->eof(lexer) && insensitive_equals(lexer->lookahead, 'A')) { + lexer->advance(lexer, false); + if (!lexer->eof(lexer) && insensitive_equals(lexer->lookahead, 'N')) { + lexer->advance(lexer, false); + if (!lexer->eof(lexer) && insensitive_equals(lexer->lookahead,'D')) { + lexer->advance(lexer, false); + if (!lexer->eof(lexer) && iswspace(lexer->lookahead)) { + lexer->result_symbol = AND_OPERATOR; + return true; + } + } + } } return false; } +